/* Custom Styling */

:root {
    --primary-accent: #c57f60;
    --primary-accent-dark: #b86a51;
    --text-primary: #ffffff;
    --text-muted: #b0b0b0;
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --border-color: #2a2a2a;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-dark);
}

body:has(.offcanvas.show) .sidebar-toggle {
    opacity: 0;
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    background: url('../img/img-background.jpg') center/cover no-repeat;
    background-attachment: fixed;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.container-fluid {
    height: 100vh;
}

.hero-section .row {
    height: 100vh;
    min-height: 100vh;
}

/* Sidebar Toggle */
.sidebar-toggle {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1050;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.sidebar-toggle:hover,
.sidebar-toggle:focus {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Sidebar Styling */
.sidebar-section-title {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.sidebar-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.sidebar-link:hover {
    color: var(--primary-accent);
}

/* Hero Content */
.hero-offset {
    padding-top: 14vh;
}

.hero-content {
    padding: 0 2rem;
    max-width: 600px;
    z-index: 100;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta {
    background-color: var(--primary-accent);
    color: #ffffff !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background-color: var(--primary-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 127, 96, 0.3);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: #ffffff;
}

/* Copyright */
.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* Hero Image */
.hero-image-container {
    max-width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section .row {
        min-height: auto;
        flex-direction: column-reverse;
    }

    .corner-symbol {
        font-size: 2rem;
        top: 1rem;
        left: 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .hero-image-container {
        padding: 1rem;
    }
}


/* Utilities */
.min-vh-100 {
    min-height: 100vh;
}

/* Smooth transitions */
a {
    transition: color 0.2s ease;
}

button {
    transition: all 0.2s ease;
}