/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://himachaltourism.gov.in/wp-content/uploads/2018/06/Prashar-Mandi.jpg') no-repeat center/cover;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}
.btn:hover {
    background: #e68a00;
}

/* Section Styles */
section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.about, .culture, .tips {
    text-align: center;
}

.destinations .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card h3 {
    margin: 15px;
}
.card p {
    margin: 0 15px 15px;
}

/* Travel Tips */
.tips ul {
    list-style: none;
    max-width: 500px;
    margin: auto;
}
.tips li {
    background: #f4f4f4;
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsive Text Sizes */
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}
