/* Global Font Variables */
:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Poppins', sans-serif;
}

/* Apply Fonts Globally */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.gallery-main-title,
.card-title,
.menu-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Specific Font Sizes */
h1,
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2,
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h6 {
    font-size: 1rem;
}

/* Body Text */
p,
.description,
.text-content {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
}

/* Subtitles and Labels */
.hero-subtitle,
.section-subtitle,
.subtitle {
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Buttons */
.btn,
button {
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Navigation */
.dakshin-nav-link,
nav a {
    font-family: var(--font-accent);
    font-weight: 500;
}

/* Cards */
.card-text,
.menu-card-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
}