*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #4a7c3f;
    --green-dark: #2d5a1e;
    --green-light: #6aad50;
    --yellow: #f5c518;
    --brown: #5c3d2e;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Slideshow background ── */
.slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* ── Main content ── */
.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 1.5rem;
}

/* ── Logo ── */
.logo-container {
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.logo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* ── Info card ── */
.info-card {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.info-section {
    padding: 1rem 0;
}

.info-section:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.info-section h2 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.info-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.address {
    font-size: 1.1rem !important;
    font-weight: 700;
}

.highlight {
    margin-top: 0.5rem;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    color: var(--yellow) !important;
    font-size: 0.95rem !important;
}

.phone {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem !important;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.phone:hover {
    color: var(--yellow);
}

.camp-info {
    margin-top: 0.4rem;
}

.link {
    display: inline-block;
    margin-top: 0.3rem;
    color: var(--yellow);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.3rem 1rem;
    border: 2px solid var(--yellow);
    border-radius: 2rem;
    transition: all 0.25s ease;
}

.link:hover {
    background: var(--yellow);
    color: var(--brown);
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .logo {
        width: 160px;
        height: 160px;
    }

    .info-card {
        padding: 1.5rem 1.25rem;
        border-radius: 1rem;
    }

    .info-section h2 {
        font-size: 1rem;
    }

    .info-section p {
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) {
    .logo {
        width: 260px;
        height: 260px;
    }
}
