*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;
color:#222;
overflow-x:hidden;

background:

radial-gradient(
circle at top left,
rgba(255,255,255,0.55),
transparent 28%
),

radial-gradient(
circle at bottom right,
rgba(255,255,255,0.35),
transparent 24%
),

linear-gradient(
135deg,
#f5fff8 0%,
#dff7ef 22%,
#c9f2e7 45%,
#d9f8f4 68%,
#e8fff8 100%
);

position:relative;

}
/* =========================
BACKGROUND EFFECTS
========================= */

body::before{

content:'';

position:fixed;

inset:0;

background:

radial-gradient(
ellipse at top left,
rgba(255,255,255,0.22),
transparent 60%
),

radial-gradient(
ellipse at bottom right,
rgba(255,255,255,0.18),
transparent 60%
),

radial-gradient(
circle,
rgba(255,255,255,0.18) 1px,
transparent 1px
)
top right / 14px 14px no-repeat,

radial-gradient(
circle,
rgba(255,255,255,0.14) 1px,
transparent 1px
)
bottom left / 12px 12px no-repeat;

pointer-events:none;

z-index:-1;

opacity:1;

}
/* =========================
TYPOGRAPHY
========================= */

h1,h2,h3{
font-family:'Cormorant Garamond',serif;
font-weight:700;
}

section{
padding:120px 10%;
}

/* =========================
HERO
========================= */

.hero{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-image{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
top:0;
left:0;
z-index:1;

filter:
contrast(1.08)
saturate(1.08)
brightness(1.02);
}

.hero-overlay{
position:absolute;
inset:0;

background:linear-gradient(
180deg,
rgba(0,0,0,0.20),
rgba(0,0,0,0.42)
);

z-index:2;
}

.navbar{
position:absolute;
top:0;
left:0;
width:100%;
padding:30px 60px;

display:flex;
justify-content:space-between;
align-items:center;

z-index:5;
}

.logo{
font-size:34px;
font-weight:700;
letter-spacing:8px;
color:#fff;
}

.price-tag{
padding:14px 28px;
background:#fff;
border-radius:50px;
font-weight:700;
color:#111;
font-size:15px;

box-shadow:
0 10px 30px rgba(0,0,0,0.15);
}

.hero-content{
position:relative;
z-index:4;
max-width:900px;
padding:20px;
animation:fadeUp 1.2s ease;
}

.location{
font-size:13px;
letter-spacing:5px;
text-transform:uppercase;
color:#fff;
margin-bottom:20px;
font-weight:600;
}

.hero h1{
font-size:100px;
line-height:0.95;
color:#fff;
margin-bottom:20px;

text-shadow:
0 5px 30px rgba(0,0,0,0.35);
}

.tagline{
font-size:24px;
color:#fff;
margin-bottom:45px;
font-weight:400;
}

/* =========================
REVIEW BADGE
========================= */

#review-badge-container{
margin-top:28px;
display:flex;
justify-content:center;
}

/* =========================
BUTTONS
========================= */

.hero-buttons,
.contact-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
padding:18px 36px;
border-radius:60px;
font-weight:600;
font-size:15px;

transition:0.3s;

display:inline-flex;
align-items:center;
justify-content:center;

text-decoration:none;
}

.btn-primary{
background:#0f766e;
color:#fff;

box-shadow:
0 14px 35px rgba(15,118,110,0.28);
}

.btn-secondary{
background:#be185d;
color:#fff;

box-shadow:
0 14px 35px rgba(190,24,93,0.22);
}

.btn-primary:hover{
background:#115e59;
transform:translateY(-5px) scale(1.02);
}

.btn-secondary:hover{
background:#9d174d;
transform:translateY(-5px) scale(1.02);
}

/* =========================
INTRO
========================= */

.intro{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;

background:rgba(255,255,255,0.72);
backdrop-filter:blur(3px);
}

