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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f2e9 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

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

.logo-icon {
    font-size: 40px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.hero {
    text-align: center;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(44, 95, 45, 0.2);
}

.hero-content {
    position: relative;
}

/* Tagline and Description */
.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2c5f2d;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2c5f2d, #88c070);
    border-radius: 2px;
}

.description {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Coming Soon Badge */
.coming-soon {
    margin: 30px 0;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #2c5f2d, #88c070);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
    animation: pulse 2s infinite;
}

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

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9f2e9;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9f2e9;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}

.feature-item span:last-child {
    font-weight: 600;
    color: #2c5f2d;
    text-align: center;
}

/* Call to Action Section */
.cta-section {
    margin-top: 40px;
    padding: 40px;
    background: #2c5f2d;
    color: white;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
}

.cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.cta-section p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.9;
}

/* Signup Form */
.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-submit {
    padding: 15px 30px;
    background: #88c070;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(136, 192, 112, 0.4);
}

.btn-submit:hover {
    background: #7aa862;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 192, 112, 0.6);
}

.form-message {
    text-align: center;
    min-height: 20px;
    font-weight: 600;
}

.form-message.success {
    color: #27ae60;
}

.form-message.error {
    color: #e74c3c;
}

/* Footer */
.footer {
    background: #2c5f2d;
    color: white;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #88c070;
}

.contact-info p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.contact-info a {
    color: #88c070;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 32px;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 24px;
    }
    
    .badge {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .hero {
        padding: 30px 15px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h3 {
        font-size: 24px;
    }
}