/**
 * Premium Page Headline Styling Update
 * Matches Wall of Love page headline styling
 * Applied to: /premium/single/ and /services/premium/
 */

/* Load Garamond font - same as Wall of Love */
@font-face {
    font-family: 'Garamond';
    src: url('/fonts/Garamond.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Import EB Garamond as fallback */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

/* Update main tagline headline to match Wall of Love */
#tagline h1 {
    font-family: 'Garamond', 'EB Garamond', Georgia, 'Times New Roman', serif !important;
    font-size: 96px !important;
    font-weight: 400 !important;
    line-height: 0.9 !important;
    letter-spacing: -0.03em !important;
    word-spacing: 0.05em !important;
    color: #2d3748 !important;
    margin-bottom: 30px !important;
}

/* Responsive adjustments matching Wall of Love */
@media (max-width: 992px) {
    #tagline h1 {
        font-size: 72px !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 768px) {
    #tagline h1 {
        font-size: 56px !important;
        line-height: 0.9 !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    #tagline h1 {
        font-size: 42px !important;
        margin-bottom: 20px !important;
    }
}
