:root {
    --primary-dark: #0a1a1a;
    --primary-gold: #d4af37;
    --primary-gold-dark: #b8860b;
    --text-light: #eef4f0;
    --text-muted: #8a9b9b;
    --bg-light: #ffffff;
    --bg-offwhite: #f8f9fa;
    --border-color: #e0ece8;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: #1a2c2e;
    line-height: 1.5;
    overflow-x: hidden;
    padding-top: 70px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ===== HEADER BACKGROUND - MATCHES HOMEPAGE ===== */
.site-header, 
header,
#header {
    background: rgba(10, 26, 26, 0.98) !important;
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* ===== LARGER LOGO ===== */
.logo img,
.custom-logo,
.custom-logo-link img {
    max-height: 70px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

/* Desktop Logo Size */
@media (min-width: 992px) {
    .logo img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 80px !important;
    }
}

/* Tablet Logo Size */
@media (max-width: 991px) and (min-width: 768px) {
    .logo img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 65px !important;
    }
}

/* Mobile Logo Size */
@media (max-width: 767px) {
    .logo img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 55px !important;
    }
}

/* ===== NAVIGATION STYLES ===== */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav .primary-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: #eef4f0;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.desktop-nav a:hover::after,
.desktop-nav .current-menu-item a::after,
.desktop-nav .current_page_item a::after,
.desktop-nav .current-page-ancestor a::after {
    width: 100%;
}

.desktop-nav a:hover,
.desktop-nav .current-menu-item a,
.desktop-nav .current_page_item a,
.desktop-nav .current-page-ancestor a {
    color: #d4af37;
}

.btn-nav-desktop {
    background: #d4af37;
    color: #0a1a1a !important;
    padding: 8px 24px !important;
    border-radius: 40px;
    font-weight: 700;
}

.btn-nav-desktop::after {
    display: none;
}

.btn-nav-desktop:hover {
    background: #b8860b;
    color: #0a1a1a !important;
    transform: translateY(-2px);
}

/* ===== MOBILE MENU STYLES ===== */
.menu-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #d4af37;
    margin: 4px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #0a1a1a;
    padding: 80px 24px 40px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin-bottom: 8px;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: #eef4f0;
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.btn-nav-mobile {
    background: #d4af37;
    color: #0a1a1a !important;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
}

.btn-nav-mobile:hover {
    background: #b8860b;
    color: #0a1a1a !important;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .menu-btn {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
}

/* ===== BODY PADDING FOR FIXED HEADER ===== */
body {
    padding-top: 80px;
}

@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 65px;
    }
}
.site-header, header {
    background: rgba(10, 26, 26, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.logo .custom-logo-link {
    display: block;
    text-decoration: none;
}

.logo .site-title,
.logo .site-description {
    display: none;
}

.custom-logo-link + .site-title,
.custom-logo-link + .site-description {
    display: none;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
        max-width: 120px;
    }
}

.logo-text span {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
}

.desktop-nav {
    display: none;
}

.desktop-nav .primary-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s;
}

.desktop-nav a:hover::after,
.desktop-nav .current-menu-item a::after {
    width: 100%;
}

.desktop-nav a:hover,
.desktop-nav .current-menu-item a {
    color: var(--primary-gold);
}

.btn-nav-desktop {
    background: var(--primary-gold);
    color: var(--primary-dark) !important;
    padding: 8px 20px !important;
    border-radius: 40px;
    font-weight: 700;
}

.btn-nav-desktop::after {
    display: none;
}

.btn-nav-desktop:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

.menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-gold);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary-dark);
    padding: 80px 24px 40px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin-bottom: 8px;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-light);
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.btn-nav-mobile {
    background: var(--primary-gold);
    color: var(--primary-dark) !important;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .menu-btn,
    .nav-menu,
    .menu-overlay {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.btn-dark {
    background: var(--primary-dark);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

footer, .site-footer {
    background: var(--primary-dark);
    color: var(--text-muted);
    padding: 40px 0 24px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2d534a;
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}