/*==================================================
  Licence to Chill Homestay
  style.css
==================================================*/

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f8;
    color:#333;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:80px 0;
}

/* Buttons */

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#0e7c4a;
    color:#fff;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#095f38;
    transform:translateY(-3px);
}

.btn-outline{
    background:transparent;
    border:2px solid #fff;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}

/* Header */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:98px;
}

.logo h2{
    color:#0e7c4a;
    font-size:30px;
    font-weight:700;
}

nav ul{
    display:flex;
    gap:30px;
}

nav a{
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#0e7c4a;
}

.mobile-menu{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* Hero */

.hero{
    height:100vh;
    background:url("../images/hero.jpg") center/cover no-repeat;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
    text-align:center;
    color:#fff;
    max-width:750px;
    padding:20px;
}
.hero-content-about{
    text-align:center;
    color:#fff;
    /* max-width:750px; */
    padding:20px;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:20px;
    font-weight:700;
}

.hero-content p{
    font-size:20px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* Section Titles */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    color:#0e7c4a;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* About */

.about{
    background:#fff;
}

.about p{
    text-align:center;
    max-width:900px;
    margin:auto;
    font-size:18px;
}

/* Amenities */

.amenities{
    background:#f3f7f4;
}

.amenities h2{
    text-align:center;
    margin-bottom:50px;
    color:#0e7c4a;
}

.amenity-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:40px 25px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:45px;
    color:#0e7c4a;
    margin-bottom:20px;
}

.card h3{
    font-size:22px;
}
/* ==========================================
   Gallery Preview
========================================== */

.gallery-preview{
    background:#ffffff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.center{
    text-align:center;
    margin-top:50px;
}

/* ==========================================
   Why Choose Us
========================================== */

.why-us{
    background:#f6faf7;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-box{
    background:#fff;
    padding:40px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-10px);
}

.feature-box i{
    font-size:45px;
    color:#0e7c4a;
    margin-bottom:20px;
}

.feature-box h3{
    margin-bottom:15px;
    color:#222;
}

.feature-box p{
    color:#666;
}

/* ==========================================
   Reviews
========================================== */

.reviews{
    background:#ffffff;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.review-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    font-size:18px;
}

.review-card:hover{
    transform:translateY(-8px);
}

.review-card h4{
    margin-top:20px;
    color:#0e7c4a;
}

/* ==========================================
   Nearby Attractions
========================================== */

.places{
    background:#f5f8f6;
}

.place-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.place-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.place-card:hover{
    transform:translateY(-8px);
}

.place-card h3{
    color:#0e7c4a;
    margin-bottom:12px;
}

/* ==========================================
   Contact
========================================== */

.contact-section{
    background:#ffffff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.contact-card{
    background:#fff;
    text-align:center;
    padding:40px 25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card i{
    font-size:45px;
    color:#0e7c4a;
    margin-bottom:20px;
}

.contact-card h3{
    margin-bottom:10px;
}

.contact-card p{
    color:#666;
}

/* ==========================================
   Google Map
========================================== */

.map iframe{
    width:100%;
    height:450px;
    border:none;
}

/* ==========================================
   CTA
========================================== */

.cta{
    background:#0e7c4a;
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    max-width:650px;
    margin:auto;
    margin-bottom:35px;
}

/* ==========================================
   Footer
========================================== */

footer{
    background:#111;
    color:#ddd;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

footer h2,
footer h3{
    color:#fff;
    margin-bottom:20px;
}

footer ul li{
    margin-bottom:12px;
}

footer ul li a{
    transition:.3s;
}

footer ul li a:hover{
    color:#0e7c4a;
}

footer hr{
    margin:40px 0 25px;
    border:none;
    height:1px;
    background:#333;
}

.copyright{
    text-align:center;
    color:#999;
}

/* ==========================================
   Floating WhatsApp
========================================== */

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* ==========================================
   Scroll To Top
========================================== */

#topBtn{
    position:fixed;
    bottom:95px;
    right:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#0e7c4a;
    color:#fff;
    cursor:pointer;
    display:none;
    font-size:18px;
    transition:.3s;
    z-index:999;
}

#topBtn:hover{
    transform:translateY(-4px);
    background:#095f38;
}

/* ==========================================
   Simple Fade Animation
========================================== */

.card,
.feature-box,
.review-card,
.place-card,
.contact-card{
    animation:fadeUp .8s ease both;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/* Mobile Navigation */

nav.show{
    display:block;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    padding:20px;
}

nav.show ul{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* Active Menu */

nav a.active{
    color:#0e7c4a;
    font-weight:700;
}

/* Reveal Animation */

.card,
.feature-box,
.review-card,
.place-card,
.gallery-item,
.contact-card{
    opacity:0;
    transform:translateY(40px);
    transition:.6s ease;
}

.visible{
    opacity:1;
    transform:translateY(0);
}
/*==============================
  Gallery Filter Buttons
==============================*/

.gallery-filter{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.filter-btn{

    padding:12px 25px;
    border:none;
    border-radius:40px;
    background:#f0f0f0;
    cursor:pointer;
    transition:.3s;
    font-weight:600;

}

.filter-btn:hover,
.filter-btn.active{

    background:#0e7c4a;
    color:#fff;

}


/*==============================
  Lightbox
==============================*/

#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:99999;

}

#lightbox img{

max-width:90%;
max-height:85%;

border-radius:10px;

box-shadow:0 10px 30px rgba(0,0,0,.4);

}

#close-lightbox{

position:absolute;

top:25px;
right:40px;

font-size:45px;

cursor:pointer;

color:#fff;

}

#prev-image,
#next-image{

position:absolute;

top:50%;

transform:translateY(-50%);

width:60px;
height:60px;

border:none;

border-radius:50%;

font-size:30px;

cursor:pointer;

background:rgba(255,255,255,.2);

color:#fff;

transition:.3s;

}

#prev-image:hover,
#next-image:hover{

background:#0e7c4a;

}

#prev-image{

left:40px;

}

#next-image{

right:40px;

}
.logo {
    max-width: 180px;
    width: 100%;
    height: auto;
}