/* ============================================
   Under The Sea — Photo Booth
   index.css  |  landing page only
   ============================================ */

/* ── MAIN CONTENT ─────────────────────────── */
.content {
    position: relative; z-index: 10;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    min-height: 100vh;
    padding: 40px 20px 160px;
    text-align: center;
}

/* ── TITLE ────────────────────────────────── */
.title-wrap {
    margin-bottom: 10px;
    animation: fadeDown 1s ease both;
}
.subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,.95);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 8px;
    animation: fadeDown 1s .2s ease both;
    text-shadow: 0 2px 8px rgba(91,163,229,.4);
}
h1 {
    font-family: 'Baloo 2', cursive; font-weight: 800;
    font-size: clamp(3rem, 9vw, 6rem);
    color: white; line-height: 1;
    text-shadow: 0 4px 20px rgba(91,163,229,.4), 0 2px 0 rgba(91,163,229,.3);
    margin-bottom: 6px;
    animation: fadeDown 1s .3s ease both;
}
h1 span {
    color: var(--sand);
    text-shadow: 0 4px 20px rgba(237,217,163,.4), 0 2px 0 rgba(200,170,100,.3);
}
.tagline {
    font-size: 1.1rem; color: rgba(255,255,255,.9);
    margin: 16px 0 40px;
    animation: fadeDown 1s .5s ease both;
}

/* ── BOOTH PREVIEW CARD ───────────────────── */
.booth-card {
    padding: 28px 32px;
    width: min(420px, 90vw);
    animation: fadeUp 1s .6s ease both;
    margin-bottom: 32px;
}
.strip-preview {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 24px;
}
.photo-slot {
    height: 100px;
    background: rgba(255,255,255,.4);
    border-radius: 12px;
    border: 2px dashed rgba(255,255,255,.7);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); font-size: 2rem;
}
.strip-label {
    font-family: 'Baloo 2', cursive; font-size: .85rem; font-weight: 600;
    color: white; opacity: .7;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 12px;
}
.btn-group {
    display: flex; flex-direction: column; gap: 12px; width: 100%;
}
.btn-group .btn { font-size: 1.1rem; padding: 14px 32px; }

/* ── CREDIT ───────────────────────────────── */
.credit {
    position: fixed; bottom: 20px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Baloo 2', cursive;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dark, #3A7CA5);
    z-index: 10;
    letter-spacing: 2px;
    opacity: 0.85;
    white-space: nowrap;
}
/* ── PHOTO COUNT PICKER ───────────────────── */
.picker-label {
    font-family: 'Baloo 2', cursive; font-size: .95rem; font-weight: 600;
    color: white; opacity: .9;
    margin-bottom: 10px; text-align: center;
}
.count-picker {
    display: flex; gap: 10px; justify-content: center;
    margin-bottom: 20px;
}
.count-btn {
    font-family: 'Baloo 2', cursive; font-size: 1rem; font-weight: 700;
    background: rgba(255,255,255,.25);
    color: white; border: 2px solid rgba(255,255,255,.5);
    border-radius: 50px; padding: 10px 28px;
    cursor: pointer; transition: all .2s;
}
.count-btn:hover {
    background: rgba(255,255,255,.4);
    border-color: white;
    transform: translateY(-2px);
}
.count-btn.active {
    background: white;
    color: var(--text);
    border-color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}