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

:root {
    --primary-green: #6B8E23;
    --sage-green: #87A96B;
    --light-green: #C3D9B7;
    --cream: #FFF8E7;
    --warm-beige: #F5E6D3;
    --earth-brown: #8B7355;
    --text-dark: #3A4A2B;
    --text-light: #5A6B4A;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 50%, #E8DCC8 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

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

.leaf-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-green);
    animation: sway 3s ease-in-out infinite;
}

h1 {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 300;
    letter-spacing: 2px;
}

.hero {
    text-align: center;
    margin: 4rem 0;
    animation: fadeIn 1.5s ease-out;
}

.tagline {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 300;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--sage-green), var(--primary-green));
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
    animation: pulse 2s infinite;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(135, 169, 107, 0.2);
    animation: fadeInUp 1s ease-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.15);
}

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

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.newsletter {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(195, 217, 183, 0.3));
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.newsletter h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.newsletter p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid var(--light-green);
    border-radius: 30px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.email-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107, 142, 35, 0.3);
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(135, 169, 107, 0.2);
}

footer p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links a {
    display: block;
    width: 35px;
    height: 35px;
    color: var(--sage-green);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-green);
    transform: scale(1.1);
}

.social-links svg {
    width: 100%;
    height: 100%;
}

.decorative-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--sage-green);
    opacity: 0.1;
    border-radius: 0 100% 0 100%;
    animation: float 20s infinite ease-in-out;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 10%;
    animation-delay: 7s;
    width: 40px;
    height: 40px;
}

.leaf-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
    width: 25px;
    height: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@media (max-width: 768px) {
    .tagline {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input {
        min-width: 100%;
    }
    
    .newsletter {
        padding: 2rem 1.5rem;
    }
}