/* ========================================
   TYPOGRAPHY SYSTEM - ADVENTURE & READABILITY
   ========================================
   Merriweather (Serif) - Headlines & Emphasis
   Inter (Sans-serif) - Body Text & UI
   ======================================== */

/* Base Typography - Inter for body text */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* All Headings - Merriweather for adventurous feel */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

/* Heading Sizes */
h1,
.h1 {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.2;
}

h2,
.h2 {
    font-size: 2.25rem;
    font-weight: 700;
}

h3,
.h3 {
    font-size: 1.875rem;
    font-weight: 700;
}

h4,
.h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

h5,
.h5 {
    font-size: 1.25rem;
    font-weight: 700;
}

h6,
.h6 {
    font-size: 1rem;
    font-weight: 700;
}

/* Paragraph & Body Text - Inter */
p,
li,
td,
th,
span,
div,
a,
label,
input,
textarea,
select,
button {
    font-family: 'Inter', sans-serif;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #333;
}

/* Lead Text */
.lead,
.subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

/* Special Typography Classes */
.heading-section h2 {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.heading-section .subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
}

/* Navigation - Inter for clean readability */
.navbar,
.nav-links,
.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Buttons - Inter */
.btn,
button,
.btn-primary,
.btn-white,
.btn-whatsapp {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Footer Headings */
.footer-heading {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

/* Package & Card Titles */
.package-card h3,
.project-wrap h3,
.experience-content h3 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

/* Testimonial Text */
.testimony-section .blockquote,
.review-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    line-height: 1.8;
}

/* Hero Section */
.hero-wrap h1 {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-wrap .subheading,
.hero-wrap p {
    font-family: 'Inter', sans-serif;
}

/* Modal Typography */
.modal h2,
.modal h3 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.modal p,
.modal label,
.modal input {
    font-family: 'Inter', sans-serif;
}

/* Responsive Typography */
@media (max-width: 768px) {

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.75rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }

    h4,
    .h4 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    h1,
    .h1 {
        font-size: 1.75rem;
    }

    h2,
    .h2 {
        font-size: 1.5rem;
    }

    h3,
    .h3 {
        font-size: 1.25rem;
    }
}

/* Improved Readability */
strong,
b {
    font-weight: 700;
}

em,
i {
    font-style: italic;
}

/* Link Styling */
a {
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

/* Form Elements */
input,
textarea,
select {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

/* Caps Text */
.caps {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}