:root {
    --beige: #f5efe6;
    --terracotta: #b66c53;
    --dark-brown: #1e0d01;
    --sage: #8D8B63;
    --white: #FFFFFF;
    --light-gray: #f9f9f9;
    --dark-sage: #6d6b4d;
    --cream: #faf8f5;
    --gold: #d4af37;
}

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

body {
    font-family: 'Red Hat Display', sans-serif;
    background-color: var(--cream);
}

/* Header Styles */
.main-header {
    position: relative;
    background-color: var(--beige);
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--terracotta), var(--dark-sage));
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: var(--beige);
    border-bottom: 1px solid rgba(30, 13, 1, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-brown);
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logo-subtext {
    display: block;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--terracotta);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
    border: 1px solid rgba(30, 13, 1, 0.1);
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--dark-brown);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--terracotta);
    padding-left: 25px;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 120%;
}



.book-now-btn {
    background: linear-gradient(45deg, var(--terracotta), var(--sage));
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(182, 108, 83, 0.3);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.book-now-btn:hover {
    background: linear-gradient(45deg, var(--sage), var(--terracotta));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(182, 108, 83, 0.4);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-brown);
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--beige);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: all 0.5s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

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

    .nav-item {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        margin: 10px 0 0 15px;
        display: none;
        width: 100%;
        background: transparent;
        border: none;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        top: 0;
    }

    .dropdown-item {
        padding: 8px 15px;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

@media (max-width: 767.98px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .top-bar {
        font-size: 0.8rem;
    }

    .contact-info {
        gap: 10px;
    }
}

@media (max-width: 575.98px) {
    .logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        width: 80%;
    }
}

/* Sticky Header */
.main-nav.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 239, 230, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    border-bottom: 1px solid rgba(30, 13, 1, 0.1);
}