.intro-text h2{
font-size:60px;
margin-bottom:30px;
color:#111;
}

.intro-text p{
font-size:18px;
line-height:2;
color:#555;
}

.intro-image img{
width:100%;
border-radius:30px;

box-shadow:
0 20px 60px rgba(0,0,0,0.08);

transition:
transform 0.45s ease,
box-shadow 0.45s ease;
}

.intro-image img:hover{
transform:translateY(-8px) scale(1.02);

box-shadow:
0 30px 70px rgba(0,0,0,0.12);
}

/* =========================
GALLERY
========================= */

.gallery{
background:rgba(255,255,255,0.55);
backdrop-filter:blur(3px);
}

.gallery h2,
.amenities h2,
.contact-section h2{
font-size:60px;
text-align:center;
margin-bottom:60px;
color:#111;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.gallery-grid img{
width:100%;
height:380px;
object-fit:cover;
border-radius:28px;

box-shadow:
0 20px 50px rgba(0,0,0,0.08);

transition:
transform 0.45s ease,
box-shadow 0.45s ease;
}

.gallery-grid img:hover{
transform:translateY(-8px) scale(1.02);

box-shadow:
0 30px 70px rgba(0,0,0,0.12);
}

/* =========================
AMENITIES
========================= */

.amenities{
background:rgba(255,255,255,0.5);
backdrop-filter:blur(3px);
}

.amenities-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:24px;
}

.amenity-card{
padding:28px;
border-radius:24px;

display:flex;
align-items:center;
gap:14px;

font-weight:600;
font-size:16px;

box-shadow:
0 12px 30px rgba(0,0,0,0.18);

transition:
transform 0.35s ease,
box-shadow 0.35s ease,
background 0.35s ease;
}

.amenity-card:hover{
transform:translateY(-6px);
}

.amenity-icon{
font-size:18px;
font-weight:700;
min-width:20px;
}

.amenity-card.available{

background:linear-gradient(
135deg,
#065f46,
#047857
);

color:#fff;
}

.amenity-card.unavailable{

background:linear-gradient(
135deg,
#374151,
#4b5563
);

color:rgba(255,255,255,0.72);

opacity:0.78;
}

.amenity-card.unavailable span:last-child{
text-decoration:line-through;
}

/* =========================
LOCATION SECTION
========================= */

.location-grid{
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:40px;
align-items:start;
}

.location-left,
.location-right{
display:flex;
flex-direction:column;
gap:40px;
}

/* =========================
PREMIUM CARDS
========================= */

.premium-card{
background:rgba(255,255,255,0.68);

backdrop-filter:blur(8px);

border-radius:36px;

padding:40px;

box-shadow:
0 20px 60px rgba(0,0,0,0.06);
}

.premium-card h2{
font-size:46px;
margin-bottom:28px;
color:#111;
}

/* =========================
ADDRESS
========================= */

.address-card p,
.details-card p,
.parking-description{
font-size:18px;
line-height:2;
color:#555;
}

.map-button{
display:inline-flex;
align-items:center;
justify-content:center;

padding:16px 28px;

border-radius:50px;

background:#0f766e;
color:#fff;

font-weight:600;

transition:0.3s;
text-decoration:none;
}

.map-button:hover{
background:#115e59;
transform:translateY(-3px);
}

/* =========================
MAP
========================= */

.map-card{
padding:0;
overflow:hidden;
}

.map-card iframe{
width:100%;
height:420px;
border:0;
display:block;
}

/* =========================
PARKING
========================= */

.parking-yes{
color:#047857;
font-weight:700;
margin-bottom:16px;
font-size:18px;
}

.parking-no{
color:#be123c;
font-weight:700;
margin-bottom:16px;
font-size:18px;
}

/* =========================
RULES
========================= */

.rules-grid{
display:grid;
grid-template-columns:1fr;
gap:18px;
}

