/* ============================================
   Homepage Typography Override
   Montserrat + Inter
   Only affects index.html
   ============================================ */

/* Font Face Definitions */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-extrabold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------
   Body & Base Text - Inter
   -------------------------------------------- */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --------------------------------------------
   Headlines - Montserrat
   -------------------------------------------- */

/* --------------------------------------------
   Hero Section - Card Layout with Visible Background
   -------------------------------------------- */

/* Hero Container */
.hero {
    min-height: 65vh;
    background-image:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0.3) 100%
        ),
        url('../images/Hero.webp');
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 130px var(--space-sm) var(--space-xl);
}

/* Hero Content - Glass Card */
.hero-content {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: var(--space-lg) var(--space-md);
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* H1 - Montserrat ExtraBold, large & dominant */
.hero-headline {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.2em;
    color: var(--color-white);
    text-shadow: none;
}

/* City name - Accent below main title */
.hero-city {
    display: block;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 0.4em;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-top: 0.25em;
    text-shadow: none;
}

/* Subline - Inter, calm & readable */
.hero-subline {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: var(--space-md);
    color: var(--color-white);
    text-shadow: none;
}

/* Hero CTAs */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.hero-cta .btn {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
}

/* Tablet (480px+) */
@media (min-width: 480px) {
    .hero {
        min-height: 70vh;
        padding-top: 140px;
        background-position: center 60%;
    }

    .hero-content {
        max-width: 450px;
        margin: 0;
        margin-left: 5%;
        padding: var(--space-lg) var(--space-lg);
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-city {
        font-size: 0.38em;
    }

    .hero-subline {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: row;
        gap: var(--space-sm);
    }

    .hero-cta .btn {
        padding: 0.8rem 1.8rem;
    }
}

/* Desktop (768px+) */
@media (min-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 120px 0 var(--space-xl) 5%;
        align-items: center;
        justify-content: flex-start;
        background-image:
            linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.25) 0%,
                rgba(0, 0, 0, 0.1) 40%,
                rgba(0, 0, 0, 0.05) 70%,
                rgba(0, 0, 0, 0.15) 100%
            ),
            url('../images/Hero.webp');
        background-position: 70% 70%;
        background-size: cover;
    }

    .hero-content {
        max-width: 460px;
        margin: 0;
        padding: var(--space-lg) var(--space-xl);
    }

    .hero-headline {
        font-size: 4rem;
        letter-spacing: 0.03em;
    }

    .hero-city {
        font-size: 0.35em;
        letter-spacing: 0.12em;
    }

    .hero-subline {
        font-size: 1.05rem;
        letter-spacing: 0.03em;
    }

    .hero-cta .btn {
        font-size: 1rem;
        padding: 0.85rem 1.8rem;
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero {
        min-height: 75vh;
        padding-left: 6%;
        background-position: 65% 65%;
    }

    .hero-content {
        max-width: 500px;
        padding: var(--space-xl) var(--space-xl);
    }

    .hero-headline {
        font-size: 4.5rem;
    }
}

/* Extra Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .hero {
        min-height: 80vh;
        padding-left: 8%;
        background-position: 60% 60%;
    }

    .hero-content {
        max-width: 540px;
    }

    .hero-headline {
        font-size: 5rem;
    }

    .hero-subline {
        font-size: 1.1rem;
    }
}

/* Section Headlines */
.about-headline {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
}

.about-headline-ihr,
.about-headline-name,
.about-headline-city {
    font-family: 'Montserrat', system-ui, sans-serif;
}

.services h2,
.highlight-section h2,
.map-section h2,
.contact h2 {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
}

/* Feature Headlines */
.feature-item h3 {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
}

/* --------------------------------------------
   UI Elements - Inter
   -------------------------------------------- */

/* Buttons */
.btn,
.about-cta .btn,
.popup-cta {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
}

/* --------------------------------------------
   Header Navigation - Enhanced
   -------------------------------------------- */

/* Menu Links - Larger, SemiBold, No Shadow */
.nav-menu > li > a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-shadow: none;
    letter-spacing: -0.01em;
}

/* Active Menu Item - Subtle Underline */
.nav-menu > li > a.active {
    color: var(--color-primary);
    position: relative;
}

.nav-menu > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
}

/* Header CTA Buttons - Subtle Default Shadow */
.header-btn {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-btn--phone {
    box-shadow: 0 2px 8px rgba(244, 196, 48, 0.25);
}

.header-btn--whatsapp {
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.header-btn--email {
    box-shadow: 0 2px 8px rgba(26, 26, 46, 0.15);
}

/* Quick Buttons (Mobile) - Same Treatment */
.quick-btn {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.quick-btn--phone {
    box-shadow: 0 2px 8px rgba(244, 196, 48, 0.25);
}

.quick-btn--whatsapp {
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.quick-btn--email {
    box-shadow: 0 2px 8px rgba(26, 26, 46, 0.15);
}

/* Dropdown Menu Links */
.nav-dropdown-menu a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Taglines & Subtext */
.hero-subline,
.about-tagline,
.about-main-text {
    font-family: 'Inter', system-ui, sans-serif;
}

/* Owner Info */
.owner-name {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
}

.owner-title,
.owner-quote {
    font-family: 'Inter', system-ui, sans-serif;
}

/* Service Cards */
.service-card h3 {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
}

.service-card p {
    font-family: 'Inter', system-ui, sans-serif;
}

/* Map Section */
.map-categories,
.map-cta-text,
.map-hint {
    font-family: 'Inter', system-ui, sans-serif;
}

/* Contact Section */
.contact-info,
.contact-form {
    font-family: 'Inter', system-ui, sans-serif;
}

/* Highlight Badge */
.highlight-badge {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
}

.highlight-text h2 {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
}

.highlight-text p {
    font-family: 'Inter', system-ui, sans-serif;
}
