/* Newsletter Section Styles */
.newsletter-section {
    background-color: #C09736; /* RGB(192, 151, 54) - converted from Figma */
    padding: 50px 0;
    min-height: 160px;
    display: flex;
    align-items: center;
}

.newsletter-content {
    display: flex;
    gap: 95px;
    align-items: center;
}

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 0 0;
    font-family: 'Cormorant Infant';
}

.newsletter-subtitle {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 200;
    line-height: 1.2;
    margin: 0;
    opacity: 0.9;
}

.newsletter-form {
    flex-shrink: 0;
}

.form-group {
    display: flex;
    gap: 0;
    align-items: center;
}

.newsletter-input {
    width: 336px;
    height: 70px;
    background-color: #FFFFFF;
    border: 3px solid #FFFFFF;
    border-radius: 6px;
    padding: 0 20px;
    font-size: 20px;
    color: #000000;
    /* opacity: 0.4; */
    outline: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-right: 30px;
    font-family: 'Outfit';
    font-weight: 300;
    position: relative;
}

.newsletter-input:hover {
}

.newsletter-input::placeholder {
    color: #000000;
    opacity: 0.4;
    font-weight: 500;
    text-transform: uppercase;
}

.newsletter-input:focus {
    opacity: 1;
    border-color: #FFFFFF;
}

.newsletter-button {
    width: 204px;
    height: 70px;
    background-color: #004923; /* RGB(0, 73, 35) - converted from Figma */
    border: 3px solid #004923;
    border-radius: 300px;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: -3px; /* Overlap with input border */
    font-family: 'Outfit';
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.newsletter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.newsletter-button:hover {
    background-color: #FFFFFF;
    color: #004923;
    border: 2px solid;
}

.newsletter-button:hover::before {
    left: 100%;
}

.newsletter-button:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

/* Responsive Design */

@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-title {
        font-size: 25px;
    }
    
    .newsletter-subtitle {
        font-size: 17px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input,
    .newsletter-button {
        width: 100%;
        height: 50px;
        margin: 0;
        font-size: 15px;
    }
    
    .newsletter-button {
        margin-left: 0;
        font-size: 17px;
        width: 150px;
        height: 40px;
    }
    
    .newsletter-button:hover {
        background-color: #FFFFFF;
        color: #004923;
        border-color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 51, 24, 0.3);
    }
    
    .newsletter-input:hover {
        transform: translateY(-1px);
    }
    
    .newsletter-input:focus {
        transform: translateY(-2px);
    }
    .newsletter-content{
        
display: flex;
        
flex-direction: column;
        
gap: 20px;
    }
    .newsletter-text{
    text-align: center;
}
}
