/* ENvious - Custom Fonts & Typography */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* Logo Style - Custom Serif-Calligraphy Hybrid (using Cinzel with Playfair) */
.logo-font {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    /* Simulating elegant curves and flourishes via text-shadow */
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.1),
        0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 10px rgba(212, 175, 55, 0.2);
}

/* Heading - Playfair Display */
.heading-font {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Subheading - Cinzel */
.subheading-font {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #F3E6C8;
}

/* Body - Inter */
.body-font {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Enhanced Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.subheading {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #D4AF37;
}

.body-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(243, 230, 200, 0.9);
}

/* Calligraphic Initials */
.drop-cap::first-letter {
    font-family: 'Cinzel', serif;
    font-size: 4em;
    float: left;
    line-height: 0.8;
    margin-right: 0.1em;
    color: #D4AF37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Font Weights Mapping */
.font-thin { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

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