﻿/* ========================================
   GOOGLE FONTS
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========================================
   ROOT VARIABLES
======================================== */

:root {
    --primary: #0f172a;
    --secondary: #111827;
    --gold: #D4AF37;
    --gold-light: #f4d97a;
    --white: #ffffff;
    --cream: #FFF8E7;
    --gray: #94A3B8;
    --dark: #020617;
    --shadow: 0 10px 40px rgba(0,0,0,.15);
    --transition: all .4s ease;
}

/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    overflow-x: hidden;
    background: #fff;
    color: #784f56;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ========================================
   PRELOADER
======================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 70px;
    height: 70px;
    border: 4px solid #eee;
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {

    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   TOP BAR
======================================== */

.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.top-left {
    display: flex;
    gap: 30px;
}

    .top-left a {
        color: #fff;
    }

    .top-left i {
        color: var(--gold);
        margin-right: 8px;
    }

.social-icons a {
    color: #fff;
    margin-left: 15px;
    transition: .3s;
}

    .social-icons a:hover {
        color: var(--gold);
    }
/* ========================================
   HEADER
======================================== */

.main-header {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: .4s;
}

    .main-header.sticky {
        top: 0;
        background: rgba(15,23,42,.96);
        backdrop-filter: blur(12px);
        box-shadow: 0 10px 30px rgba(0,0,0,.20);
    }

.navbar {
    min-height: 110px;
    padding: 10px 0;
}

/* ========================================
   BRAND AREA
======================================== */

.hotel-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .hotel-brand img {
        width: 95px;
        height: 95px;
        object-fit: contain;
        transition: .4s;
        filter: drop-shadow( 0 0 15px rgba(212,175,55,.25));
    }

    .hotel-brand:hover img {
        transform: scale(1.05);
    }

.brand-content {
    display: flex;
    flex-direction: column;
}

.brand-location {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.brand-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.brand-tagline {
    color: #cbd5e1;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ========================================
   NAVIGATION
======================================== */

.navbar-nav {
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff !important;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 10px !important;
    transition: .4s;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: .4s;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 70%;
        left: 15%;
    }

    .nav-link:hover {
        color: var(--gold) !important;
    }

/* ========================================
   BOOK BUTTON
======================================== */

.book-btn {
    margin-left: 25px;
    background: linear-gradient( 135deg, #D4AF37, #B8860B);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
    white-space: nowrap;
}

    .book-btn:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(212,175,55,.35);
    }

/* ========================================
   TOGGLER
======================================== */

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 24px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:992px) {

    .navbar {
        min-height: 90px;
    }

    .hotel-brand img {
        width: 75px;
        height: 75px;
    }

    .brand-title {
        font-size: 28px;
    }

    .brand-tagline {
        display: none;
    }

    .navbar-collapse {
        margin-top: 20px;
        padding: 25px;
        border-radius: 20px;
        background: rgba(15,23,42,.98);
    }

    .book-btn {
        margin-left: 0;
        margin-top: 20px;
        display: inline-block;
    }
}

@media(max-width:768px) {

    .hotel-brand img {
        width: 65px;
        height: 65px;
    }

    .brand-title {
        font-size: 22px;
    }

    .brand-location {
        font-size: 10px;
    }
}
/* ========================================
   HERO SECTION
======================================== */

.hero-section {
    height: 100vh;
    position: relative;
}

.heroSwiper,
.swiper-slide {
    height: 100vh;
}

.hero-slide {
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide1 {
    background: url('../images/hero1.jpg');
}

.slide2 {
    background: url('../images/hero2.jpg');
}

.slide3 {
    background: url('../images/hero3.jpg');
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.55);
}

.hero-content {
    position: relative;
    z-index: 5;
    color: #fff;
    max-width: 750px;
}

    .hero-content span {
        color: var(--gold);
        font-size: 18px;
        letter-spacing: 4px;
    }

    .hero-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: 85px;
        font-weight: 800;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .hero-content h2 {
        font-size: 32px;
        color: var(--cream);
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 32px;
        max-width: 650px;
    }

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}
.theme-btn {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

    .theme-btn:hover {
        background: #fff;
        color: var(--gold);
        transform: translateY(-3px);
    }

.outline-btn {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    transition: .4s;
}

    .outline-btn:hover {
        background: #fff;
        color: #000;
    }
.stats-section {
    background: #fff;
    padding: 90px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.stat-box {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: .4s;
}

    .stat-box:hover {
        transform: translateY(-10px);
    }

    .stat-box i {
        font-size: 45px;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .stat-box h3 {
        font-size: 42px;
        font-weight: 700;
    }

    .stat-box p {
        color: #666;
    }


/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    padding: 120px 0;
    background: #fff;
}

/* IMAGE */

.about-image {
    position: relative;
    vertical-align:top;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

    .about-image img {
        width: 100%;
        height: 800px;
        object-fit: cover;
        transition: .8s;
       
    }

    .about-image:hover img {
        transform: scale(1.08);
    }

/* EXPERIENCE BADGE */

.experience-badge {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 150px;
    height: 150px;
    background: linear-gradient( 135deg, #D4AF37, #B8860B );
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

    .experience-badge span {
        font-size: 48px;
        font-weight: 700;
        line-height: 1;
    }

/* CONTENT */

.about-text {
    color: #555;
    line-height: 32px;
    margin-bottom: 20px;
    font-size: 16px;
}

/* FEATURES */

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    background: #fff;
    padding: 16px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
}

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,.12);
    }

    .feature-item i {
        color: #D4AF37;
        font-size: 18px;
        min-width: 20px;
    }

/* HIGHLIGHT BOX */

.about-highlight {
    margin-top: 35px;
    background: #fffaf0;
    border-left: 5px solid #D4AF37;
    padding: 25px;
    border-radius: 15px;
}

    .about-highlight h5 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        color: #0f172a;
        margin-bottom: 10px;
    }

    .about-highlight p {
        margin: 0;
        color: #666;
    }

/* RESPONSIVE */

@media(max-width:992px) {

    .about-image {
        margin-bottom: 40px;
    }

        .about-image img {
            height: 500px;
        }
}

@media(max-width:768px) {

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
    }

        .experience-badge span {
            font-size: 36px;
        }
}

@media(max-width:576px) {

    .about-image img {
        height: 350px;
    }
}
/* ========================================
   ROOMS SECTION
======================================== */
#rooms {
    padding: 120px 0;
    background: #f8fafc;
}
.room-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
    overflow: hidden;
}

    .room-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

