/* style.css */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}





body { 
    font-family: 'Georgia', serif; 
    line-height: 1.6; 
    color: #2c3e50; 
    background-color: #FFFAF0; 
}

.logo {
    display: flex;
    align-items: center; /* This centers the logo and text vertically */
    gap: 15px;           /* Space between the logo and the name */
    font-weight: bold;
    font-size: 1.5rem;
    color: #b8926a;      /* Matching your gold theme */
}

.header-logo {
    height: 100px;        /* Adjust this to make your logo bigger or smaller */
    width: auto;         /* Keeps the logo's original proportions */
    object-fit: contain;
}

/* Optional: Make the logo slightly smaller on mobile */
@media (max-width: 600px) {
    .header-logo {
        height: 30px;
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%; /* Keeps content away from the very edges */
    
    /* Fixing the width */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; /* Changed from 90% to 100% */
    box-sizing: border-box; /* Crucial: includes padding in the 100% width */
    
    z-index: 1000;
    background-color: rgba(253, 250, 245, 0.85); 
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

/* Base Icon Styling */
.menu-icon {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #c5a059; /* Your gold color */
    transition: 0.3s;
}

/* Mobile View (Below 768px) */
@media (max-width: 768px) {
    .menu-icon {
        display: flex; /* Show icon on mobile */
    }

    #nav-links {
        display: none; /* Hide links by default */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* This class is added by JavaScript */
    #nav-links.show {
        display: flex !important;
    }
}

/* Desktop View (Above 768px) */
@media (min-width: 769px) {
    #nav-links {
        display: flex !important;
        list-style: none;
        gap: 20px;
    }
}


/* Hide standard menu on mobile and setup icon */
.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background-color: var(--royal-gold); /* Using your gold color */
    transition: 0.3s;
}

/* Menu styling */
#nav-links {
    display: none; /* Hidden by default */
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--royal-gold);
}

/* Show menu when "active" class is added */
#nav-links.active {
    display: flex;
}

#nav-links li {
    margin: 15px 0;
}


/* 1. Ensure the Nav is on the very top layer */
nav {
    z-index: 9999 !important; /* Forces it above the hero image */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
}

/* 2. Fix the "Show" functionality */
#nav-links {
    display: none; /* Hidden by default */
    flex-direction: column;
    background-color: #fdfaf5;
    position: absolute;
    top: 100%; /* Sits right under the nav bar */
    right: 0;
    width: 250px;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
}

/* 3. This is what the JavaScript "Toggles" */
#nav-links.show {
    display: flex !important;
}



/* For larger screens: Show the full menu, hide the icon */
@media (min-width: 769px) {
    .menu-icon { display: none; }
    #nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        background: transparent;
        box-shadow: none;
        border: none;
    }
    #nav-links li { margin: 0 15px; }
}
.logo { 
    font-size: 1.5rem; 
    font-weight: bold; 
    letter-spacing: 2px; 
    color: #1a1a1a; 
}

nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 20px; }
nav ul li a { 
    text-decoration: none; 
    color: #555; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
}

/* Hero Image */
.hero {
    /* Replace 'hero-image.jpg' with your actual Ella view filename */
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('photo1.jpeg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates a luxury parallax effect */
    min-height: 100vh; /* Ensures it fills the whole screen */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
}


#nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 5%;
    background-color: #fdfaf5; /* Solid light yellow for readability */
    width: 220px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #c5a059;
    border-radius: 4px;
}

#nav-links.show {
    display: flex;
}





.hero-text h1 { font-size: 3.5rem; margin-bottom: 10px; }

/* Main Content Container */
.container { max-width: 1100px; margin: auto; padding: 60px 20px; }

h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; font-weight: 300; }

/* Room Details Grid */
.room-grid {
    display: grid;
    /* This creates 4 equal columns */
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px;
    width: 100%;
}

.room-card {
    background: #fff;
    border: 1px solid #eee;
    text-align: left;
}

.room-card img {
    .room-card img {
    width: 100%;      /* Keeps the image filling the card width */
    height: 50px;     /* Change this number (e.g., 120px) to make it even smaller */
    object-fit: cover; /* This prevents the image from looking stretched */
}
}

/* Important: Make sure the container is wide enough to hold 4 rooms */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Restaurant Section */

.menu-image-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.menu-card {
    position: relative;
    width: 300px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: flex-end; /* Puts text at the bottom */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-info {
    width: 100%;
    padding: 20px;
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); /* Darkens bottom for text readability */
}

.arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.menu-card:hover .arrow {
    transform: translateX(10px); /* Arrow moves right on hover */
}


/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    height: 200px; /* Set a fixed height for a uniform look */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images don't stretch */
    transition: transform 0.5s ease;
    cursor: pointer;
}

/* Zoom effect when you hover over a photo */
.gallery-item img:hover {
    transform: scale(1.1);
}
/* Reviews Section */
.review-box { 
    background: #f9f9f9; 
    padding: 30px; 
    margin-bottom: 20px; 
    font-style: italic; 
    border-radius: 8px; 
}

