/* ==========================================
   HEADER - TEXT LOGO ONLY
========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari 9+, iOS 9+ */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 80px;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* TEXT LOGO */
.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.logo-text span {
    color: #c0392b;
}

.logo-sub {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid #ddd;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #333;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c0392b;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover {
    color: #c0392b;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: #c0392b;
}

.contact-btn {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #c0392b;
    padding: 10px 24px;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.contact-btn:hover {
    background: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.25);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #333;
    transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    padding: 80px 30px 30px;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
}

.mobile-nav.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-menu {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #c0392b;
}

/* Search Popup */
.search-popup {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
}

.search-popup.active {
    opacity: 1;
    visibility: visible;
}

.search-popup form {
    width: min(600px, 90%);
}

.search-popup input[type="search"] {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 20px 0;
    font-size: 24px;
    font-weight: 300;
    background: transparent;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.search-popup input[type="search"]:focus {
    border-color: #c0392b;
}

.search-popup input[type="search"]::placeholder {
    color: #bbb;
    font-weight: 200;
}

.close-search {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s ease;
}

.close-search:hover {
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .main-navigation {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .site-header {
        height: 64px;
    }
    .header-container {
        height: 64px;
        padding: 0 16px;
    }
    .logo-text {
        font-size: 20px;
    }
    .logo-sub {
        display: none;
    }
    .contact-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    .mobile-nav {
        width: 100%;
    }
}