/* Premium Typography for Molly Jewelry */

/* Font Stacks Definition */
:root {
    /* Elegant serif fonts for titles and headings */
    --font-serif-elegant: "Crimson Text", "Garamond", "Georgia", "Didot",
        "Sabon", serif;

    /* Clean sans-serif fonts for UI and body text */
    --font-sans-clean: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Arial",
        sans-serif;

    /* Fallback for system fonts */
    --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
}

/* Base Typography */
body {
    font-family: var(--font-sans-clean);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

/* Headings - Elegant Serif */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif-elegant);
    font-weight: 600;
    line-height: 1.3;
    color: #2c1810;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Hero Section Typography */
.hero-title {
    font-family: var(--font-serif-elegant);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-family: var(--font-sans-clean);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Navigation Typography */
.nav-link {
    font-family: var(--font-sans-clean);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

/* Running Messages Typography */
.running-message-text {
    font-family: var(--font-serif-elegant);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-style: italic;
}

/* Product Section Typography */
.section-title {
    font-family: var(--font-serif-elegant);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #2c1810;
    text-align: center;
    margin: 3rem 0 2rem;
}

.product-name {
    font-family: var(--font-serif-elegant);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #2c1810;
}

.product-price {
    font-family: var(--font-sans-clean);
    font-size: 1rem;
    font-weight: 700;
    color: #8b4513;
}

/* Button Typography */
button,
.btn {
    font-family: var(--font-sans-clean);
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.text-area button {
    font-family: var(--font-sans-clean);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Price Typography */
.original-price {
    font-family: var(--font-sans-clean);
    color: #9ca3af;
    text-decoration: line-through;
}

.discount-badge {
    font-family: var(--font-sans-clean);
    font-weight: 700;
    font-size: 0.875rem;
}

/* Logo Typography */
.logo-text {
    font-family: var(--font-serif-elegant);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Welcome Section Typography */
.jewelry-hero h1 {
    font-family: var(--font-serif-elegant);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2c1810;
}

.jewelry-hero p {
    font-family: var(--font-sans-clean);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #5a4a3a;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .text-area h1 {
        font-size: 2.25rem;
    }

    .running-message-text {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .text-area h1 {
        font-size: 1.875rem;
    }

    .text-area p {
        font-size: 1rem;
    }

    .product-name {
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.25rem;
        padding: 6px 16px;
    }

    .nav-link {
        font-size: 0.85rem;
        letter-spacing: 0.02em;
    }
}

/* Enhanced readability for long text */
.text-content {
    font-family: var(--font-serif-elegant);
    font-size: 1.125rem;
    line-height: 1.7;
    color: #444;
}

/* Special emphasis */
.text-elegant {
    font-family: var(--font-serif-elegant);
    font-style: italic;
    letter-spacing: 0.01em;
}

.text-clean {
    font-family: var(--font-sans-clean);
    letter-spacing: 0.01em;
}

/* Caption text for slides */
.slide-caption {
    font-family: var(--font-serif-elegant);
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.02em;
}
