/* ================= GLOBAL ================= */

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

body{
font-family:"Playfair Display", serif;
background:#ffffff;
color:#111;
line-height:1.5;
}


/* ================= NAVBAR ================= */

.navbar{
position:absolute;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 60px;
color:white;
z-index:10;
backdrop-filter:blur(3px);
}

.logo{
font-size:24px;
letter-spacing:2px;
font-weight:500;
}

.logo img{
height:80px;
width:auto;
display:block;
object-fit:contain;
filter:drop-shadow(0 0 6px rgba(255,215,0,.4));
}

.nav-links{
list-style:none;
display:flex;
gap:45px;
}

.nav-links a{
text-decoration:none;
color:#ffffff;
font-size:16px;
letter-spacing:1px;
font-weight:900;
transition:.3s;
}

.nav-links a:hover{
color:#d4af37;
}

.menu-toggle{
display:none;
font-size:30px;
cursor:pointer;
color:white;
}


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

.hero{
position:relative;
height:100vh;
overflow:hidden;
}

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

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
z-index:-1;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
z-index:5;
max-width:700px;
animation:fadeUp 1.2s ease;
}

.hero-content h1{
font-size:48px;
margin-bottom:20px;
}

.hero-content p{
font-size:20px;
margin-bottom:40px;
}

@keyframes fadeUp{
0%{opacity:0; transform:translate(-50%, -40%);}
100%{opacity:1; transform:translate(-50%, -50%);}
}


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

.cta-button{
padding:16px 40px;
background:#d4af37;
color:#111;
text-decoration:none;
font-weight:600;
letter-spacing:1px;
border-radius:40px;
transition:.3s;
}

.cta-button:hover{
background:#c39b2c;
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(0,0,0,.3);
}


/* ================= PARALLAX ================= */

.parallax{
height:600px;
position:relative;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.parallax::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background-image:
linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
url("./images/resort.jpeg");

background-size:cover;
background-position:center;
background-attachment:fixed;

z-index:-1;
}
.parallax h2{
font-size:42px;
color:white;
letter-spacing:2px;

text-shadow:
0px 4px 15px rgba(0,0,0,0.6),
0px 10px 40px rgba(0,0,0,0.5);

position:relative;
z-index:2;
}

@media (max-width:768px){

.parallax::before{
background-attachment:scroll;
}

}


/* ================= SECTION DIVIDER ================= */

.divider{
width:80px;
height:2px;
background:#d4af37;
margin:80px auto;
}


/* ================= DESTINATIONS ================= */

.destinations{
padding:120px 80px;
text-align:center;
background:white;
}

.section-title{
font-size:42px;
margin-bottom:60px;
}

.destination-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}


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

.card{
height:360px;
background-size:cover;
background-position:center;
position:relative;
display:flex;
align-items:flex-end;
padding:30px;
color:white;
cursor:pointer;
overflow:hidden;
transition:.4s;
}

.card:hover{
transform:scale(1.05);
box-shadow:0 20px 50px #d4af37;
}

.card::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(transparent,rgba(0,0,0,.6));
}

.card-content{
position:relative;
z-index:2;
}

.card-button{
display:inline-block;
margin-top:15px;
padding:10px 22px;
background:#d4af37;
color:black;
font-size:14px;
text-decoration:none;
border-radius:20px;
opacity:0;
transform:translateY(10px);
transition:.35s;
}

.card:hover .card-button{
opacity:1;
transform:translateY(0);
}


/* ================= DESTINATION IMAGES ================= */

.maldives{background-image:url("./images/maldives.jpeg");}
.bora{background-image:url("./images/bora.jpeg");}
.dubai{background-image:url("./images/dubai.jpeg");}
.santorini{background-image:url("./images/santorini.jpeg");}
.amalfi{background-image:url("./images/amalfi.jpeg");}
.bali{background-image:url("./images/bali.jpeg");}
.seychelles{background-image:url("./images/seychelles.jpeg");}
.swiss{background-image:url("./images/alps.jpeg");}


/* ================= EXPERIENCES ================= */

