/* Sistema de Tipografía - La Casa de Seda */

/* Clases personalizadas para elementos h */
.heading-primary {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem; /* text-4xl */
    line-height: 2.5rem;
    font-weight: 700;
    color: #f8f5f0;
}

@media (min-width: 768px) {
    .heading-primary {
        font-size: 3rem; /* text-5xl */
        line-height: 1;
    }
}

@media (min-width: 1024px) {
    .heading-primary {
        font-size: 3.75rem; /* text-6xl */
        line-height: 1;
    }
}

.heading-secondary {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    font-weight: 600;
    color: #f8f5f0;
}

@media (min-width: 768px) {
    .heading-secondary {
        font-size: 2.25rem; /* text-4xl */
        line-height: 2.5rem;
    }
}

.heading-tertiary {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; /* text-2xl */
    line-height: 2rem;
    font-weight: 600;
    color: #f8f5f0;
}

@media (min-width: 768px) {
    .heading-tertiary {
        font-size: 1.875rem; /* text-3xl */
        line-height: 2.25rem;
    }
}

.heading-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75rem;
    font-weight: 400;
    color: #f8f5f0;
}

@media (min-width: 768px) {
    .heading-subtitle {
        font-size: 1.5rem; /* text-2xl */
        line-height: 2rem;
    }
}

/* Clases para texto del cuerpo */
.text-body {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem; /* text-base */
    line-height: 1.5rem;
    font-weight: 400;
    color: #f8f5f0;
}

.text-body-small {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem; /* text-sm */
    line-height: 1.25rem;
    font-weight: 400;
    color: #8a8a8a;
}

.text-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem; /* text-xs */
    line-height: 1rem;
    font-weight: 500;
    color: #8a8a8a;
}

/* Clases para elementos específicos */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; /* text-5xl */
    line-height: 1;
    font-weight: 700;
    color: #f8f5f0;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem; /* text-7xl */
        line-height: 1;
    }
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75rem;
    font-weight: 300;
    color: rgba(248, 245, 240, 0.9);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem; /* text-2xl */
        line-height: 2rem;
    }
}

/* Utilidades adicionales */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-raleway {
    font-family: 'Raleway', sans-serif;
}

.text-light {
    color: #f8f5f0;
}

.text-secondary {
    color: #8a8a8a;
}

.text-primary {
    color: #d4af37;
}

/* Optimización de carga de fuentes */
.font-playfair,
.font-raleway {
    font-display: swap;
} 