* {

margin:0;
padding:0;
box-sizing:border-box;

font-family:'Poppins',sans-serif;

}

.container {

width:90%;
margin:auto;

}



/* HEADER */

.header {

background:white;

box-shadow:0 2px 10px rgba(0,0,0,0.1);

position:fixed;

width:100%;

z-index:1000;

}

.header-flex {

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 0;

}

.nav a {

margin-left:25px;

text-decoration:none;

color:#333;

font-weight:500;

}

.nav .active {

color:#2b7cff;

border-bottom:2px solid #2b7cff;

}



/* HERO */

.dest-hero {

height:300px;

background:
linear-gradient(
90deg,
rgba(43,124,255,0.75),
rgba(99,193,50,0.75)
),
url('dharamshala.webp');

background-size:cover;

background-position:center;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:white;

margin-top:80px;

}

.dest-hero h1 {

font-size:46px;

font-weight:700;

}

.hero-text {

margin-top:10px;

max-width:600px;

margin-left:auto;

margin-right:auto;

}



/* MAIN */

.main {

padding:60px 0;

}

.main-grid {

display:grid;

grid-template-columns:10fr 1fr;

gap:40px;

}



/* DEST BLOCK */

.dest-block {

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;

margin-bottom:60px;

align-items:center;

}

.dest-block.reverse {

direction:rtl;

}

.dest-block.reverse .dest-text {

direction:ltr;

}



.dest-img img {

width:100%;

height:260px;

object-fit:cover;

border-radius:6px;

}



.dest-text h2 {

font-size:28px;

margin:10px 0;

}



.region {

color:#2b7cff;

font-size:13px;

text-transform:uppercase;

}



.dest-text p {

color:#666;

margin-top:10px;

line-height:1.6;

}



.social span {

display:inline-block;

margin-right:10px;

color:#bbb;

font-size:14px;

}

/* SIDEBAR */

.sidebar-box {

background:white;

padding:20px;

margin-bottom:30px;

box-shadow:0 5px 15px rgba(0,0,0,0.08);

border-radius:6px;

}

.sidebar-box h3 {

margin-bottom:15px;

}

.sidebar-box ul {

list-style:none;

}

.sidebar-box li {

margin-bottom:10px;

color:#555;

cursor:pointer;

}



.sidebar-box input {

width:100%;

padding:10px;

border:1px solid #ddd;

}



.search-btn {

margin-top:10px;

background:#2b7cff;

color:white;

border:none;

padding:10px;

cursor:pointer;

}



/* OLDER POSTS */

.older-posts {

text-align:right;

margin-top:20px;

}

.older-posts a {

text-decoration:none;

color:#2b7cff;

font-size:14px;

}



/* FOOTER */

.footer {

background:#f7f7f7;

padding:60px 0;

margin-top:60px;

}

.footer-grid {

display:grid;

grid-template-columns:repeat(6,1fr);

gap:30px;

width:90%;

margin:auto;

font-size:14px;

}

.footer h4 {

margin-bottom:15px;

}

.footer ul {

list-style:none;

}

.footer li {

margin-bottom:8px;

color:#777;

}



.footer input {

width:100%;

padding:10px;

margin-top:10px;

margin-bottom:10px;

border:1px solid #ddd;

}



.subscribe-btn {

background:#2b7cff;

color:white;

border:none;

padding:10px 20px;

cursor:pointer;

}



.bottom-footer {

margin-top:40px;

text-align:center;

font-size:13px;

color:#777;

border-top:1px solid #ddd;

padding-top:20px;

}



/* HOVER ANIMATIONS */

.dest-block {

transition:0.3s;

}

.dest-block:hover {

transform:translateY(-6px);

}



.dest-img img {

transition:0.5s;

}

.dest-block:hover img {

transform:scale(1.05);

}
.container {

max-width: 1250px;   /* earlier width:90% */

margin: auto;

padding-left: 40px;   /* new spacing */
padding-right: 40px;

}


/* Small Buttons Container */

.dest-buttons {
display: flex;
gap: 8px;
margin-top: 12px;
}

/* Small Button Style */

.small-btn {
padding: 6px 12px;
font-size: 13px;
border-radius: 4px;
text-decoration: none;
color: white;
font-weight: 500;
transition: 0.3s;
}

/* Call Button */

.call-small {
background-color: #dfc326;
}

.call-small:hover {
background-color: #9b7200;
}

/* WhatsApp Button */

.whatsapp-small {
background-color: #25D366;
}

.whatsapp-small:hover {
background-color: #06963f;
}


