/* Subscribe Footer Styles */

/* Import Google Fonts for footer */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Frank+Ruhl+Libre:wght@400;500;600;700&display=swap');

/* Note: CSS Variables (--navy, --gold, --off-white) are defined in home.css */
:root {
    --navy: #002642;
    --gold: #C5A059;
    --off-white: #F9F7F1;
}

.subscribe-footer {
    background: var(--navy);
    color: white;
    padding: 3rem 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.subscribe-footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.subscribe-footer-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .subscribe-footer-contact {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.subscribe-footer-contact > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .subscribe-footer-contact > div {
        align-items: flex-start;
    }
}

.subscribe-footer-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .subscribe-footer-icon {
        justify-content: flex-start;
    }
}

.subscribe-footer-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gold);
}

.subscribe-footer-contact h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subscribe-footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.5;
}

.subscribe-footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}

.subscribe-footer-contact a:hover {
    color: var(--gold);
}

.subscribe-footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.subscribe-footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .subscribe-footer-bottom {
        flex-direction: row;
    }
}

.subscribe-footer-brand {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .subscribe-footer-brand {
        text-align: left;
    }
}

.subscribe-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.subscribe-footer-links a,
.subscribe-footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}

.subscribe-footer-links a:hover,
.subscribe-footer-nav a:hover {
    color: var(--gold);
}

/* Style WordPress menu in footer */
.subscribe-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.subscribe-footer-nav li {
    margin: 0;
    padding: 0;
}

.subscribe-footer-nav li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}

.subscribe-footer-nav li a:hover {
    color: var(--gold);
}

.subscribe-footer-hebrew {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.125rem;
    direction: rtl;
}

.subscribe-footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