.room-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(212,175,55,.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .room-icon i {
        font-size: 28px;
        color: #D4AF37;
    }

.room-content h3 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 28px;
    font-family: 'Playfair Display', serif;
}

.room-content p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    min-height: 48px;
}

.tariff-box {
    background: #fafafa;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    min-height: 120px;
    line-height: 32px;
}

    .tariff-box div {
        display: flex;
        justify-content: space-between;
        font-size: 15px;
    }

.room-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex-grow: 1;
}

    .room-features li {
        padding: 6px 0;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

        .room-features li:last-child {
            border-bottom: none;
        }

.room-content .theme-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* FEATURED CARD */

.featured-room {
    border: 2px solid #D4AF37;
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
/* ========================================
   WEDDING SECTION
======================================== */

.wedding-section {
    position: relative;
    padding: 180px 0;
    background: url('../images/wedding-bg.jpeg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.wedding-content {
    position: relative;
    z-index: 5;
    color: #fff;
}

    .wedding-content span {
        color: var(--gold);
        letter-spacing: 4px;
    }

    .wedding-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 70px;
        margin: 20px 0;
    }

    .wedding-content p {
        font-size: 22px;
        margin-bottom: 35px;
    }
/* ========================================
   BANQUET SECTION
======================================== */

.banquet-section {
    padding: 120px 0;
}

.banquet-image {
    overflow: hidden;
    border-radius: 30px;
}

    .banquet-image img {
        transition: .7s;
    }

    .banquet-image:hover img {
        transform: scale(1.08);
    }

.banquet-features {
    margin-top: 35px;
}

.feature-box {
    background: #fff;
    padding: 18px 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

    .feature-box i {
        color: var(--gold);
        margin-right: 12px;
    }
/* ========================================
   PACKAGE SECTION
======================================== */

.package-section {
    padding: 120px 0;
    background: linear-gradient( 135deg, #0f172a, #111827);
}

    .package-section .section-heading h2 {
        color: #fff;
    }

.package-card {
    position: relative;
    background: #fff;
    padding: 50px 35px;
    border-radius: 30px;
    text-align: center;
    transition: .5s;
    margin-top: 40px;
}

    .package-card:hover {
        transform: translateY(-15px);
    }

    .package-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 38px;
    }

    .package-card .price {
        color: var(--gold);
        font-size: 50px;
        font-weight: 700;
        margin: 20px 0;
    }

    .package-card ul {
        margin: 30px 0;
    }

        .package-card ul li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

.active-package {
    border: 3px solid var(--gold);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gold);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
}
/* ========================================
   RESTAURANT
======================================== */

.restaurant-section {
    padding: 120px 0;
    background: #fff;
}

.restaurant-content span {
    color: var(--gold);
    letter-spacing: 3px;
}

.restaurant-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    margin: 15px 0;
}

.food-list {
    margin-top: 30px;
}

    .food-list li {
        padding: 12px 0;
        position: relative;
        padding-left: 30px;
    }

        .food-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
        }
