:root {
    --primary: #8f2f4b;
    --dark: #1f1f1f;
    --light: #faf8f5;
    --muted: #777;
    --radius: 18px;
}
@font-face {
    font-family: 'Across';
    src: url('../fonts/acros/AcrosstheRoad.eot');
    src: url('../fonts/acros/AcrosstheRoad.eot?#iefix') format('embedded-opentype'),
    url('../fonts/acros/AcrosstheRoad.woff') format('woff'),
    url('../fonts/acros/AcrosstheRoad.ttf') format('truetype'),
    url('../fonts/acros/AcrosstheRoad.svg#AcrosstheRoad') format('svg');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* ===== LAYOUT ===== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem;
}

/* ===== HEADER ===== */

.site-header {
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: Across, sans-serif;
    font-size: 3.75rem;
    font-weight: 600;
    color: var(--primary);
}
.logo img {
    height: 7.25rem;
    width: auto;
    display: block;
}

.lang-switch {
    font-weight: 500;
    cursor: pointer;
}

/* ===== INTRO ===== */

.intro {
    text-align: center;
    padding: 3rem 1.25rem 2rem;
}

.intro h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.intro p {
    color: var(--muted);
    font-size: 1.1rem;
}

/* ===== CHOICES ===== */

.choices {
    display: grid;
    gap: 2rem;
    padding: 2rem 1.25rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.choice-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 260px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Backgrounds (replace images if you want) */

.gifts {
    background: linear-gradient(
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.35)
    ),
    url("../images/gifts.png") center/cover no-repeat;
}

.stamps {
    background: linear-gradient(
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.35)
    ),
    url("../images/stamps.png") center/cover no-repeat;
}

.choice-content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.choice-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.choice-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.choice-btn {
    align-self: flex-start;
    background: var(--primary);
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */

.site-footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

/* ===== DESKTOP ===== */

@media (min-width: 768px) {

    .intro h1 {
        font-size: 2.75rem;
    }

    .choices {
        grid-template-columns: 1fr 1fr;
    }

    .choice-content {
        padding: 2.75rem;
        max-width: 75%;
    }

}

.intro {
    text-align: center;
    padding: 4rem 1.5rem 3rem;
}

.intro h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.intro p {
    font-size: 1.05rem;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
}

.choice-content {
    padding: 2.25rem;
    max-width: 90%;
}

.choice-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.choice-content p {
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0.9;
    margin-bottom: 1.4rem;
}

.choice-btn {
    background: #8f2f4b;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.choices {
    gap: 2rem;
    padding: 2.5rem 1.5rem 4rem;
}

@media (min-width: 1024px) {
    .choices {
        gap: 2.5rem;
    }
}

.choice-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.choice-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}


.gifts,
.stamps {
    position: relative;
}

.gifts::before,
.stamps::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.15)
    );
}
