/* ================= GLOBAL SETTINGS ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Poppins',sans-serif;
    color:#2B2B2B;
    background:#FFFFFF;

}


:root{

    --lavender:#8B5FBF;
    --light-lavender:#F5F0FA;
    --gold:#D4AF37;
    --dark:#2B2B2B;
    --white:#FFFFFF;

}


img{

    max-width:100%;
    display:block;

}


a{

    text-decoration:none;

}


ul{

    list-style:none;

}


/* ================= NAVBAR ================= */


header{

    position:fixed;
    width:100%;
    top:0;
    z-index:1000;

}


.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 60px;

    background:rgba(255,255,255,0.95);

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}



.logo{

    display:flex;
    align-items:center;
    gap:12px;

}


.logo img{

    width:85px;
    height:85px;
    object-fit:cover;
    border-radius:50%;

}


.logo span{

    font-family:'Playfair Display',serif;
    font-size:28px;
    font-weight:700;
    color:var(--gold);

}



.nav-links{

    display:flex;
    gap:25px;

}



.nav-links a{

    color:var(--dark);
    font-weight:500;
    transition:0.3s;

}



.nav-links a:hover{

    color:var(--lavender);

}



.menu-icon{

    display:none;
    font-size:30px;
    color:var(--lavender);

}


/* ================= HERO SECTION ================= */


.hero{

    height:100vh;

    background:

    linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)
    ),

    url("images/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}



.hero-content{

    color:white;
    max-width:800px;
    padding:20px;

}



.hero-content h4{

    font-size:22px;
    letter-spacing:3px;
    color:var(--gold);

}



.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:60px;

    margin:20px 0;

}



.hero-content p{

    font-size:20px;
    line-height:1.8;

}



.btn{

    display:inline-block;

    margin-top:30px;

    padding:14px 35px;

    background:var(--gold);

    color:white;

    border-radius:30px;

    font-weight:600;

    transition:0.3s;

}



.btn:hover{

    background:var(--lavender);

    transform:translateY(-3px);

}
/* ================= SECTION TITLE ================= */

.section-title{

    text-align:center;
    max-width:800px;
    margin:80px auto 50px;
    padding:0 20px;

}


.section-title h5{

    color:var(--lavender);
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:10px;

}


.section-title h2{

    font-family:'Playfair Display',serif;
    font-size:42px;
    color:var(--dark);
    margin-bottom:15px;

}


.section-title p{

    color:#666;
    line-height:1.8;

}



/* ================= ABOUT SECTION ================= */


.about{

    display:flex;
    align-items:center;
    gap:50px;

    padding:80px 8%;

    background:var(--light-lavender);

}



.about-image{

    flex:1;

}


.about-image img{

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,0.15);

}



.about-content{

    flex:1;

}



.about-content h5{

    color:var(--lavender);
    letter-spacing:2px;

}



.about-content h2{

    font-family:'Playfair Display',serif;

    font-size:40px;

    margin:15px 0;

}



.about-content p{

    line-height:1.8;

    color:#555;

}



.about-list{

    margin-top:25px;

}



.about-list p{

    margin:10px 0;

    color:var(--dark);

    font-weight:500;

}



/* ================= ROOMS SECTION ================= */


.rooms{

    padding:20px 8% 80px;

}



.room-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.room-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    transition:0.4s;

}



.room-card:hover{

    transform:translateY(-10px);

}



.room-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    object-position:center bottom;

}



.room-card h3{

    font-size:24px;

    margin:20px;

    color:var(--lavender);

}



.room-card p{

    margin:0 20px 25px;

    color:#666;

}



/* ================= SERVICES SECTION ================= */


.services{

    padding:20px 8% 80px;

    background:var(--light-lavender);

}



.services-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.service-card{

    background:white;

    padding:30px 20px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    transition:0.3s;

}



.service-card:hover{

    transform:translateY(-8px);

}



.service-card i{

    font-size:40px;

    color:var(--gold);

}



.service-card h3{

    margin:15px 0;

    color:var(--lavender);

}



.service-card p{

    color:#666;

    line-height:1.6;

}



/* ================= FACILITIES SECTION ================= */


