
.hero {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
}

.logo {
    font-size: 4rem;
    color: var(--primary-brass);
    text-shadow: 0 0 10px var(--accent-gold);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}

.tagline {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 3rem;
}

.description {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-brass);
    border-radius: 8px;
}

.cta-buttons {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    margin-bottom: 2rem;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
}

.newsletter-title {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.newsletter-subtitle {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 0.8rem;
    border: 1px solid var(--primary-brass);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 4px;
    font-family: 'Brygada 1918', serif;
}

.newsletter-button {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-brass);
    color: var(--accent-gold);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant SC', serif;
}

.newsletter-button:hover {
    background: var(--primary-brass);
    color: var(--bg-purple);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(181, 166, 66, 0.4);
}

.newsletter-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.newsletter-message {
    width: 100%;
    padding: 0.8rem;
    margin-top: 1rem;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
}

.success-message {
    background-color: rgba(0, 128, 0, 0.2);
    border: 1px solid #006400;
    color: #98FB98;
}

.error-message {
    background-color: rgba(139, 0, 0, 0.2);
    border: 1px solid #8B0000;
    color: #FFA07A;
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
        min-height: calc(100vh - 150px);
    }
    
    .logo {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .description {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-container {
        padding: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0.8rem 0.8rem;
    }
    
    .logo {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .description {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .newsletter-title {
        font-size: 1.1rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.8rem;
    }
    
    .newsletter-container {
        padding: 0.8rem;
    }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding: 4.5rem 1rem 1rem;
    }
    
    .logo {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .description {
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
}
