/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #2d3436;
    background-color: #f9f9f9;
}

/* Header with a Hero-feel */
header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1549944850-84e00be4203b?auto=format&fit=crop&w=1200&q=80'); /* Placeholder image of a city/park */
    background-size: cover;
    background-position: center;
    color: white;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sticky Navigation */
nav {
    background: #2d3436;
    display: flex;
    justify-content: center;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #dfe6e9;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fab1a0;
}

/* Main Content */
.container {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 20px;
}

h2 {
    color: #c0392b;
    border-bottom: 2px solid #fab1a0;
    display: inline-block;
    padding-bottom: 5px;
}

/* Grid System for Attractions */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 2rem 0;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 5px solid #c0392b;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-top: 0;
    color: #2d3436;
}

/* Nature Section */
.nature-box {
    background: #e1f5fe;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

/* Footer */
footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}