/* Newsletter Card - Full Width Elegant Design */

.newsletter-card {
    background: linear-gradient(135deg, #e8dcc8 0%, #dfd5c3 100%);
    border-radius: 0;
    padding: 50px 20px 50px 20px;
    margin: 40px auto 0 auto;
    border: none;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15);
    max-width: 1160px;
    width: calc(100vw - 80px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.newsletter-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.newsletter-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.newsletter-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    margin-bottom: 30px;
}

.newsletter-input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    gap: 0;
    transition: var(--transition);
}

.newsletter-input {
    flex: 1;
    border: 1px solid #999;
    outline: none;
    padding: 10px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2d2926;
    background: white;
    border-radius: 8px 0 0 8px;
    border-right: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #777;
}

.newsletter-input::placeholder {
    color: #888;
    font-weight: 400;
    opacity: 1;
}

.newsletter-button {
    background: #c9a96e;
    border: 1px solid #c9a96e;
    border-radius: 0 8px 8px 0;
    padding: 10px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #b89860;
    border-color: #b89860;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.newsletter-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.2);
    background: #a88752;
    border-color: #a88752;
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #5a5550;
    font-weight: 500;
}

.benefit-item i {
    color: #8b7355;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Success Message Styling */
.newsletter-success {
    display: none;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}

.newsletter-success.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 15px;
        margin: 30px auto 0 auto;
        max-width: 1160px;
        width: calc(100vw - 60px);
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        box-sizing: border-box;
    }
    
    .newsletter-content {
        padding: 0 20px;
    }
    
    .newsletter-content h3 {
        font-size: 1.8rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        max-width: 100%;
        padding: 0;
        border-radius: 0;
    }
    
    .newsletter-input {
        padding: 14px 18px;
        border-radius: 0;
        margin-bottom: 0;
        border-bottom: none;
    }
    
    .newsletter-button {
        padding: 14px 25px;
        border-radius: 0;
        width: 100%;
        border-top: 1px solid #999;
    }
    
    .newsletter-benefits {
        gap: 20px;
        margin-top: 20px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .newsletter-card {
        padding: 25px 15px;
        margin: 25px auto 0 auto;
        max-width: 1160px;
        width: calc(100vw - 60px);
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        box-sizing: border-box;
    }
    
    .newsletter-content {
        padding: 0 20px;
    }
    
    .newsletter-content h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .newsletter-content p {
        font-size: 0.95rem;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* Loading state for button */
.newsletter-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.newsletter-button.loading span {
    opacity: 0.5;
}