.rule-item{
padding:18px 22px;

border-radius:18px;

background:
linear-gradient(
135deg,
#111827,
#1f2937
);

color:#fff;

font-weight:600;

box-shadow:
0 10px 25px rgba(0,0,0,0.12);

transition:0.3s;
}

.rule-item:hover{
transform:translateY(-4px);
}

/* =========================
STAY DETAILS
========================= */

.stay-details-card{
display:flex;
flex-direction:column;
gap:20px;
}

.details-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.detail-box{
padding:18px 22px;

border-radius:18px;

background:
linear-gradient(
135deg,
rgba(15,118,110,0.10),
rgba(190,24,93,0.08)
);

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
gap:12px;

text-align:center;
}

.detail-label{
font-size:14px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
color:#666;
}

.detail-value{
font-size:17px;
font-weight:700;
color:#111;
}

/* =========================
CONTACT PILLS
========================= */

.details-buttons{
display:flex;
gap:20px;
margin-top:20px;
flex-wrap:wrap;
}

.contact-pill{
display:flex;
align-items:center;
justify-content:center;

padding:18px 24px;

border-radius:60px;

font-weight:700;
font-size:16px;

text-decoration:none;

transition:0.3s;
}

.phone-pill{
background:#111827;
color:#fff;
}

.phone-pill:hover{
background:#000;
transform:translateY(-3px);
}

.whatsapp-pill{
background:#16a34a;
color:#fff;
}

.whatsapp-pill:hover{
background:#15803d;
transform:translateY(-3px);
}

/* =========================
HOST SECTION
========================= */

.host-section{
padding:100px 10%;
}

.host-card{
background:rgba(255,255,255,0.68);

backdrop-filter:blur(10px);

padding:42px;

border-radius:40px;

box-shadow:
0 20px 60px rgba(0,0,0,0.08);
}

.host-heading{
margin-bottom:28px;
text-align:left;
}

.host-heading h2{
font-size:52px;
line-height:1;
color:#111;
}

.host-layout{
display:grid;
grid-template-columns:220px 1fr;
gap:38px;
align-items:center;
}

.host-image-wrapper{
display:flex;
justify-content:center;
align-items:center;
}

.host-image{
width:220px;
height:310px;

object-fit:cover;

border-radius:50% / 35%;

border:6px solid rgba(255,255,255,0.75);

box-shadow:
0 18px 45px rgba(0,0,0,0.12);

transition:0.4s ease;
}

.host-image:hover{
transform:scale(1.03);
}

.host-content{
display:flex;
flex-direction:column;
justify-content:center;
}

.host-content h3{
font-size:42px;
margin-bottom:14px;
line-height:1.1;
color:#111;
}

.host-content p{
font-size:17px;
line-height:1.75;
color:#555;
}

.host-contact-buttons{
display:flex;
gap:16px;
margin-top:22px;
flex-wrap:wrap;
}

.host-contact-btn{
display:flex;
align-items:center;
justify-content:center;

padding:16px 24px;

border-radius:60px;

font-size:15px;
font-weight:700;

text-decoration:none;

transition:0.3s;
}

.host-call-btn{
background:#111827;
color:#fff;
}

.host-call-btn:hover{
background:#000;
transform:translateY(-3px);
}

.host-whatsapp-btn{
background:#16a34a;
color:#fff;
}

.host-whatsapp-btn:hover{
background:#15803d;
transform:translateY(-3px);
}

/* =========================
CONTACT
========================= */

.contact-section{
text-align:center;

background:
linear-gradient(
180deg,
rgba(255,255,255,0.65),
rgba(255,255,255,0.45)
);

backdrop-filter:blur(3px);
}

.host-name{
font-size:20px;
margin-bottom:40px;
color:#666;
}

/* =========================
FOOTER
========================= */

footer{
padding:40px;
text-align:center;

background:rgba(255,255,255,0.55);

backdrop-filter:blur(3px);

color:#666;

border-top:
1px solid rgba(255,255,255,0.35);
}