/* ========================================
   ATTRACTIONS
======================================== */

.attraction-section {
    padding: 120px 0;
    background: #f8fafc;
}

.attraction-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: .5s;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .attraction-card:hover {
        transform: translateY(-10px);
    }

    .attraction-card img {
        height: 250px;
        object-fit: cover;
    }

    .attraction-card h5 {
        padding: 25px;
        text-align: center;
        font-size: 20px;
    }
/* ========================================
   GALLERY
======================================== */
.gallery-section {
    padding: 120px 0;
    background: #fafafa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,.15);
    }

    .gallery-item img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: .6s;
    }

    .gallery-item:hover img {
        transform: scale(1.12);
    }

.gallery-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient( transparent, rgba(0,0,0,.85) );
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* LIGHTBOX */

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

    .gallery-lightbox.active {
        display: flex;
    }

.lightbox-image {
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,.5);
}

.lightbox-title {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    z-index: 999999;
}

.prev-image,
.next-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    transition: .3s;
}

.prev-image {
    left: 30px;
}

.next-image {
    right: 30px;
}

    .prev-image:hover,
    .next-image:hover {
        transform: translateY(-50%) scale(1.1);
    }

/* RESPONSIVE */

@media(max-width:992px) {

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 240px;
    }

    .prev-image,
    .next-image {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
/* ========================================
   TESTIMONIALS
======================================== */

.testimonial-section {
    padding: 120px 0;
    background: linear-gradient( 135deg, #0f172a, #111827);
}

    .testimonial-section .section-heading h2 {
        color: #fff;
    }

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.stars {
    color: #ffc107;
    font-size: 22px;
    margin-bottom: 20px;
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
    padding: 120px 0;
    background: #f8fafc;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.accordion-button {
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 600;
    background: #fff;
}

    .accordion-button:not(.collapsed) {
        background: var(--gold);
        color: #fff;
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

.accordion-body {
    padding: 25px;
    line-height: 30px;
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
    padding: 120px 0;
    background: #fff;
}

.contact-info span {
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 600;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    margin: 15px 0 30px;
}

.contact-info p {
    font-size: 18px;
    line-height: 34px;
    color: #555;
}

.contact-form {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

    .contact-form .form-control {
        height: 60px;
        border: none;
        background: #f8fafc;
        margin-bottom: 20px;
        border-radius: 15px;
        padding: 15px 20px;
    }

    .contact-form textarea.form-control {
        height: 160px;
        resize: none;
        padding-top: 20px;
    }

    .contact-form .form-control:focus {
        box-shadow: none;
        border: 1px solid var(--gold);
    }

/* ========================================
   FOOTER
======================================== */

.main-footer {
    background: #0f172a;
    color: #fff;
    padding: 90px 0 20px;
}

    .main-footer h4 {
        font-size: 24px;
        margin-bottom: 25px;
        color: var(--gold);
    }

    .main-footer p {
        color: #cbd5e1;
        line-height: 30px;
    }

    .main-footer ul {
        padding: 0;
    }

        .main-footer ul li {
            margin-bottom: 12px;
        }

            .main-footer ul li a {
                color: #cbd5e1;
                transition: .3s;
            }

                .main-footer ul li a:hover {
                    color: var(--gold);
                    padding-left: 8px;
                }

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: .4s;
    }

        .footer-social a:hover {
            background: var(--gold);
            transform: translateY(-5px);
        }

.main-footer hr {
    margin: 40px 0 20px;
    border-color: rgba(255,255,255,.1);
}

.copyright {
    text-align: center;
    color: #94a3b8;
}

/* ========================================
   WHATSAPP BUTTON
======================================== */

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: .4s;
}

    .whatsapp-btn:hover {
        color: #fff;
        transform: scale(1.1);
    }

/* ========================================
   SCROLL TOP
======================================== */

.scroll-top {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: .4s;
}

    .scroll-top.active {
        opacity: 1;
        visibility: visible;
    }

/* ========================================
   SWIPER PAGINATION
======================================== */

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ========================================
   GLASSMORPHISM EFFECT
======================================== */

.glass-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.15);
}

