/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a3d2e;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: top;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    padding: 40px;
}

.hero-content {
    width: 100%;
    margin: 0 auto;
    background: #013505;
    border-radius: 20px;
    padding: 2rem;
    padding-top: 30px;
    padding-bottom: 100px;
    padding-left: 66px;
    padding-right: 66px;
}

.logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.4;
}

.cta-button {
    background: #005a06;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    font-family: inherit;
}

.cta-button:hover {
    background: #FDFFE7;
    color: #013505;
    border: 1px solid #013505;
    transform: translateY(-2px);
}

.opening-date {
    font-size: 1rem;
    color: #013505;
    font-weight: 300;
}

.hero-opening-date {
    color: #ffffff;
    margin-bottom: 2rem;
}

.preview-image {
    max-width: 80%;
    height: auto;
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 100px rgba(253, 255, 231, 0.5);
}

/* Features Section */
.features {
    padding: 40px;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: left;
}

.feature-icon {
    background: #FDFFE7;
    border-radius: 6px;
    border: 1px solid #013505;
    padding: 10px;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #013505;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature p {
    color: #013505;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
}

.bottom-cta .cta-button {
    margin-bottom: 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close:hover {
    color: #000;
}

.modal h2 {
    color: #013505;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #013505;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #013505;
}

.submit-button {
    background: #005a06;
    color: #ffffff;
    border: 1px solid #005a06;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.submit-button:hover {
    background: #004a05;
    border-color: #004a05;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #6c757d;
    border-color: #6c757d;
}

.submit-button:disabled:hover {
    background: #6c757d;
    border-color: #6c757d;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    font-weight: bold;
}

.success-message h2 {
    color: #013505;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-message p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-button {
    background: #005a06;
    color: #ffffff;
    border: 1px solid #005a06;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.success-button:hover {
    background: #004a05;
    border-color: #004a05;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: 85vh;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 20px;
    }
    
    .hero-content {
        padding: 1rem;
        padding-top: 20px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .preview-image {
        max-width: 100%;
    }
    
    .features {
        padding: 20px;
    }
    
    .bottom-cta {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero {
        padding: 20px;
    }
    
    .hero-content {
        padding: 0.75rem;
        padding-top: 15px;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .preview-image {
        max-width: 100%;
    }
    
    .features {
        padding: 40px;
    }
    
    .bottom-cta {
        padding: 2.5rem 1rem;
    }
}
