:root{

--red:#d40f1f;
--blue:#021638;
--yellow:#f3c400;
--white:#ffffff;
--dark:#05070d;

}

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

body{

background:
radial-gradient(circle at top right,#0b1f4d 0%,#05070d 60%);

font-family:'Rajdhani',sans-serif;
color:white;
min-height:100vh;

}

header{

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

padding:20px 60px;

background:rgba(0,0,0,.4);
backdrop-filter:blur(8px);

}

.logo img{

height:50px;

}

nav{

display:flex;
gap:50px;

}

nav a{

color:white;
text-decoration:none;
font-weight:700;
font-size:1.2rem;
letter-spacing:2px;
transition:.3s;

}

nav a:hover{

color:var(--yellow);

}

.active{

color:var(--red);

}

.header-line{

height:4px;

background:
linear-gradient(
90deg,
var(--red),
var(--red) 70%,
var(--yellow) 100%
);

}

.hero{

max-width:1400px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;
gap:80px;

padding:80px 50px;

align-items:center;

}

.poster img{

width:100%;

border:4px solid white;

box-shadow:
0 0 40px rgba(212,15,31,.3);

}

.hero-content h1{

font-size:5rem;
font-family:'Oswald',sans-serif;

line-height:1;

margin:20px 0;

}

.hero-content h2{

color:var(--yellow);

font-size:2rem;

margin-bottom:30px;

}

.hero-content p{

font-size:1.3rem;

line-height:1.8;

max-width:600px;

}

.tag{

display:inline-block;

padding:8px 16px;

background:var(--red);

font-weight:700;

letter-spacing:2px;

}

.btn{

display:inline-block;

margin-top:40px;

padding:15px 35px;

border:2px solid var(--yellow);

color:white;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.btn:hover{

background:var(--yellow);
color:black;

}

.welcome{

max-width:1200px;
margin:auto;

padding:80px 50px;

text-align:center;

}

.welcome h2{

font-size:3rem;

margin-bottom:20px;

font-family:'Oswald',sans-serif;

}

.welcome p{

max-width:800px;
margin:auto;

font-size:1.2rem;

line-height:1.8;

}

.page-title{

padding:80px 50px 30px;

text-align:center;

}

.page-title h1{

font-size:4rem;

font-family:'Oswald',sans-serif;

}

.trip-section{

max-width:1400px;
margin:auto;

padding:50px;

}

.trip-section h2{

margin-bottom:30px;
font-size:2rem;

color:var(--yellow);

}

.trip-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:30px;

margin-bottom:80px;

}

.trip-card{

background:#081222;

overflow:hidden;

border-top:4px solid var(--red);

transition:.3s;

}

.trip-card:hover{

transform:translateY(-8px);

}

.trip-card img{

width:100%;
height:260px;
object-fit:cover;

}

.trip-info{

padding:25px;

}

.contact{

max-width:1200px;
margin:auto;

padding:100px 50px;

}

.contact h1{

font-size:4rem;
margin-bottom:50px;

text-align:center;

}

.contact-grid{

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

gap:40px;

}

.contact-card{

background:#081222;

padding:50px;

border-top:5px solid var(--red);

}

.contact-card h2{

color:var(--yellow);

margin-bottom:20px;

}

.contact-card a{

color:white;
text-decoration:none;

}

footer{

text-align:center;

padding:40px;

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

margin-top:100px;

}

@media(max-width:900px){

.hero{

grid-template-columns:1fr;

}

header{

flex-direction:column;

}

nav{

margin-top:20px;

gap:25px;

}

.hero-content h1{

font-size:3rem;

}
