/**
 * Homepage Typography Customizations
 * Based on design comp specifications
 */

/* Hero Section Custom Typography */
.hero-typography h1 {
    /* Ensure proper spacing between lines */
    line-height: 1.1;
}

/* "design" - lowercase script */
.hero-typography .font-pscript {
    font-size: clamp(3.5rem, 9vw, 7rem);
    color: #3B3636; /* Onyx */
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: block;
}

/* "THAT CONNECTS" - Field Gothic uppercase */
.hero-typography .font-fieldgothic {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    letter-spacing: 0.02em;
    line-height: 0.9;
    color: #3B3636; /* Onyx */
}

/* "AND" - Chili color emphasis */
.hero-typography .font-fieldgothic .text-chili {
    color: #F15623 !important; /* Chili */
    display: inline-block;
    margin: 0 0.25em;
}

/* "CREATIVITY THAT LASTS" - Operetta uppercase */
.hero-typography .font-operetta {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    text-transform: uppercase;
    color: #3B3636; /* Onyx */
    margin-top: 0.25rem;
    letter-spacing: 0.01em;
}

/* Testimonial Quote Marks */
.testimonial-slide .text-6xl {
    font-family: 'Georgia', serif;
    line-height: 0.5;
    margin-bottom: -1rem;
}

/* CTA Section Typography */
.cta-section h2 {
    letter-spacing: -0.02em;
}

/* Portfolio Teasers - Title styling */
.teaser-card h3 {
    letter-spacing: 0.05em;
    font-weight: 900;
}

/* Values Section - Title emphasis */
.values-section h3 {
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
    .hero-typography {
        text-align: center;
    }
    
    .hero-typography .font-pscript {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-typography .font-fieldgothic,
    .hero-typography .font-operetta {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
}

/* Animation for hero text */
.homepage-loaded .hero-typography > * {
    animation: heroTextReveal 0.8s ease-out forwards;
    opacity: 0;
}

.homepage-loaded .hero-typography .font-pscript {
    animation-delay: 0.2s;
}

.homepage-loaded .hero-typography .font-fieldgothic {
    animation-delay: 0.4s;
}

.homepage-loaded .hero-typography .font-operetta {
    animation-delay: 0.6s;
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tagline styling (for header area) */
.site-tagline {
    font-family: 'Recht', sans-serif;
    font-size: 0.875rem;
    color: #71797E; /* Steel */
    font-style: italic;
}

.site-tagline cite {
    display: block;
    font-style: normal;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    opacity: 0.8;
}