/* ========================================
   FADE ANIMATIONS
======================================== */

.fade-up {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zoom-in {
    animation: zoomIn .8s ease;
}

@keyframes zoomIn {

    from {
        opacity: 0;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1200px) {

    .hero-content h1 {
        font-size: 70px;
    }
}

@media(max-width:992px) {

    .navbar-collapse {
        background: #0f172a;
        padding: 25px;
        margin-top: 15px;
        border-radius: 15px;
    }

    .navbar-nav {
        gap: 15px;
    }

    .book-btn {
        margin-left: 0;
        margin-top: 20px;
        display: inline-block;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-content h2 {
        font-size: 26px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .contact-info h2 {
        font-size: 42px;
    }

    .gallery-grid {
        columns: 2;
    }
}

@media(max-width:768px) {

    .top-bar {
        display: none;
    }

    .main-header {
        top: 0;
    }

    .hero-content {
        text-align: center;
    }

        .hero-content h1 {
            font-size: 46px;
        }

        .hero-content h2 {
            font-size: 22px;
        }

    .hero-buttons {
        flex-direction: column;
    }

    .theme-btn,
    .outline-btn {
        width: 100%;
        text-align: center;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .wedding-content h2 {
        font-size: 45px;
    }

    .restaurant-content h2 {
        font-size: 40px;
    }

    .contact-info {
        margin-bottom: 40px;
    }

    .gallery-grid {
        columns: 1;
    }
}

@media(max-width:576px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 28px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .room-content {
        padding: 20px;
    }

    .package-card {
        padding: 35px 20px;
    }

    .stat-box {
        padding: 25px;
    }
}
.hotel-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .hotel-brand img {
        width: 75px;
        height: 75px;
        object-fit: contain;
    }

.brand-text {
    display: flex;
    flex-direction: column;
}

    .brand-text h2 {
        margin: 0;
        font-family: 'Playfair Display',serif;
        font-size: 34px;
        font-weight: 700;
        color: #fff;
        line-height: 1;
    }

    .brand-text span {
        color: #D4AF37;
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-top: 5px;
    }
/* ==========================================
   HERO VIDEO SECTION
========================================== */

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* VIDEO */

    .hero-video video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 1;
    }

    /* DARK OVERLAY */

    .hero-video .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( rgba(0,0,0,.55), rgba(0,0,0,.65));
        z-index: 2;
    }

    /* CONTENT */

    .hero-video .hero-content {
        position: relative;
        z-index: 5;
        text-align: center;
        max-width: 900px;
        padding: 0 20px;
    }

        /* SUBTITLE */

        .hero-video .hero-content span {
            color: #D4AF37;
            letter-spacing: 5px;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* TITLE */

        .hero-video .hero-content h1 {
            font-family: 'Playfair Display', serif;
            color: #fff;
            font-size: 90px;
            font-weight: 700;
            margin: 20px 0;
            text-transform: uppercase;
            text-shadow: 0 5px 25px rgba(0,0,0,.5);
        }

        /* TAGLINE */

        .hero-video .hero-content p {
            color: #fff;
            font-size: 24px;
            letter-spacing: 2px;
            margin-bottom: 35px;
        }

/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* GOLD BUTTON */

.theme-btn {
    background: linear-gradient( 135deg, #D4AF37, #B8860B);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

    .theme-btn:hover {
        transform: translateY(-3px);
        color: #fff;
        box-shadow: 0 10px 25px rgba(212,175,55,.4);
    }

/* OUTLINE BUTTON */

.outline-btn {
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    transition: .4s;
}

    .outline-btn:hover {
        background: #fff;
        color: #111;
    }

/* SCROLL DOWN */

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 5;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-video .hero-content h1 {
        font-size: 60px;
    }
}

@media(max-width:768px) {

    .hero-video .hero-content h1 {
        font-size: 42px;
    }

    .hero-video .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width:576px) {

    .hero-video .hero-content h1 {
        font-size: 34px;
    }

    .hero-video .hero-content span {
        font-size: 14px;
    }
}
.hero-rating {
    margin-top: 30px;
    color: #D4AF37;
    font-size: 22px;
}

    .hero-rating span {
        display: block;
        margin-top: 10px;
        color: #fff;
        letter-spacing: 1px;
        font-size: 15px;
    }

.tariff-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    line-height: 32px;
}

.room-features {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

    .room-features li {
        padding: 5px 0;
    }

.featured-room {
    border: 2px solid #D4AF37;
    position: relative;
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    z-index: 2;
    font-size: 13px;
    font-weight: 600;
}
.banquet-image-slider {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

    .banquet-image-slider img {
        width: 100%;
        height: 550px;
        object-fit: cover;
        transition: .5s;
    }

    .banquet-image-slider:hover img {
        transform: scale(1.03);
    }

.banquet-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
}

.banquet-pagination .swiper-pagination-bullet-active {
    background: #D4AF37;
}

.attraction-section {
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
}

.attraction-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.attraction-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
}

.attraction-marquee:hover .attraction-track {
    animation-play-state: paused;
}

.attraction-card {
    width: 320px;
    margin: 0 15px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .attraction-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .attraction-card h5 {
        padding: 20px;
        margin: 0;
        text-align: center;
        font-size: 18px;
    }

@keyframes scrollLeft {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
/* ========================================
   INNER PAGE BANNER
======================================== */

.page-banner {
    position: relative;
    height: 450px;
    background: url('../images/page-banner.jpeg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0,0,0,.65), rgba(0,0,0,.65) );
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

    .banner-content h1 {
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 15px;
        font-family: 'Playfair Display', serif;
    }

    .banner-content p {
        font-size: 18px;
        letter-spacing: 1px;
        color: #D4AF37;
    }

.btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 56px;
    padding: 0 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(135deg, #c89b3c 0%, #a67c2d 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(200,155,60,.35);
    transition: all .35s ease;
}

.btn-send:hover {
    background: linear-gradient(135deg, #a67c2d 0%, #8d6922 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200,155,60,.45);
}

.btn-send:active {
    transform: scale(.98);
}

.btn-send:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(200,155,60,.25);
}
.main-footer {
    background: #111;
    color: #ddd;
    padding: 80px 0 25px;
}

.footer-logo {
    width: 90px;
    margin-bottom: 15px;
}

.footer-about h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-about p {
    line-height: 1.9;
    color: #bbb;
}

.main-footer h4 {
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

    .main-footer h4:after {
        content: "";
        width: 45px;
        height: 3px;
        background: #c89b3c;
        position: absolute;
        left: 0;
        bottom: -10px;
    }

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #bbb;
        text-decoration: none;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #c89b3c;
            padding-left: 8px;
        }

.footer-contact {
    list-style: none;
    padding: 0;
}

    .footer-contact li {
        margin-bottom: 18px;
        display: flex;
        align-items: flex-start;
        color: #bbb;
    }

    .footer-contact i {
        color: #c89b3c;
        margin-right: 12px;
        margin-top: 5px;
        width: 20px;
    }

    .footer-contact a {
        color: #bbb;
        text-decoration: none;
    }

        .footer-contact a:hover {
            color: #c89b3c;
        }

.footer-social {
    margin-top: 25px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #222;
        color: #fff;
        margin-right: 10px;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #c89b3c;
            transform: translateY(-5px);
        }

.footer-bottom {
    color: #999;
    padding-top: 15px;
}

.main-footer hr {
    border-color: rgba(255,255,255,.08);
    margin: 50px 0 25px;
}