/* Reset */
* { margin:0; padding:0; box-sizing:border-box; font-family: 'Montserrat', sans-serif; }
body, html { height: 100%; width: 100%; background:#F8F5F0; color:#1a1a1a; }

html {
    scroll-behavior: smooth;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: transparent; /* default transparent */
    transition: background 0.4s ease, padding 0.4s ease;
    z-index: 10;
}

header.scrolled {
    background: #024863; /* silver-blue */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 10px 30px;
}

/* Header bottom underline for default state */
header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px; /* thickness of the line */
    background: rgba(255, 255, 255, 0.3); /* subtle white for transparency effect */
    pointer-events: none; /* don’t block clicks */
    transition: background 0.4s ease, height 0.4s ease;
}

/* Header after scroll - can make line more visible if desired */
header.scrolled::after {
    background: #ffffff; /* solid or silver-blue depending on look */
    display: none;
}

/* Menu on top of everything */
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 270px;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 11; /* higher than header */
}

.close-btn {
    position: absolute;
    top: 70px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 12;
}

/* Menu button */
.menu-btn, .book-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
} 

.logo {
    font-family: "Felipa", serif;
    color: #F8F5F0;
   font-weight: 400;
    font-style: normal;
     font-size: 40px;
}

.icon__menu, .icon__book, .icon__close {
    width: 24px;
    height: 24px;
    display: block;
}

/* Bookings */
.book-btn {
    padding:10px 25px;
    color:#ffffff;
    border-radius:10px;
    font-weight:600;
    transition:0.2s ease;
}

.book-btn:hover { transform: translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,0.5); }


.nav-menu ul { list-style:none; text-align:center; }
.nav-menu ul li { margin:30px 0; }
.nav-menu ul li a {
     color:#ffffff;
     font-family: Prata;
    text-decoration:none;
    font-size: 1.3rem;
    font-weight:50;
    transition: transform 0.4s ease;
    display: inline-block; /* Required for transform */
}
.nav-menu ul li a:hover { 
    transform: scale(1.2);
}

/* Hero section */

.hero {
    position: relative;
    height: 100vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c5a47e;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: #c5a47e;
}

.hero-description {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.primary-btn {
    background: #c5a47e;
    color: #111;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn:hover {
    background: #fff;
}

.secondary-btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s ease;
}

.secondary-btn:hover {
    background: #fff;
    color: #111;
}

.hero-trust {
    font-size: 14px;
    color: #bbb;
}

.hero-trust span {
    margin: 0 6px;
}

/* ================= BOOKING STRIP ================= */

.booking-strip {
    width: 100%;
    background: #fff;
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.strip-wrapper {
    width: 100%;
    overflow: hidden;
}

.strip-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scrollStrip 25s linear infinite;
}

.strip-track img {
    height: 35px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.strip-track img:hover {
    opacity: 1;
    transform: scale(1.08);
}

@keyframes scrollStrip {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ================= LUXURY ABOUT SECTION ================= */

.about-luxury {
    position: relative;
    padding: 120px 8%;
    background: #f8f5f0;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0,0,0,0.04), transparent 60%);
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
}

.about-left {
    flex: 1;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    gap: 50px;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 5px;
}

.feature span {
    font-size: 14px;
    color: #777;
}

/* Right Image Styling */

.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 480px;
    height: 550px;
    background: url('../images/about-fore.jpeg') center/cover no-repeat;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: 0.6s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

/* ================= LUXURY ROOMS SECTION ================= */

.rooms-luxury {
    padding: 120px 8%;
    background: #f8f5f0;
}

.rooms-header {
    text-align: center;
    margin-bottom: 70px;
}

.rooms-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.rooms-header p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.room-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.5s ease;
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.room-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: 0.6s ease;
}

.room-card:hover .room-image {
    transform: scale(1.05);
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.room-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.room-price {
    font-weight: 600;
    color: #000;
}

/* ================= LUXURY RESTAURANT SECTION ================= */

.restaurant-luxury {
    padding: 120px 8%;
    background: #111; /* darker for mood contrast */
    color: #fff;
}

.restaurant-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
}

.restaurant-left {
    flex: 1;
}

.fine-tag {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c5a47e;
    margin-bottom: 20px;
    display: inline-block;
}

.restaurant-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 25px;
}

.restaurant-left p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.restaurant-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.highlight span {
    font-size: 14px;
    color: #aaa;
}

.dine-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #c5a47e;
    color: #c5a47e;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.4s ease;
}

.dine-btn:hover {
    background: #c5a47e;
    color: #111;
}

/* Right Image */

.restaurant-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.restaurant-image {
    width: 100%;
    max-width: 500px;
    height: 550px;
    background: url('../images/restaurant.jpg') center/cover no-repeat;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transition: 0.6s ease;
}

.restaurant-image:hover {
    transform: scale(1.03);
}


/* ================= GRAND BANQUET SECTION ================= */

.banquet-luxury {
    position: relative;
    padding: 150px 8%;
    background: url('../images/banquet.jpeg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.banquet-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.banquet-content {
    position: relative;
    max-width: 1000px;
    margin: auto;
    z-index: 2;
}

.banquet-tag {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    color: #c5a47e;
    display: inline-block;
    margin-bottom: 25px;
}

.banquet-top h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 25px;
}

