/* ============================================
   BLACKMOOR DISTILLERY - Typography
   Font Declarations & Text Styles
   ============================================ */

/* ============================================
   @font-face Declarations
   ============================================ */

/* Dracolas Regular - Main Display Font */
@font-face {
    font-family: 'Dracolas';
    src: url('../Font/Dracolas Regular.woff2') format('woff2'),
         url('../Font/Dracolas Regular.woff') format('woff'),
         url('../Font/Dracolas Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Dracolas Inline - Layered Effect */
@font-face {
    font-family: 'Dracolas Inline';
    src: url('../Font/Dracolas Inline.woff2') format('woff2'),
         url('../Font/Dracolas Inline.woff') format('woff'),
         url('../Font/Dracolas Inline.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Dracolas Ornaments - Decorative */
@font-face {
    font-family: 'Dracolas Ornaments';
    src: url('../Font/Font Ornament/Dracolas Ornaments.woff2') format('woff2'),
         url('../Font/Font Ornament/Dracolas Ornaments.woff') format('woff'),
         url('../Font/Font Ornament/Dracolas Ornaments.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   Heading Styles
   ============================================ */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-display);
    color: var(--color-cream);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
}

h1, .h1 {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-lg);
}

h2, .h2 {
    font-size: var(--text-5xl);
}

h3, .h3 {
    font-size: var(--text-4xl);
}

h4, .h4 {
    font-size: var(--text-3xl);
}

h5, .h5 {
    font-size: var(--text-2xl);
}

h6, .h6 {
    font-size: var(--text-xl);
}

/* ============================================
   Display Headings (Extra Large)
   ============================================ */

.display-1 {
    font-family: var(--font-display);
    font-size: var(--text-7xl);
    line-height: 0.95;
    letter-spacing: 0.03em;
}

.display-2 {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    line-height: 1;
    letter-spacing: 0.02em;
}

/* Inline variant for layered effect */
.display-inline {
    font-family: var(--font-display-inline);
}

/* ============================================
   Body Text Styles
   ============================================ */

p {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    color: var(--color-cream-dark);
}

.lead {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--color-cream);
}

.small {
    font-size: var(--text-sm);
}

.caption {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

/* ============================================
   Special Text Treatments
   ============================================ */

/* Gold Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ornamental Text */
.ornament {
    font-family: var(--font-ornament);
    color: var(--color-gold);
    font-size: var(--text-3xl);
    line-height: 1;
}

.ornament--sm {
    font-size: var(--text-xl);
}

.ornament--lg {
    font-size: var(--text-5xl);
}

/* Subtitle Style */
.subtitle {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

/* Quote Style */
blockquote {
    font-family: var(--font-body);
    font-size: var(--text-2xl);
    font-style: italic;
    line-height: 1.6;
    color: var(--color-cream);
    padding: var(--space-xl) var(--space-2xl);
    border-left: 3px solid var(--color-gold);
    margin: var(--space-2xl) 0;
    position: relative;
}

blockquote::before {
    content: 'A';
    font-family: var(--font-ornament);
    font-style: normal;
    font-size: var(--text-4xl);
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
}

blockquote cite {
    display: block;
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header .subtitle {
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-lg);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Ornamental Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.divider::before,
.divider::after {
    content: '';
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.divider .ornament {
    font-size: var(--text-xl);
}

/* ============================================
   Links & Interactive Text
   ============================================ */

.link-underline {
    position: relative;
    display: inline-block;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width var(--transition-base);
}

.link-underline:hover::after {
    width: 100%;
}

/* ============================================
   Responsive Typography
   ============================================ */

@media (max-width: 768px) {
    h1, .h1 {
        font-size: var(--text-4xl);
    }

    h2, .h2 {
        font-size: var(--text-3xl);
    }

    h3, .h3 {
        font-size: var(--text-2xl);
    }

    .display-1 {
        font-size: var(--text-5xl);
    }

    .display-2 {
        font-size: var(--text-4xl);
    }

    p {
        font-size: var(--text-base);
    }

    .lead {
        font-size: var(--text-lg);
    }

    blockquote {
        font-size: var(--text-xl);
        padding: var(--space-lg);
    }
}
