* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
#navbar.scrolled {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo span {
    color: #ff7a00;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content {
    color: white;
}
.hero h1 {
    font-size: 3rem;
}
.hero p {
    margin: 15px 0;
}
.btn {
    display: inline-block;
    background: #ff7a00;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
}

/* FEATURES */
.features {
    padding: 50px 0;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.feature-box {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
}

/* ABOUT */
.about {
    padding: 70px 0;
}
.about-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}
.about img {
    width: 45%;
    border-radius: 20px;
}
.btn-outline {
    margin-top: 20px;
    display: inline-block;
    border: 2px solid #ff7a00;
    padding: 10px 25px;
    border-radius: 30px;
    color: #ff7a00;
    text-decoration: none;
}

/* DESTINATIONS */
.destinations {
    background: #f9f9f9;
    padding: 70px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.destination-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.destination-card h3 {
    padding: 15px;
    text-align: center;
}

/* CTA */
.cta {
    background: #ff7a00;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .about-flex {
        flex-direction: column;
    }
    .about img {
        width: 100%;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}
