/* ============================================================
   SIMPLE NAVBAR CSS - FIXED AT TOP
   ============================================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fixed Navbar - Stays at top */
.simple-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FAF9F5;
    border-bottom: 1px solid rgba(196, 136, 42, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

/* Add padding to body to prevent content from hiding under fixed navbar */
body {
    padding-top: 70px;
}

/* Scrolled effect */
.simple-navbar.scrolled {
    background: rgba(250, 249, 245, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.simple-navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.simple-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.simple-logo img {
    height: 70px;
}

.simple-logo span {
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #18110A;
}

/* Desktop Menu */
.simple-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.simple-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.simple-nav > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    color: #6A5840;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.simple-nav > li > a:hover {
    color: #C8251E;
    background: rgba(200, 37, 30, 0.05);
}

/* Dropdown */
.simple-dropdown {
    position: relative;
}

.simple-dropdown > a i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.simple-dropdown:hover > a i {
    transform: rotate(180deg);
}

.simple-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.simple-dropdown:hover .simple-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #6A5840;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.simple-dropdown-menu li a:hover {
    background: rgba(200, 37, 30, 0.05);
    color: #C8251E;
    padding-left: 26px;
}

/* Buttons */
.simple-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.simple-btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.simple-btn-primary {
    background: #C8251E;
    color: white;
}

.simple-btn-primary:hover {
    background: #A01A14;
    transform: translateY(-2px);
}

.simple-btn-outline {
    background: transparent;
    color: #C8251E;
    border: 1.5px solid #C8251E;
}

.simple-btn-outline:hover {
    background: #C8251E;
    color: white;
}

/* User Dropdown */
.simple-user-dropdown {
    position: relative;
}

.simple-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(200, 37, 30, 0.08);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.simple-user-btn span {
    color: #18110A;
}

.simple-user-btn i {
    font-size: 11px;
    color: #6A5840;
}

.simple-user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.simple-user-dropdown:hover .simple-user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-user-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #6A5840;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.simple-user-menu a:hover {
    background: rgba(200, 37, 30, 0.05);
    color: #C8251E;
}

/* Mobile Toggle Button */
.simple-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}

.simple-mobile-toggle span {
    width: 100%;
    height: 2px;
    background: #18110A;
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* Mobile Menu - Slide from right */
.simple-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: white;
    z-index: 1002;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.simple-mobile-menu.open {
    right: 0;
}

.simple-mobile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid rgba(196, 136, 42, 0.1);
    background: #F9F5EE;
}

.simple-mobile-header img {
    height: 35px;
}

.simple-mobile-header span {
    flex: 1;
    font-family: 'Instrument Serif', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.simple-mobile-close {
    width: 36px;
    height: 36px;
    background: rgba(200, 37, 30, 0.08);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #6A5840;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Navigation */
.simple-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-mobile-nav > li {
    border-bottom: 1px solid rgba(196, 136, 42, 0.08);
}

.simple-mobile-nav > li > a {
    display: block;
    padding: 16px 20px;
    color: #6A5840;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.mobile-dropdown-item {
    border-bottom: 1px solid rgba(196, 136, 42, 0.08);
}

.mobile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #6A5840;
    cursor: pointer;
}

.mobile-dropdown-btn i {
    transition: transform 0.2s ease;
}

.mobile-dropdown-btn.active i {
    transform: rotate(90deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(200, 37, 30, 0.02);
}

.mobile-dropdown-menu.active {
    max-height: 300px;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #6A5840;
    text-decoration: none;
    font-size: 14px;
}

/* Mobile Buttons */
.simple-mobile-buttons {
    padding: 20px;
    display: flex;
    gap: 12px;
    border-top: 1px solid rgba(196, 136, 42, 0.1);
    margin-top: 20px;
}

.simple-mobile-btn {
    flex: 1;
    padding: 12px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
}

.simple-mobile-btn.primary {
    background: #C8251E;
    color: white;
}

.simple-mobile-btn.outline {
    background: transparent;
    color: #C8251E;
    border: 1.5px solid #C8251E;
}

/* Overlay */
.simple-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet and Mobile - Hide desktop menu, show mobile toggle */
@media (max-width: 1024px) {
    .simple-menu {
        display: none;
    }
    
    .simple-mobile-toggle {
        display: flex;
    }
    
    .simple-btn-outline {
        display: none;
    }
    
    .simple-user-btn span {
        display: none;
    }
    
    .simple-user-btn {
        padding: 6px 10px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .simple-navbar-container {
        padding: 0 16px;
        height: 60px;
    }
    
    .simple-logo span {
        display: none;
    }
    
    .simple-logo img {
        height: 35px;
    }
    
    .simple-btn-primary {
        padding: 6px 14px;
        font-size: 12px;
    }
}

/* Desktop only */
@media (min-width: 1025px) {
    .simple-mobile-menu,
    .simple-overlay {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    body {
        padding-top: 55px;
    }
    
    .simple-navbar-container {
        height: 55px;
        padding: 0 12px;
    }
    
    .simple-btn-primary span {
        display: none;
    }
    
    .simple-btn-primary i {
        margin: 0;
    }
    
    .simple-btn-primary {
        padding: 8px 12px;
    }
}