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

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Latin-Merriweather-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #2291E2;
    --card: #181a20;
    --text: #f2f2f2;
    --muted: #d7e7f6;
    --overlay: rgba(0,0,0,.45);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.header {
    position: relative;
    height: 100px;
    background: #0b7400;
    background: -moz-linear-gradient(-45deg,#0b7400 0%,#92a501 100%);
    background: -webkit-linear-gradient(-45deg, #0b7400 0%, #92a501 100%);
    background: linear-gradient(135deg, #0b7400 0%, #92a501 100%);
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    z-index: 10;
}

.logo {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 64px;
    height: 87px;
    object-fit: contain;
    background: transparent !important;
    z-index: 20;
    filter: drop-shadow(0 6px 8px rgba(0,0,0,.25));
}

.header-inner {
    width: 100%;
    padding-left: 75px;
}

h1,
.card h2 {
    font-family: 'Merriweather', Georgia, serif;
}

h1 {
    font-size: clamp(1.15rem, 2vw, 1.85rem);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: left;
    text-shadow:
        0 1px 0 rgba(255,255,255,.08),
        0 2px 4px rgba(0,0,0,.20);
}

.subtitle,
.countdown {
    margin-top: 6px;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--muted);
    font-weight: 400;
    text-align: left;
}

.main {
    min-height: calc(100vh - 100px);
    padding: 40px 0 24px;
}

.main.is-centered {
    display: grid;
    place-items: center;
}

.wrapper {
    width: min(1100px, 94vw);
    margin: 0 auto;
}

.card {
    background: var(--card);
    border-radius: 22px;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.card.is-gallery {
    padding: 14px;
}

.card.is-text {
    padding: 32px;
    line-height: 1.7;
}

.card h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.card h3 {
    margin-top: 35px;
    margin-bottom: 10px;
    color: white;
}

.card p {
    margin: 0 0 15px;
}

.card ul {
    margin-top: 0;
    margin-bottom: 20px;
}

.card li {
    margin-bottom: 6px;
}

.contact {
    margin-bottom: 30px;
}

.contact strong {
    display: block;
    margin-bottom: 8px;
}

.notice-box {
    margin: 25px 0;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
}

.image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}

#slide {
    display: block;
    width: 100%;
    max-height: calc(76vh - 100px);
    object-fit: contain;
    background: #000;
}

.overlay-btn,
.kiosk-btn {
    position: absolute;
    top: 16px;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: var(--overlay);
    color: white;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    opacity: .35;
    transition: all .2s ease;
}

.overlay-btn {
    right: 16px;
}

.kiosk-btn {
    right: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.image-wrap:hover .overlay-btn,
.image-wrap:hover .kiosk-btn {
    opacity: 1;
}

.overlay-btn:hover,
.kiosk-btn:hover {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    font-size: 0.85rem;
}

.footer {
    display: flex;
    justify-content: flex-end;
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 10px;
}

a {
    color: var(--muted);
}

.site-footer {
    text-align: center;
    margin-top: 18px;
    padding: 0 0 10px;
    color: rgba(255,255,255,.9);
    font-size: 0.9rem;
}

.site-footer a {
    color: rgba(255,255,255,.95);
    text-decoration: none;
}

.site-footer a:hover {
    opacity: .8;
}

.site-footer .separator {
    margin: 0 10px;
    color: rgba(255,255,255,.75);
}

@media (max-width: 700px) {
    .header {
        height: 100px;
        padding: 0 12px;
    }

    .logo {
        left: 12px;
        top: 20px;
        width: 51px;
        height: 70px;
    }

    .header-inner {
        padding-left: 75px;
    }

    h1 {
        font-size: clamp(1rem, 4vw, 1.35rem);
    }

    .subtitle,
    .countdown {
        font-size: 0.75rem;
        line-height: 1.25;
    }

    .wrapper {
        width: 94vw;
    }

    .main {
        padding-top: 18px;
    }

    #slide {
        max-height: calc(76vh - 80px);
    }

    .card.is-text {
        padding: 22px;
    }

    .kiosk-btn {
        top: 12px;
        right: 64px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .overlay-btn {
        top: 12px;
        right: 12px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}