.experiences{
padding:120px 80px;
background:#0b1a2f;
color:white;
text-align:center;
}

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

.experience-card{
padding:40px;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.1);
transition:.4s;
}

.experience-card:hover{
transform:translateY(-10px);
border-color:#d4af37;
}


/* ================= WHY ================= */

.why{
padding:120px 80px;
background:white;
text-align:center;
}

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

.why-card{
padding:40px;
border:1px solid #111;
transition:.3s;
}

.why-card:hover{
border-color:#d4af37;
transform:translateY(-8px);
}


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

.footer{
background:#0b1a2f;
color:white;
padding:80px 80px 30px;
}

.footer-container{
display:grid;
grid-template-columns:2fr 2fr 2fr 2fr;
gap:40px;
max-width:1200px;
margin:0 auto;
}

.footer h4{
margin-bottom:15px;
position:relative;

}

.footer h4::after{
content:"";
display:block;
width:40px;
height:2px;
background:#d4af37;
margin-top:8px;
}

.footer a{
text-decoration:none;
color:white;
opacity:.85;
transition:.3s;
}

.footer a:hover{
color:#d4af37;
opacity:1;
}

.footer-bottom{
margin-top:60px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.1);
text-align:center;
opacity:.7;
font-size:14px;
}

.footer-logo{
height:200px;
filter:drop-shadow(0 0 6px rgba(255,215,0,.4));
}

.footer ul{
list-style:none;
padding:0;
margin:0;
}

/* ================= NEWSLETTER ================= */

.newsletter-form{
display:flex;
justify-content:end;
gap:10px;
margin-top:10px;
}

.newsletter-form input{
padding:12px 14px;
border-radius:6px;
border:none;
width:350px;
}

.newsletter-form button{
padding:12px 18px;
background:#d4af37;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:600;
}

/* ================= CTA SECTION FIX ================= */

.cta-section{
padding:140px 20px;
background:#0b1a2f;
color:white;

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

text-align:center;
}

.cta-section h2{
font-size:40px;
margin-bottom:30px;
text-align:center;
}

.cta-section .cta-button{
display:inline-block;
}

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

