/* Restaurant Typography Enhancements */
/* Elegant font system for premium restaurant website */

/* Font display optimization */
@font-face {
    font-family: 'Cormorant Garamond';
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-display: swap;
}

@font-face {
    font-family: 'Dancing Script';
    font-display: swap;
}

/* Premium typography variables */
:root {
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

/* Enhanced hero title styling */
.hero-title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Restaurant name special styling */
.restaurant-name {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    position: relative;
}

.restaurant-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.7;
    border-radius: 1px;
}

/* Brand highlight with script font */
.brand-highlight {
    font-family: var(--font-script);
    font-weight: var(--font-weight-semibold);
    color: var(--accent-color);
    font-size: 1.1em;
    position: relative;
    top: -0.1em;
}

/* Section headers enhancement */
.section-title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Elegant subtitle styling */
.hero-subtitle,
.section-subtitle {
    font-family: var(--font-body);
    font-weight: var(--font-weight-normal);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.7;
    letter-spacing: 0.01em;
    opacity: 0.95;
}

/* Feature cards typography */
.feature-card h4 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-family: var(--font-body);
    font-weight: var(--font-weight-normal);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Navigation typography enhancement */
.nav-brand h1 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: 1.8rem;
    letter-spacing: -0.01em;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: none;
}

/* Button typography */
.btn {
    font-family: var(--font-body);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Price and number styling */
.price,
.package-price,
.stat-number,
.badge-number {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
}

/* Quote and testimonial enhancement */
.review-text {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: var(--font-weight-normal);
    font-size: 1.05rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
    position: relative;
}

.review-text::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -15px;
    line-height: 1;
}

/* Special menu item styling */
.menu-item-name {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.menu-item-description {
    font-family: var(--font-body);
    font-weight: var(--font-weight-normal);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Contact info typography */
.info-card h4 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle,
    .section-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: -0.01em;
    }
    
    .restaurant-name::after {
        height: 1px;
    }
}

/* Print styles for restaurant menus */
@media print {
    * {
        font-family: var(--font-body) !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-heading) !important;
    }
    
    .price,
    .package-price {
        font-weight: var(--font-weight-bold) !important;
    }
}
