/* =========================
   GLOBAL
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

body{
background:#ffffff;
color:#2d3436;
line-height:1.6;
margin:0;
padding:0;
padding-top: 70px;
}

/*--------ALL PAGES---------*/
.page-banner{
background:linear-gradient(135deg,#2c7fb8,#1f5f8b);

/* FIX: flexible height */
min-height:220px;
padding:40px 20px;

display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.page-banner h2{
color:white;
font-size:40px;
font-weight:700;
position:relative;
line-height:1.3; /* FIX: better spacing */
}

/* underline */
.page-banner h2::after{
content:"";
display:block;
width:120px;
height:4px;
background:#f39c12;
margin:12px auto 0;
border-radius:2px;
}

/* =========================
   SECTION
========================= */

.section{
padding:10px 2px;
text-align:center;
}

.section h2{
font-size:36px;
font-weight:600;
margin-bottom:45px;
color:#0a3d62;
}

/* =========================
   BACKGROUND COLORS
========================= */

.section-light{
background:#f4f7fb;
}

.section-blue{
background:#eaf2fb;
}

.section-white{
background:#ffffff;
}

/* =========================
   HERO SECTION
========================= */

.hero{
height:70vh;
min-height:600px;

display:flex;
align-items:center;
justify-content:center;

text-align:center;

position:relative;
color:white;

background-image:url('../images/hero1.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}
/* dark overlay */

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:linear-gradient(
rgba(0,0,0,0.55),
rgba(0,0,0,0.55)
);

z-index:1;
}

/* hero text container */

.hero-content{
position:relative;
z-index:2;

max-width:900px;
margin:auto;
padding:20px;
}

/* title */

.hero h1{
font-size:64px;
font-weight:700;
margin-bottom:20px;
line-height:1.2;
}

/* subtitle */

.hero p{
font-size:22px;
margin-bottom:35px;
letter-spacing:1px;
}

/* button */

.btn-main{
display:inline-block;
background:#ff6b3d;
color:white;
padding:14px 36px;
border-radius:8px;
text-decoration:none;
font-weight:500;
transition:0.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.btn-main:hover{
background:#e65a2f;
transform:translateY(-3px);
}



/* =========================
   ABOUT SECTION
========================= */

.about-container{
max-width:1200px;
margin:auto;

display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.about-image{
flex:1;
}

.about-image img{
width:100%;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.about-text{
flex:1;
text-align:left;
}

.about-text h2{
font-size:36px;
margin-bottom:20px;
}

.about-text p{
font-size:17px;
color:#555;
margin-bottom:25px;
line-height:1.8;
}

.about-btn{
display:inline-block;
padding:12px 28px;
background:#ff6b3d;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:500;
transition:0.3s;
}

.about-btn:hover{
background:#e65a2f;
}

/* =========================
   LUXURY CARD GRID
========================= */

.card-grid{
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
background:white;
border-radius:14px;
overflow:hidden;
text-decoration:none;
color:#333;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

transition:all 0.35s ease;
border:1px solid rgba(0,0,0,0.05);
}

.card img{
width:100%;
height:230px;
object-fit:cover;
}

.card h3{
padding:20px;
font-size:20px;
font-weight:500;
}

.card:hover{
transform:translateY(-10px) scale(1.02);
box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

/* =========================
   FEATURED PLACES
========================= */

.featured-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;

max-width:1200px;
margin:auto;
}

.featured-card{
position:relative;
overflow:hidden;
border-radius:14px;
cursor:pointer;
}

.featured-card img{
width:100%;
height:270px;
object-fit:cover;
transition:0.5s;
}

.featured-card:hover img{
transform:scale(1.15);
}

.featured-overlay{
position:absolute;
bottom:0;
left:0;
right:0;

padding:22px;

background:linear-gradient(
transparent,
rgba(0,0,0,0.85)
);

color:white;
}

.featured-overlay h3{
font-size:22px;
}

/* =========================
   ADS SECTION
========================= */

.ads-container{
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.ad-box{
display:block;
background:#fff;

padding:15px;
border-radius:10px;

box-shadow:0 6px 20px rgba(0,0,0,0.12);

transition:0.3s;
}

.ad-box img{
width:100%;
height:120px;
object-fit:contain;
}

.ad-box:hover{
transform:translateY(-6px);
box-shadow:0 15px 30px rgba(0,0,0,0.18);
}

/* =========================
   MAP
========================= */

.map-frame{
width:100%;
max-width:900px;

height:380px;

border:0;
border-radius:10px;

box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* =========================
   FADE ANIMATION
========================= */

.fade-in{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.fade-in.show{
opacity:1;
transform:translateY(0);
}

/* =========================
   BACK AND TOP BUTTON
========================= */

/* BACK BUTTON */

.back-btn{
position:fixed;
bottom:90px;
left:25px;
background:#ff6b3d;
color:white;
padding:10px 18px;
border-radius:30px;
text-decoration:none;
font-size:14px;
font-weight:500;
box-shadow:0 5px 15px rgba(0,0,0,0.25);
transition:0.3s;
z-index:999;
}

.back-btn:hover{
background:#0a3d62;
color:white;
}


/* BACK TO TOP BUTTON */

#topBtn{
display:none;
position:fixed;
bottom:25px;
right:25px;
z-index:999;
border:none;
background:#ff6b3d;
color:white;
cursor:pointer;
padding:12px 15px;
border-radius:50%;
font-size:18px;
box-shadow:0 5px 15px rgba(0,0,0,0.25);
transition:0.3s;
}

#topBtn:hover{
background:#0a3d62;
}

#attractions{
    scroll-margin-top:80px;
}
/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

/* HERO FIX */
.hero{
    height:50vh;
    min-height:auto;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* HERO TEXT */
.hero h1{
    font-size:28px;
    line-height:1.3;
}

.hero p{
    font-size:14px;
    margin-bottom:20px;
}

/* BUTTON */
.btn-main{
    padding:10px 22px;
    font-size:14px;
}

/* ABOUT SECTION STACK */
.about-container{
    flex-direction:column;
    text-align:center;
}

.about-text{
    text-align:center;
}

/* SECTION SPACING FIX */
.section{
    padding:80px 20px;
}

/* NAVBAR LINKS (BETTER MOBILE SPACING) */
.navbar-nav > li > a{
    padding:12px 10px;
    font-size:14px;
}
}

@media(max-width:768px){

.page-banner{
    min-height:180px;
    padding:30px 15px;
}

.page-banner h2{
    font-size:26px;   /* smaller text */
    line-height:1.4;
}

/* underline smaller & centered */
.page-banner h2::after{
    width:80px;
    height:3px;
    margin-top:10px;
}

}