@import url('https://fonts.googleapis.com/css2?family=Sigmar&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #357d2b;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffb700;
    text-shadow: 0 0 15px rgba(255, 183, 0, 0.5);
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 183, 0, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 183, 0, 0.8), 0 0 30px rgba(255, 183, 0, 0.6);
    }
}

.tagline {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.highlight {
    color: #ffb700;
    font-weight: 600;
}

/* Image Section */
.image-section {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(180deg, #2a6323 0%, #357d2b 100%);
}

.project-image {
    max-width: 90%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 5px solid #ffb700;
    transition: transform 0.5s, box-shadow 0.5s;
}

.project-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.project-caption {
    margin-top: 20px;
    font-style: italic;
    color: #ffb700;
    font-size: 1.1rem;
}

/* Features */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, #357d2b 0%, #2a6323 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffb700;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffb700;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #ffb700;
    color: #357d2b;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 183, 0, 0.4);
    margin-top: 20px;
}

.cta-button:hover {
    background: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.6);
}

/* Status */
.status {
    padding: 60px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.status-badge {
    display: inline-block;
    background: rgba(255, 183, 0, 0.2);
    color: #ffb700;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid #ffb700;
}

.last-update {
    font-style: italic;
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.project-credit {
    margin-top: 15px;
    font-size: 1rem;
    color: #ffb700;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        max-width: 100%;
    }
}