/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: #1a472a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #fff;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b35;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e5542d;
}

.btn-white {
    background-color: #fff;
    color: #1a472a;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

/* Introduction Section */
.introduction {
    padding: 4rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.introduction h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.introduction p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Highlights Section */
.highlights {
    padding: 4rem 0;
}

.highlights h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a472a;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: #1a472a;
    margin-bottom: 1rem;
}

/* Featured Destinations */
.featured {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.featured h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a472a;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.dest-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.dest-image.beach {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
                linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dest-image.heritage {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
                linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dest-image.nature {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
                linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.destination-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a472a;
}

.destination-card p {
    padding: 0 1.5rem;
    color: #666;
}

.destination-card .link {
    display: block;
    padding: 1rem 1.5rem;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.destination-card .link:hover {
    color: #e5542d;
}

/* Call to Action */
.cta {
    padding: 4rem 0;
    background-color: #1a472a;
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #1a472a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .highlight-grid,
    .destination-grid {
        grid-template-columns: 1fr;
    }
}