* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f7f0;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d6a4f;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2d6a4f;
    margin: 3px 0;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #e8f5e9, #c8e6d9);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    padding: 80px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #1b5e3a;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    color: #2d6a4f;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background: #52b788;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2d6a4f;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #2d6a4f;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #52b788;
}

.btn-outline:hover {
    background: #52b788;
    color: white;
}

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

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: #1b5e3a;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #52b788;
}

.section-title p {
    color: #52b788;
    margin-top: 15px;
}

/* Categories */
.categories {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #e0e8e0;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #52b788;
    box-shadow: 0 10px 25px rgba(82,183,136,0.15);
}

.category-card i {
    font-size: 2.5rem;
    color: #52b788;
    margin-bottom: 15px;
}

.category-card h3 {
    color: #2d6a4f;
    margin-bottom: 10px;
}

.category-card p {
    color: #80a880;
    font-size: 0.9rem;
}

/* Featured Spots */
.featured-spots {
    padding: 80px 0;
    background: #f0f7f0;
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.spot-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.spot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(82,183,136,0.15);
}

.spot-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
}

.spot-card:hover img {
    transform: scale(1.03);
}

.spot-info {
    padding: 20px;
}

.spot-category {
    background: #52b788;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 10px;
}

.spot-info h3 {
    color: #2d6a4f;
    margin-bottom: 8px;
}

.spot-info p {
    color: #80a880;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #1b5e3a;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #c8e6d9;
}

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

.footer-section ul li {
    margin: 8px 0;
}

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

.footer-section ul li a:hover {
    color: #52b788;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons i {
    font-size: 1.3rem;
    cursor: pointer;
    color: #c8e6d9;
}

.social-icons i:hover {
    color: #52b788;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        margin-top: 60px;
        padding: 60px 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .categories-grid,
    .spots-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
}