/* ===== CSS VARIABLES ===== */
:root {
    --green: #1a3a2e;
    --cream: #f4f1e8;
    --gold: #c9a96e;
    --charcoal: #2d2d2d;
    --white: #ffffff;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

img, video {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 1.5px;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

h4 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #b8945a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--green);
}

.btn-white:hover {
    background: var(--cream);
    color: var(--gold);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 58, 46, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

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

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-menu-left,
.nav-menu-right {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a,
.lang-switcher span,
.book-btn {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.lang-switcher span:hover {
    color: var(--gold);
}

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

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.logo-img {
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1);
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(201, 169, 110, 0.5));
}

.book-btn {
    background: var(--gold);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.book-btn:hover {
    background: #b8945a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

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

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

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

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--green);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--green) 0%, #0f1f17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../welcomw xefan/P1126776.JPG') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.contact-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.contact-hero h1 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 5rem 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--green);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    color: var(--green);
    margin-bottom: 0.5rem;
}

.contact-item-content p {
    color: var(--charcoal);
    opacity: 0.8;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--green);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--green);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cream);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-map {
    height: 400px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== OUR STORY PAGE STYLES ===== */
.story-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--green) 0%, #0f1f17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../welcomw xefan/P1126776.JPG') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.story-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.story-hero h1 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
}

.timeline-date {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--green);
}

.story-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.value-card h3 {
    color: var(--green);
    margin-bottom: 1rem;
}

/* ===== ROOMS PAGE STYLES ===== */
/* Hero Section for Rooms */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--green) 0%, #0f1f17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../rooms slider showcase/Business King/P1106057.JPG') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 3;
    position: relative;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero .btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero .btn:hover {
    background: #b8945a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
}

/* Rooms Section */
.rooms-section {
    padding: 5rem 0;
    background: var(--cream);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--green);
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.room-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
}

.room-content h3 {
    color: var(--green);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.room-content p {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.room-features {
    list-style: none;
    margin-bottom: 2rem;
}

.room-features li {
    padding: 0.6rem 0;
    color: var(--charcoal);
    opacity: 0.8;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.room-features li::before {
    content: '·';
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.room-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream);
}

.price {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
}

.price span {
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 400;
    opacity: 0.7;
}

.room-content .btn {
    background: var(--green);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.room-content .btn:hover {
    background: #0f1f17;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 58, 46, 0.3);
}

/* Filter Buttons */
.room-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    color: var(--green);
    border: 2px solid var(--green);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green);
    color: var(--white);
}

/* Animation Classes */
.room-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.room-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUSINESS KING ROOMS PAGE STYLES ===== */
.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.room-gallery {
    position: relative;
}

.roomSwiper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.roomSwiper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.room-info {
    padding: 2rem 0;
}

.room-info .room-title {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.room-category {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.room-specs,
.room-amenities {
    margin-bottom: 3rem;
}

.room-specs h3,
.room-amenities h3 {
    color: var(--green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--cream);
    display: flex;
    justify-content: space-between;
}

.specs-list li strong {
    color: var(--green);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 10px;
    transition: var(--transition);
}

.amenity-item:hover {
    background: #e8e2d4;
    transform: translateY(-2px);
}

.amenity-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 0.8rem;
}

.room-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 2px solid var(--cream);
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 400;
    opacity: 0.7;
}

.book-now-btn {
    background: var(--green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.book-now-btn:hover {
    background: #0f1f17;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 58, 46, 0.3);
}

/* Features Section */
.features-section {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    color: var(--green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

/* Booking CTA Section */
.booking-cta {
    background: linear-gradient(135deg, var(--green) 0%, #0f1f17 100%);
    color: var(--white);
    text-align: center;
}

.booking-cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .primary {
    background: var(--gold);
    color: var(--white);
}

.cta-buttons .secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .secondary:hover {
    background: var(--white);
    color: var(--green);
}

/* Responsive Design for Business King Rooms */
@media (max-width: 768px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .roomSwiper img {
        height: 300px;
    }

    .room-info .room-title {
        font-size: 2rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .room-price {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 200px;
    }
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--green) 0%, #0f1f17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../gallery/room1.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.gallery-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.gallery-hero h1 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1.5rem;
}

/* ===== RESTAURANTS PAGE STYLES ===== */
.restaurants-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--green) 0%, #0f1f17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.restaurants-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../restaurants/restaurant1.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.restaurants-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.restaurants-hero h1 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.restaurant-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.restaurant-image {
    height: 250px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.1);
}

.restaurant-content {
    padding: 2rem;
}

.restaurant-content h3 {
    color: var(--green);
    margin-bottom: 1rem;
}

.cuisine-type {
    display: inline-block;
    background: var(--cream);
    color: var(--green);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.restaurant-hours {
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* ===== VENUES PAGE STYLES ===== */
.venues-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--green) 0%, #0f1f17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.venues-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../venues/venue1.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.venues-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.venues-hero h1 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.venue-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.venue-image {
    height: 300px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-content {
    padding: 2rem;
}

.venue-content h3 {
    color: var(--green);
    margin-bottom: 1rem;
}

.venue-capacity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: var(--cream);
    color: var(--green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: var(--white);
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    transition: var(--transition);
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: #28a745;
}

.notification-error {
    background: #dc3545;
}

.notification-info {
    background: #17a2b8;
}

/* ===== LIGHTBOX STYLES ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Navigation Responsive */
    .nav-container {
        padding: 1rem;
    }

    .nav-left,
    .nav-right {
        position: static;
    }

    .nav-menu-left,
    .nav-menu-right {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--green);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: var(--transition);
        z-index: 999;
    }

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

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .logo-img {
        height: 40px;
    }

    /* Hero Section Responsive */
    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    /* Rooms Section Responsive */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-image {
        height: 220px;
    }

    .room-content {
        padding: 2rem;
    }

    .room-content h3 {
        font-size: 1.5rem;
    }

    .room-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .contact-grid,
    .restaurants-grid,
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .contact-info,
    .contact-form,
    .timeline-content,
    .room-content,
    .restaurant-content,
    .venue-content {
        padding: 1.5rem;
    }

    .story-timeline::before {
        left: 2rem;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 4rem;
    }

    .timeline-dot {
        left: 2rem;
    }

    .timeline-content {
        margin: 0;
    }

    .section {
        padding: 3rem 0;
    }

    .contact-hero,
    .story-hero,
    .rooms-hero,
    .gallery-hero,
    .restaurants-hero,
    .venues-hero {
        height: 50vh;
        min-height: 300px;
    }

    .contact-hero h1,
    .story-hero h1,
    .rooms-hero h1,
    .gallery-hero h1,
    .restaurants-hero h1,
    .venues-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p,
    .story-hero p,
    .rooms-hero p,
    .gallery-hero p,
    .restaurants-hero p,
    .venues-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 0;
    }

    .contact-hero,
    .story-hero,
    .rooms-hero,
    .gallery-hero,
    .restaurants-hero,
    .venues-hero {
        height: 40vh;
        min-height: 250px;
    }

    .contact-info,
    .contact-form,
    .timeline-content,
    .room-content,
    .restaurant-content,
    .venue-content {
        padding: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .story-values {
        grid-template-columns: 1fr;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