.banquet-top p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 60px;
}

/* Feature Cards */

.banquet-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.banquet-card {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px 50px;
    border-radius: 16px;
    transition: 0.4s ease;
    min-width: 200px;
}

.banquet-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.banquet-card span {
    font-size: 14px;
    color: #ccc;
}

.banquet-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

/* Button */

.banquet-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid #c5a47e;
    color: #c5a47e;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.4s ease;
}

.banquet-btn:hover {
    background: #c5a47e;
    color: #111;
}


/* ================= OFFERS TEASER ================= */

.offers-teaser {
    padding: 120px 8%;
    background: linear-gradient(to right, #f8f5f0, #ffffff);
    text-align: center;
}

.offers-content {
    max-width: 800px;
    margin: auto;
}

.offers-tag {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    color: #c5a47e;
    display: inline-block;
    margin-bottom: 20px;
}

.offers-teaser h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.offers-teaser p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 40px;
}

.offers-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: 0.4s ease;
}

.offers-btn:hover {
    background: #000;
    color: #fff;
}

/* ================= LUXURY CONTACT SECTION ================= */

.contact-luxury {
    padding: 120px 8%;
    background: #f8f5f0;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
}

.contact-tag {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c5a47e;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-info p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #000;
}

.detail span {
    color: #777;
    font-size: 14px;
}

/* Form Box */

.contact-form-box {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: #c5a47e;
}

.contact-form-box button {
    padding: 14px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form-box button:hover {
    background: #c5a47e;
    color: #111;
}

/* ================= LUXURY FOOTER ================= */

.footer-luxury {
    background: #111;
    color: #fff;
    padding: 80px 8% 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    color: #bbb;
    line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c5a47e;
}

.footer-col p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 10px;
}

.footer-book-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    border: 1px solid #c5a47e;
    color: #c5a47e;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.footer-book-btn:hover {
    background: #c5a47e;
    color: #111;
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 13px;
    color: #777;
}

.footer-legal {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
}

.footer-legal a {
    color: #777;
    text-decoration: none;
    margin: 0 8px;
    transition: 0.3s ease;
}

.footer-legal a:hover {
    color: #c5a47e;
}

/* =========================================
   RESPONSIVE OPTIMIZATION
========================================= */

/* ---------- LARGE TABLETS (1200px ↓) ---------- */

@media (max-width: 1200px) {

    header {
        padding: 18px 30px;
    }

    .hero-title {
        font-size: 48px;
    }

    .about-content,
    .restaurant-content,
    .contact-wrapper {
        gap: 50px;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}


/* ---------- TABLETS (992px ↓) ---------- */

@media (max-width: 992px) {

    header {
        padding: 15px 25px;
    }

    .logo {
        font-size: 32px;
    }

    .hero {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    /* Stack sections vertically */

    .about-content,
    .restaurant-content,
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .about-image,
    .restaurant-image {
        height: 450px;
    }

    .banquet-features {
        gap: 25px;
    }

    .banquet-card {
        padding: 30px 35px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {

    .about-right,
    .restaurant-right {
        width: 100%;
    }

    .about-image,
    .restaurant-image {
        width: 100%;
        height: 380px;
        background-position: center;
    }

}


/* ---------- MOBILE (768px ↓) ---------- */

@media (max-width: 768px) {

    section {
        padding: 80px 6% !important;
    }

    header {
        padding: 12px 20px;
    }

    header.scrolled {
        padding: 10px 18px;
    }

    .logo {
        font-size: 26px;
    }

    .hero {
        height: 90vh;
    }

    .hero-tag {
        font-size: 11px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-trust {
        font-size: 12px;
        line-height: 1.6;
    }

    /* About */

    .about-heading {
        font-size: 30px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-features {
        flex-direction: column;
        gap: 20px;
    }

    .about-image {
        height: 380px;
    }

    /* Rooms */

    .rooms-header h2 {
        font-size: 30px;
    }

    .room-image {
        height: 220px;
    }

    /* Restaurant */

    .restaurant-left h2 {
        font-size: 30px;
    }

    .restaurant-image {
        height: 380px;
    }

    /* Banquet */

    .banquet-top h2 {
        font-size: 32px;
    }

    .banquet-top p {
        font-size: 14px;
    }

    .banquet-card h3 {
        font-size: 26px;
    }

    /* Offers */

    .offers-teaser h2 {
        font-size: 30px;
    }

    .offers-teaser p {
        font-size: 15px;
    }

    /* Contact */

    .contact-info h2 {
        font-size: 30px;
    }

    .contact-form-box {
        padding: 25px;
    }

    /* Footer */

    .footer-luxury {
        padding: 60px 6% 25px;
    }

    .footer-logo {
        font-size: 20px;
    }

}


/* ---------- SMALL MOBILE (480px ↓) ---------- */

@media (max-width: 480px) {

    .hero-title {
        font-size: 28px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .room-content {
        padding: 20px;
    }

    .banquet-card {
        padding: 25px;
    }

    .contact-form-box input,
    .contact-form-box textarea {
        font-size: 13px;
    }

}