.facilities{

    padding:20px 8% 80px;

}



.facilities-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.facility-card{

    padding:30px 20px;

    background:var(--light-lavender);

    text-align:center;

    border-radius:18px;

    transition:0.3s;

}



.facility-card:hover{

    background:var(--lavender);

    color:white;

}



.facility-card span{

    font-size:35px;

}



.facility-card h3{

    margin:15px 0;

}
/* ================= GALLERY SECTION ================= */

.gallery{

    padding:20px 8% 80px;

    background:var(--light-lavender);

}


.gallery-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}



.gallery-item{

    overflow:hidden;

    border-radius:20px;

    height:280px;

}



.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:0.5s;

}



.gallery-item:hover img{

    transform:scale(1.1);

}



/* ================= VIDEO GALLERY ================= */


.video-gallery{

    padding:20px 8% 80px;

}



.video-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.video-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.1);

}



.video-card video{

    width:100%;

    height:250px;

    object-fit:cover;

}



.video-card h3{

    padding:20px;

    color:var(--lavender);

}



/* ================= EXPERIENCE SECTION ================= */


.experience{

    padding:20px 8% 80px;

    background:var(--light-lavender);

}



.experience-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.experience-card{

    background:white;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

}



.experience-card h3{

    color:var(--lavender);

    margin-bottom:15px;

}



.experience-card p{

    color:#666;

    line-height:1.6;

}



/* ================= NEARBY ATTRACTIONS ================= */


.nearby{

    padding:20px 8% 80px;

}



.nearby-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.nearby-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.1);

    transition:0.3s;

}



.nearby-card:hover{

    transform:translateY(-8px);

}



.nearby-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}



.nearby-card h3{

    margin:20px;

    color:var(--lavender);

}



.nearby-card p{

    margin:0 20px;

    color:#666;

    line-height:1.6;

}



.nearby-card span{

    display:block;

    margin:20px;

    color:var(--gold);

    font-weight:600;

}



/* ================= REVIEWS SECTION ================= */


.reviews{

    padding:20px 8% 80px;

    background:var(--light-lavender);

}



.reviews-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.review-card{

    background:white;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

}



.review-rating i{

    color:var(--gold);

    font-size:20px;

    margin:3px;

}



.review-card p{

    margin:20px 0;

    color:#666;

    line-height:1.7;

}



.review-card h3{

    color:var(--lavender);

}



.review-card span{

    color:#777;

}
/* ================= BOOKING SECTION ================= */

.booking{

    padding:20px 8% 80px;

    background:var(--light-lavender);

}


.booking-container{

    max-width:900px;

    margin:auto;

}



.booking-form{

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.1);

}



.input-group{

    margin-bottom:20px;

}



.input-group input,
.input-group select,
.input-group textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-family:'Poppins',sans-serif;

}



.input-group textarea{

    height:130px;

    resize:none;

}



.input-group label{

    display:block;

    margin-bottom:8px;

    color:var(--lavender);

    font-weight:500;

}



.input-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}





/* ================= CONTACT SECTION ================= */


.contact{

    padding:20px 8% 80px;

}



.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    align-items:center;

}



.contact-info{

    background:var(--light-lavender);

    padding:35px;

    border-radius:25px;

}



.contact-info h3{

    font-family:'Playfair Display',serif;

    font-size:32px;

    color:var(--lavender);

    margin-bottom:20px;

}



.contact-info p{

    line-height:1.8;

    margin-bottom:15px;

}



.contact-features p{

    font-weight:500;

}



.map-container iframe{

    width:100%;

    height:350px;

    border:0;

    border-radius:20px;

}





/* ================= TAXI SERVICE ================= */


.taxi-service{

    padding:60px 8%;

    background:var(--lavender);

    color:white;

    text-align:center;

}



.taxi-content h2{

    font-family:'Playfair Display',serif;

    font-size:40px;

}



.taxi-content p{

    max-width:700px;

    margin:20px auto;

    line-height:1.8;

}



.auto-box{

    margin:35px auto 0;

    max-width:500px;

    background:white;

    color:var(--dark);

    padding:25px;

    border-radius:20px;

}



