/*
   Meeple Dates - About Us
   Card Stack / Deck Building theme
*/

:root {
    --c-primary: #3A3A57;
    --c-secondary: #84C8C6;
    --c-accent: #C751C0;
    --font-main: 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    margin: 0;
    padding-top: var(--header-height);
    font-family: var(--font-main);
    background: #1a1a2e;
    color: white;
}

/* Hero Intro */
.hero-intro {
    text-align: center;
    padding: 4rem;
    color: white;
}

.hero-intro h1 {
    font-size: 3rem;
    color: white;
}

/* Deck Container */
.deck-container {
    max-width: 37.5rem;
    margin: 0 auto;
    padding-bottom: 10vh;
}

/* Cards */
.card {
    position: sticky;
    top: 10vh;
    height: 80vh;
    background: white;
    color: var(--c-primary);
    border-radius: 1.875rem;
    padding: 3rem;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Card Variations */
.card:nth-child(1) { background: #fff; transform: rotate(-2deg); }
.card:nth-child(2) { background: #f0fdf4; transform: rotate(1deg); top: 12vh; }
.card:nth-child(3) { background: #fff5f5; transform: rotate(-1deg); top: 14vh; }
.card:nth-child(4) { background: #fdf0f6; transform: rotate(2deg); top: 16vh; }
.card:nth-child(5) { background: var(--c-primary); color: white; top: 18vh; transform: rotate(0deg); }
.card:nth-child(5) h2 { color: var(--c-secondary); }
.card:nth-child(5) p { color: rgba(255,255,255,0.8); }

.icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 25rem;
}

.card-header {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    opacity: 0.5;
    font-size: 0.8rem;
}

.card-header--light {
    color: rgba(255,255,255,0.5);
}

.btn {
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: var(--c-accent);
    color: white;
    text-decoration: none;
    border-radius: 3.125rem;
    font-weight: bold;
}

/* Bottom Spacer */
.bottom-spacer {
    height: 20vh;
}
