/*
 * sections.css — Section-Level Layout: Stats Bar, Newsletter, Footer
 * HuaHinExpats.info
 */

/* ── Stats Bar ── */
.stats-bar {
    background: var(--blue);
    padding: 22px 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: white;
}

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--yellow);
}

.stat-label {
    font-size: 0.82rem;
    opacity: 0.85;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Newsletter CTA ── */
.newsletter-bg {
    background: linear-gradient(135deg, var(--blue) 0%, #0D47A1 100%);
    padding: 80px 24px;
    text-align: center;
}

.newsletter-bg h2 {
    color: white;
    margin-bottom: 12px;
}

.newsletter-bg p {
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 240px;
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: var(--orange);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: #BF360C;
}

.newsletter-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 12px;
}

.newsletter-note a {
    color: var(--yellow);
}

/* ── Footer ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 40px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.83rem;
}

.footer-bottom a {
    color: var(--yellow);
    text-decoration: none;
}

/* ── Social Links ── */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
}

.social-btn:hover {
    background: var(--orange);
}
