/* Typography Classes */
.couple-names {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--color-text-dark);
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.page-title {
    font-family: var(--font-script);
    font-size: 2.4rem;
    text-align: center;
    color: #3B2F2A;
    margin: 0 0 2rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: normal;
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    text-align: center;
    color: var(--color-sage);
    margin: 1rem 0 2rem 0;
}

/* Content Container */
.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Background Classes */
.bg-wildflower {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23F5F5DC" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-lakeside {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                linear-gradient(135deg, #D4E4DD 0%, #AABCB5 100%);
    background-attachment: fixed;
}

.bg-pastoral {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                linear-gradient(135deg, #E8F1E8 0%, #B8D4B8 100%);
    background-attachment: fixed;
}

.bg-forest {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                linear-gradient(135deg, #D8E4DB 0%, #A4B494 100%);
    background-attachment: fixed;
}

.bg-elegant {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                linear-gradient(135deg, #F5F5DC 0%, #E8E8D0 100%);
    background-attachment: fixed;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .couple-names {
        font-size: 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }
}