@media (max-width:768px){

.logo img{
height:70px;
}

.menu-toggle{
display:block;
}

.nav-links{
display:none;
position:absolute;
top:80px;
right:20px;
flex-direction:column;
background:#0b1a2f;
padding:20px;
border-radius:8px;
width:200px;
z-index:1000;
}

.nav-links.active{
display:flex;
}

.destination-grid,
.experience-grid,
.why-grid{
grid-template-columns:1fr;
}

.trip-builder{
padding:80px 20px;
}

.trip-form{
grid-template-columns:1fr;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer h4::after{
margin-left:auto;
margin-right:auto;
}

.newsletter-form{
justify-content:center;
flex-direction:column;
align-items:center;
}

.newsletter-form input{
width:100%;
max-width:300px;
}

.newsletter-form button{
width:160px;
}

}

/* ================= ABOUT PAGE ================= */

.about-hero{
height:50vh;
background:#0b1a2f;
color:white;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.about-hero h1{
font-size:56px;
margin-bottom:10px;
}

.about-section{
padding:120px 80px;
background:white;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-text h2{
font-size:40px;
margin-bottom:20px;
text-align:center;
}

.about-text p{
margin-bottom:20px;
font-size:17px;
line-height:1.7;
}

.about-image img{
width:100%;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,.25);
}


/* ================= DESTINATIONS PAGE ================= */

.destinations-hero{
height:50vh;
background:#0b1a2f;
color:white;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.destinations-hero h1{
font-size:56px;
margin-bottom:10px;
}

.destinations-page{
padding:120px 80px;
background:white;
text-align:center;
}


/* ================= DESTINATION PAGES ================= */

.destination-hero{
height:60vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.destination-hero h1{
font-size:60px;
}

.destination-info{
padding:120px 80px;
max-width:900px;
margin:auto;
text-align:center;
}

.destination-info h2{
font-size:40px;
margin-bottom:30px;
}

.destination-info p{
font-size:17px;
line-height:1.7;
margin-bottom:20px;
}


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

.maldives-hero{
background-image:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url("./images/maldives.jpeg");
background-size:cover;
background-position:center;
}

.amalfi-hero{
background-image:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url("./images/amalfi.jpeg");
background-size:cover;
background-position:center;
}

.dubai-hero{
background-image:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url("./images/dubai.jpeg");
background-size:cover;
background-position:center;
}

.santorini-hero{
background-image:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url("./images/santorini.jpeg");
background-size:cover;
background-position:center;
}

.bali-hero{
background-image:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url("./images/bali.jpeg");
background-size:cover;
background-position:center;
}

.bora-hero{
background-image:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url("./images/bora.jpeg");
background-size:cover;
background-position:center;
}

.seychelles-hero{
background-image:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url("./images/seychelles.jpeg");
background-size:cover;
background-position:center;
}

.swiss-hero{
background-image:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url("./images/alps.jpeg");
background-size:cover;
background-position:center;
}


/* ================= DATE RANGE ================= */

.date-range{
display:flex;
align-items:center;
gap:10px;
border:1px solid #ddd;
border-radius:6px;
padding:8px 12px;
}

.date-range input{
border:none;
outline:none;
font-size:15px;
}

.date-separator{
font-size:18px;
color:#888;
}


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

@media(max-width:900px){

.about-container{
grid-template-columns:1fr;
}

}
/* ================= CONTACT / TRIP BUILDER FIX ================= */

.contact-hero{
height:60vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:#0b1a2f;
color:white;
padding:20px;
}

.contact-hero h1{
font-size:52px;
margin-bottom:10px;
}

.trip-builder{
padding:120px 80px;
background:white;
text-align:center;
}

.trip-form{
max-width:900px;
margin:0 auto;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.trip-form input,
.trip-form select,
.trip-form textarea{
padding:14px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
width:100%;
}

.trip-form textarea{
grid-column:span 2;
height:140px;
}

.trip-form button{
grid-column:span 2;
padding:16px;
background:#d4af37;
border:none;
border-radius:6px;
font-weight:600;
cursor:pointer;
}


/* DATE RANGE */

.date-range{
display:flex;
align-items:center;
gap:10px;
border:1px solid #ddd;
border-radius:6px;
padding:10px 12px;
width:100%;
}

.date-range input{
border:none;
outline:none;
flex:1;
font-size:15px;
}

.date-separator{
font-size:18px;
color:#888;
}


/* MOBILE FORM */

@media(max-width:768px){

.trip-builder{
padding:80px 20px;
}

.trip-form{
grid-template-columns:1fr;
}

.trip-form textarea{
grid-column:span 1;
}

.trip-form button{
grid-column:span 1;
}

}
/* ================= STORY SECTION ================= */

.story-section{
padding:160px 20px;
max-width:900px;
margin:auto;
text-align:center;
}

.story-section h2{
font-size:48px;
margin-bottom:30px;
}

.story-section p{
font-size:18px;
line-height:1.8;
opacity:.85;
}


/* ================= LUXURY EXPERIENCES ================= */

.luxury-experiences{
padding:140px 80px;
background:#0b1a2f;
color:white;
text-align:center;
}

.luxury-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
margin-top:60px;
}

.luxury-card{
padding:40px;
border:1px solid rgba(255,255,255,0.15);
transition:.4s;
}

.luxury-card:hover{
transform:translateY(-8px);
border-color:#d4af37;
}

.luxury-card h3{
font-size:22px;
margin-bottom:10px;
}

.luxury-card p{
font-size:15px;
opacity:.8;
}


/* ================= TRAVEL JOURNAL ================= */

.journal{
padding:140px 80px;
text-align:center;
}

.journal-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.journal-card{
text-align:left;
cursor:pointer;
}

.journal-card img{
width:100%;
border-radius:8px;
transition:.4s;
}

.journal-card img:hover{
transform:scale(1.05);
}

.journal-card h3{
margin-top:15px;
font-size:20px;
}


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

@media(max-width:900px){

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

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

}

@media(max-width:600px){

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

}