/* =========================
ANIMATION
========================= */

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* =========================
MOBILE VERSION
========================= */

@media(max-width:900px){

section{
padding:90px 7%;
}

/* HERO */

.hero h1{
font-size:58px;
line-height:1.05;
}

.tagline{
font-size:18px;
}

.navbar{
padding:20px;
}

.logo{
font-size:26px;
}

/* INTRO */

.intro{
grid-template-columns:1fr;
}

/* GALLERY */

.gallery-grid{
grid-template-columns:1fr;
}

/* LOCATION */

.location-grid{
grid-template-columns:1fr;
}

/* STAY DETAILS */

.details-grid{
grid-template-columns:1fr;
}

.details-buttons{
flex-direction:column;
}

/* TYPOGRAPHY */

.intro-text h2,
.gallery h2,
.amenities h2,
.contact-section h2,
.premium-card h2{
font-size:42px;
}

/* MAP */

.map-card iframe{
height:320px;
}

/* HOST */

.host-section{
padding:80px 7%;
}

.host-card{
padding:32px;
}

.host-layout{
grid-template-columns:1fr;
gap:32px;
text-align:center;
}

.host-heading{
text-align:center;
}

.host-heading h2{
font-size:42px;
}

.host-content h3{
font-size:34px;
}

.host-image{
width:210px;
height:290px;
}

.host-contact-buttons{
justify-content:center;
}

}

/* =========================
HOMESTAYS IN ASSAM BANNER
========================= */

.homestaysinassam-banner{
padding:0 10%;
margin-top:-40px;
margin-bottom:40px;
}

.his-link{
display:flex;
align-items:center;
justify-content:center;
gap:16px;

padding:18px 28px;

border-radius:24px;

background:
rgba(255,255,255,0.68);

backdrop-filter:blur(10px);

box-shadow:
0 12px 35px rgba(0,0,0,0.08);

text-decoration:none;

transition:0.3s;
}

.his-link:hover{
transform:translateY(-4px);
box-shadow:
0 18px 45px rgba(0,0,0,0.12);
}

.his-logo{
height:42px;
width:auto;
object-fit:contain;
}

.his-link span{
font-size:16px;
font-weight:700;
color:#111;
letter-spacing:0.3px;
}

/* =========================
MOBILE
========================= */

@media(max-width:900px){

.homestaysinassam-banner{
padding:0 7%;
margin-top:-20px;
margin-bottom:30px;
}

.his-link{
flex-direction:column;
text-align:center;
padding:22px;
gap:12px;
}

.his-logo{
height:36px;
}

.his-link span{
font-size:15px;
}

}

/* =========================
BACK BUTTON
========================= */

.back-button-wrapper{
padding:40px 10% 40px;
}

.back-button{
display:inline-flex;
align-items:center;
justify-content:center;

padding:16px 28px;

border-radius:60px;

background:#16a34a;

color:#fff;

font-size:15px;
font-weight:700;

text-decoration:none;

box-shadow:
0 12px 35px rgba(22,163,74,0.25);

transition:0.3s;
}

.back-button:hover{
transform:translateY(-4px);

background:#15803d;

box-shadow:
0 18px 45px rgba(22,163,74,0.35);
}

/* =========================
MOBILE
========================= */

@media(max-width:900px){

.back-button-wrapper{
padding:25px 7% 30px;
}

.back-button{
width:100%;
}

}


/* =========================================
WARBLER ABOUT CARD
========================================= */

.intro-card-section{

padding:0 10% 50px;

}

.intro-card{

background:rgba(255,255,255,0.72);

backdrop-filter:blur(10px);

padding:55px;

border-radius:38px;

box-shadow:
0 20px 60px rgba(0,0,0,0.08);

}

.intro-card h2{

font-size:60px;

margin-bottom:28px;

color:#111;

}

