:root {
    --accent: #128c46;
    --accent2: #9EC5A8;
    --dark: #1a1a1a;
    --light: #f2f3f4;
    --white: #ffffff;
    --pad: 70px;
}

.hero-text {
    padding: 40px var(--pad) 40px;
}

/* ── HERO ── */
.hero-text h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    margin-top: 0;
    max-width: 100%;
    text-align: left;
}

.hero-text p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    padding-left: 1.25rem;
    border-left: 2px solid var(--accent);
}


/* ── KALENDER ── */
.calendar-section {
    background: #e6e7e8;
    padding: 60px var(--pad) 80px;
}

.calendar-wrapper {
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.calendar-wrapper iframe {
    width: 100%;
    height: 650px;
    border: 0;
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    :root { --pad: 40px; }
}

@media (max-width: 768px) {
    :root { --pad: 20px; }

    header {
        height: auto !important;
        margin-top: 50px;
    }

    .nav-toggle {
        display: block !important;
        margin-left: auto;
    }

    .hero-text {
        padding: 0;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .calendar-section {
        padding: 30px var(--pad) 50px;
    }

    .calendar-wrapper {
        border-radius: 16px;
    }

    .calendar-wrapper iframe {
        height: 500px;
    }
}