.auto-box h3{

    color:var(--lavender);

    margin-bottom:10px;

}





/* ================= FOOTER ================= */


footer{

    background:#222;

    color:white;

    padding:50px 8% 20px;

}



.footer-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}



footer h3,
footer h4{

    color:var(--gold);

    margin-bottom:15px;

}



footer p{

    line-height:1.8;

    color:#ddd;

}



.copyright{

    text-align:center;

    margin-top:40px;

    border-top:1px solid #444;

    padding-top:20px;

}





/* ================= MOBILE RESPONSIVE ================= */


@media(max-width:768px){


.navbar{

    padding:15px 25px;

}



.nav-links{

    display:none;

}

.nav-links.active{

    display:flex;

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    flex-direction:column;

    align-items:center;

    gap:20px;

    padding:25px 0;

    background:white;

    box-shadow:0 10px 20px rgba(0,0,0,0.08);

}

.menu-icon{

    display:block;
    cursor:pointer;
}


.hero-content h1{

    font-size:38px;

}



.hero-content p{

    font-size:16px;

}



.about{

    flex-direction:column;

}

.room-container,
.services-container,
.facilities-container,
.gallery-container,
.video-container,
.experience-container,
.nearby-container,
.reviews-container{

    grid-template-columns:1fr;

}



.contact-container{

    grid-template-columns:1fr;

}



.input-row{

    grid-template-columns:1fr;

}



.footer-container{

    grid-template-columns:1fr;

}



.section-title h2{

    font-size:32px;

}



}
/* ================= MODERN GALLERY EFFECT ================= */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-item::after {
    content: "View Photo";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.35);
    color: white;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;

    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}
/* ================= GALLERY LIGHTBOX ================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;

    object-fit: contain;

    border-radius: 12px;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;

    color: white;
    font-size: 40px;

    cursor: pointer;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: var(--gold);
    color: white;

    font-size: 28px;

    cursor: pointer;

    transition: 0.3s;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--lavender);
    transform: translateY(-50%) scale(1.08);
}


@media (max-width: 768px) {

    .lightbox {
        padding: 15px;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 75vh;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 32px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}
/* ================= HOME HERO FIX ================= */

.hero {
    min-height: 650px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f5f2f8;
    position: relative;
}
/* ================= HERO BUTTONS ================= */

.hero-content {
    text-align: center;
}

.hero-content .btn {
    display: inline-block;
    padding: 16px 35px;
    margin-top: 20px;

    background: #d4af37;
    color: white;

    border-radius: 30px;
    text-decoration: none;

    font-weight: 700;
    font-size: 16px;

    transition: 0.3s ease;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* WhatsApp button */

.hero-content a[href*="wa.me"] {
    display: inline-block;
    margin-left: 12px;
    padding: 16px 28px;

    background: #25D366;
    color: white;

    border-radius: 30px;
    text-decoration: none;

    font-weight: 700;

    transition: 0.3s ease;
}

.hero-content a[href*="wa.me"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}
/* ================= HOME HERO FIX ================= */

.hero {
    width: 100%;
    min-height: calc(100vh - 100px);
    position: relative;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
    padding: 40px 25px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Welcome text */
.hero-content span:first-child {
    color: #e0b52f;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

/* Main heading */
.hero-content h1 {
    margin: 0 0 20px;

    color: white;

    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;

    text-align: center;
}

/* Description */
.hero-content p {
    margin: 0 0 30px;

    color: white;

    font-size: 24px;
    line-height: 1.5;

    text-align: center;
}

/* Buttons */
.hero-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    min-height: 62px;

    padding: 16px 30px;

    border-radius: 35px;

    background: #e0b52f;
    color: white;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;

    margin: 5px 8px;

    transition: 0.3s ease;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
}

/* WhatsApp button */
.hero-content a[href*="wa.me"] {
    background: #25D366;
    color: white;
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .hero {
        min-height: calc(100vh - 80px);

        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-content span:first-child {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 22px;
    }

    .hero-content .btn {
        min-width: 190px;
        min-height: 52px;

        padding: 13px 22px;

        font-size: 16px;

        margin: 5px;
    }
}