.intro-card p{

font-size:18px;

line-height:2;

color:#555;

}

/* =========================================
WARBLER GALLERY CARD
========================================= */

.luxury-gallery-card{

padding:0 10% 90px;

}

.gallery-card-inner{

background:rgba(255,255,255,0.72);

backdrop-filter:blur(10px);

padding:50px;

border-radius:38px;

box-shadow:
0 20px 60px rgba(0,0,0,0.08);

}

.gallery-card-inner h2{

font-size:60px;

margin-bottom:40px;

color:#111;

text-align:left;

}

.luxury-gallery-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:22px;

}

.gallery-thumb-link{

display:block;

text-decoration:none;

}

.gallery-thumb{

width:100%;

height:240px;

object-fit:cover;

border-radius:24px;

box-shadow:
0 16px 40px rgba(0,0,0,0.10);

transition:
transform 0.45s ease,
box-shadow 0.45s ease;

}

.gallery-thumb:hover{

transform:
translateY(-6px)
scale(1.02);

box-shadow:
0 24px 55px rgba(0,0,0,0.14);

}

/* =========================================
MOBILE
========================================= */

@media(max-width:900px){

.intro-card-section{

padding:0 7% 40px;

}

.luxury-gallery-card{

padding:0 7% 70px;

}

.intro-card{

padding:34px;

}

.gallery-card-inner{

padding:32px;

}

.intro-card h2,
.gallery-card-inner h2{

font-size:42px;

}

.gallery-thumb{

height:200px;

}

}



/* =========================================
LIGHTBOX
========================================= */

.lightbox{

display:none;

position:fixed;

inset:0;

background:
rgba(0,0,0,0.92);

z-index:99999;

justify-content:center;
align-items:center;

padding:40px;

}

.lightbox-image{

max-width:90%;
max-height:88vh;

border-radius:24px;

box-shadow:
0 25px 70px rgba(0,0,0,0.45);

animation:fadeZoom 0.3s ease;

}

.lightbox-close,
.lightbox-prev,
.lightbox-next{

position:absolute;

background:
rgba(255,255,255,0.12);

backdrop-filter:blur(8px);

border:none;

color:#fff;

cursor:pointer;

display:flex;
align-items:center;
justify-content:center;

transition:0.3s;

z-index:10;

}

.lightbox-close{

top:25px;
right:25px;

width:56px;
height:56px;

border-radius:50%;

font-size:34px;

}

.lightbox-prev,
.lightbox-next{

top:50%;

transform:translateY(-50%);

width:64px;
height:64px;

border-radius:50%;

font-size:36px;

}

.lightbox-prev{

left:25px;

}

.lightbox-next{

right:25px;

}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{

background:
rgba(255,255,255,0.22);

}

.lightbox-prev:hover,
.lightbox-next:hover{

transform:
translateY(-50%)
scale(1.05);

}

.lightbox-close:hover{

transform:scale(1.05);

}

@keyframes fadeZoom{

from{

opacity:0;
transform:scale(0.92);

}

to{

opacity:1;
transform:scale(1);

}

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

.lightbox{

padding:18px;

}

.lightbox-image{

max-width:100%;
max-height:74vh;

}

.lightbox-prev,
.lightbox-next{

width:50px;
height:50px;

font-size:26px;

}

.lightbox-prev{

left:10px;

}

.lightbox-next{

right:10px;

}

.lightbox-close{

top:15px;
right:15px;

width:46px;
height:46px;

font-size:28px;

}

}

/* =========================================
PARKING DETAILS
========================================= */

.parking-details-wrapper{

margin-top:18px;

padding-top:18px;

border-top:
1px solid rgba(0,0,0,0.08);

}

.parking-subtitle{

font-size:20px;

margin-bottom:12px;

color:#111;

font-family:'Cormorant Garamond', serif;

}

.parking-description{

font-size:17px;

line-height:1.9;

color:#555;

}