/* ===== Weddings Page Specific Styles ===== */

/* Services prose section — dark background */
.services-section {
    background: #000;
    color: var(--color-bg);
}

/* FAQ outer section — dark background */
.faq-section-outer {
    background: #000;
    color: var(--color-bg);
}

/* FAQ section heading color */
.faq-section-outer .section-heading {
    color: var(--color-bg);
}

/* Services section heading color */
.services-section .section-heading {
    color: var(--color-bg);
}

/* Hero CTA button */
.hero-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: var(--color-accent);
    color: var(--color-bg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 12px;
    transition: opacity 0.2s ease;
}

.hero-cta:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .hero-cta {
        display: block;
        margin-top: 1rem;
        min-width: 200px;
        text-align: center;
        background: var(--color-accent);
        color: var(--color-bg);
        border: none;
        border-radius: 12px;
        padding: 0.65rem 1.5rem;
        transition: opacity 0.2s ease;
    }

    .hero-cta:hover {
        opacity: 0.85;
    }
}

/* Services section max-width inner content */
.services-inner {
    max-width: 640px;
    margin: 0 auto;
}

/* Contact back-link */
.contact-back-link {
    display: block;
    margin-top: var(--spacing-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(251, 243, 250, 0.65);
}

.contact-back-link a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.contact-back-link a:hover {
    opacity: 1;
    color: var(--color-bg);
}

/* Location note in contact section */
.contact-location-note {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(251, 243, 250, 0.5);
    letter-spacing: 0.04em;
    margin-top: var(--spacing-sm);
    text-transform: uppercase;
}