.contact-section {
    padding: 80px 20px;
    background-color: #fdfaf5; /* Soft cream background */
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 { color: #1a1a1a; margin-bottom: 30px; }

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item h4 { margin: 0; color: #b8926a; text-transform: uppercase; font-size: 0.9rem; }
.info-item p { margin: 5px 0 0; color: #555; }
.info-item a { color: inherit; text-decoration: none; transition: 0.3s; }
.info-item a:hover { color: #b8926a; }

.map-container {
    margin-top: 30px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Form Styling */
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: #333; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.send-btn {
    background: #b8926a;
    color: white;
    border: none;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.send-btn:hover { background: #1a1a1a; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; }
}

.booking-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-form-wrapper {
    background: #fffdf9;
    padding: 40px;
    border: 1px solid #f1e5d5;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.booking-btn {
    background: #b8926a; /* Your signature gold */
    color: white;
    border: none;
    padding: 18px;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 4px;
}

.booking-btn:hover {
    background: #1a1a1a;
}

.form-notice {
    text-align: center;
    margin-top: 20px;
    color: #777;
    font-style: italic;
}

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Booking Form */
.booking-form { background: #1a1a1a; color: white; padding: 40px; border-radius: 8px; }
.booking-form h2 { color: white; border: none; }
.booking-form input, .booking-form select { 
    width: 100%; 
    padding: 12px; 
    margin: 10px 0; 
    border: none; 
    border-radius: 4px; 
}

.btn { 
    background: #b8926a; 
    color: white; 
    border: none; 
    padding: 15px 30px; 
    cursor: pointer; 
    width: 100%; 
    font-size: 1rem; 
    margin-top: 10px;
    transition: background 0.3s;
}

.btn:hover { background: #a67f56; }

footer { text-align: center; padding: 40px; background: #eee; margin-top: 50px; font-size: 0.8rem; }





/* Booking Section */
.booking-links {
    background: #fdfdfd;
    padding: 80px 20px;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.external-btn {
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1rem;
    transition: transform 0.2s, opacity 0.2s;
    min-width: 200px;
    display: inline-block;
}

.external-btn:hover { transform: translateY(-3px); opacity: 0.9; }

/* Brand Colors */
.btn-booking { background-color: #003580; } /* Booking.com Blue */
.btn-tripadvisor { background-color: #34e0a1; color: #000; } /* TripAdvisor Green */
.btn-google { background-color: #4285F4; } /* Google Blue */

/* Section Headers */
h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; font-weight: 300; }

/* Grid and Cards (From previous steps) */
.container { max-width: 1100px; margin: auto; padding: 60px 20px; }
.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.room-card { border: 1px solid #eee; overflow: hidden; background: #fff; }
.room-card img { width: 100%; height: 250px; object-fit: cover; }
.room-info { padding: 20px; }
.price { color: #b8926a; font-weight: bold; }


.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 80px 0 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

/* Brand Section Styling */
.footer-logo {
    color: #b8926a; /* Gold color */
    letter-spacing: 3px;
    margin: 0;
}

.tagline {
    font-style: italic;
    color: #b8926a;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

/* Links & Headings */
.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #b8926a;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #b8926a;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.contact-item a {
    color: #bbb;
    text-decoration: none;
}

.contact-item .icon {
    color: #b8926a;
}

/* Copyright Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 50px;
    padding-top: 25px;
    font-size: 0.85rem;
    color: #777;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-item {
        justify-content: center;
    }
}







:root {
    --deep-cocoa: #2c1e14;       /* Rich wood tone */
    --royal-gold: #c5a059;       /* Metallic gold */
    --parchment: #fcf9f2;        /* Elegant off-white */
    --ivory-white: #ffffff;      
    --soft-shadow: 0 10px 30px rgba(44, 30, 20, 0.08);
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #ecd08d 100%);
}













.jacuzzi-section {
    padding: 80px 0;
    background-color: #fff;
}

.jacuzzi-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.jacuzzi-image, .jacuzzi-text {
    flex: 1;
    min-width: 300px;
}

.jacuzzi-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.sub-title {
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.price-tag {
    margin: 25px 0;
    padding: 15px;
    border-left: 3px solid #c5a059;
    background: #fdfaf5;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c1e14;
}

.reserve-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c1e14;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.reserve-btn:hover {
    background-color: #c5a059;
}

@media (max-width: 768px) {
    .jacuzzi-flex { flex-direction: column; text-align: center; }
    .price-tag { border-left: none; border-top: 3px solid #c5a059; }
}





.hero-text {
    text-align: center; /* Ensures everything inside is centered */
}

.hero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background-color: #c5a059; /* Your gold theme color */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px; /* Sharp corners look more "Heritage/Classic" */
    transition: all 0.3s ease;
    border: 2px solid #c5a059;
}

.hero-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px); /* Lifts the button slightly when touching */
}
