/* ============================================
   FOOTER STYLES - HerVenture Club (CLEANED)
============================================ */

/* COMPACT CTA & NEWSLETTER SECTION */
.footer-cta-section {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a1f12 100%);
    padding: var(--spacing-lg) 0;
    color: var(--text-light);
    border-top: 3px solid var(--brand-gold);
    position: relative;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
}

.cta-newsletter, .cta-membership {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.cta-title i {
    color: var(--brand-gold);
}

.cta-subtitle {
    opacity: 0.9;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 90%;
}

/* Newsletter Form - NO MESSAGE DIVS */
.form-group {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    width: 100%;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(155, 136, 76, 0.3);
    max-width: 250px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: 2px solid var(--brand-gold);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(155, 136, 76, 0.2);
}

.newsletter-btn {
    padding: 0.7rem 1.5rem;
    background-color: var(--brand-gold);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #8a7a44;
    transform: translateY(-2px);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loading Spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary.btn-sm {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
}

.btn-primary.btn-sm:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.btn-outline.btn-sm {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline.btn-sm:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Vertical Divider */
.cta-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 var(--spacing-md);
}

/* MAIN FOOTER */
.main-footer {
    background-color: var(--brand-dark);
    color: var(--text-light);
    padding-top: var(--spacing-xl);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* FOOTER TOP - 5 COLUMNS */
.footer-top {
    display: grid;
    grid-template-columns: 3fr repeat(4, 1fr);
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* FOOTER BRAND */
.footer-brand {
    padding-right: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-mission {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--brand-gold);
    transform: translateY(-3px);
}

/* FOOTER LINKS */
.footer-links h3 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: 6px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--brand-gold);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.3;
}

.footer-links a:hover {
    color: var(--brand-gold);
    padding-left: 3px;
}

/* FOOTER BOTTOM: COPYRIGHT */
.footer-bottom {
    padding: var(--spacing-md) 0;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
}

.footer-bottom > .copyright:first-of-type {
    margin-bottom: 0.75rem;
}

.footer-email {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: var(--brand-gold);
    text-decoration: underline;
}

.separator {
    margin: 0 var(--spacing-sm);
    color: rgba(255, 255, 255, 0.3);
}

.copyright a[href] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.copyright a[href]:hover {
    color: var(--brand-gold);
    text-decoration: underline;
}

.copyright + .copyright {
    position: relative;
    padding-top: 1rem;
    margin-top: 0.75rem;
}

.copyright + .copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.full-width-separator {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
    width: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 2.5fr repeat(4, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
    
    .footer-brand {
        grid-column: span 3;
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-container {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .cta-divider {
        width: 80%;
        height: 1px;
        margin: var(--spacing-sm) auto;
    }
    
    .form-group {
        max-width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .btn-sm {
        padding: 0.5rem 1rem;
    }
    
    .footer-links h3::after {
        left: 0;
        transform: none;
    }
    
    .footer-bottom > .copyright:first-of-type {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .copyright:first-of-type .separator {
        display: none;
    }
    
    .copyright + .copyright::before {
        left: 15%;
        right: 15%;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Newsletter Form - Mobile */
    .form-group {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-input {
        max-width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-sm {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .footer-bottom > .copyright:first-of-type {
        font-size: 0.85rem;
        line-height: 1.5;
        gap: 0.4rem;
    }
    
    .footer-email {
        font-size: 0.85rem;
    }
    
    .copyright a[href] {
        font-size: 0.85rem;
    }
    
    .copyright + .copyright::before {
        left: 10%;
        right: 10%;
    }
}