:root {
    --bg-color: #f5f0e8;
    --bg-dark: #2c2420;
    --text-font: "Bungee", sans-serif;
    --text-font-body: "Markazi Text", serif;
    font-weight: normal;
    --text-color: #2c2420;
    --text-light: #f5f0e8;
    --accent: #8b5e3c;
    --accent-dark: #5c3d1e;
    --card-bg: #ede4d3;
    --card-border: #c4a882;
    --muted: #7a6652;
    --forest: #3a5a40;
}

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

body {
    background-color: var(--bg-color);
    background-attachment: fixed;
    font-family: var(--text-font);
    min-height: 100dvh;
    color: var(--text-color);
}

/* ── HERO ── */
.hero_section {
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100dvh;
    padding-top: 3vh;
}

.header {
    margin-top: 5vh;
    margin-bottom: 7vh;
    font-size: clamp(1rem, 8vw, 5rem);
    color: var(--accent-dark);
    letter-spacing: 0.04em;
    text-align: center;
}

/* ── PROJECT CARDS GRID ── */
.project_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
}

.project_card {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 250px;
    background-color: var(--card-bg);
    border: 4px solid var(--card-border);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-light);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    position: relative;
}

.project_card h1 {
    position: relative;
    z-index: 2;
    padding: 0.6rem 1.2rem;
    background-color: rgba(44, 36, 32, 0.72);
    border-radius: 0 0 16px 16px;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    width: 100%;
    text-align: center;
    -webkit-text-stroke: 0px;
}

.project_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 36px rgba(44, 36, 32, 0.22);
}

.card1 {
    background-image: url(images/GetBigManImage.png);
    background-position: center center;
    background-size: cover;
}

.card1:hover {
    background-image: url(images/GetBigManGif.gif);
}

.card2 {
    background-image: url(images/Mp4.png);
    background-size: cover;
    background-position: center;
}

/* ── CARD 3: Coming Soon ── */
.card3 {
    background-color: #d9ccb8;
    border: 4px dashed var(--card-border);
    flex-direction: column;
    gap: 0.5rem;
}

.card3 h1 {
    background: none;
    color: var(--muted);
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 0;
    width: auto;
}

.card3-icon {
    font-size: 2.8rem;
    z-index: 2;
    position: relative;
}

/* ── DESCRIPTIONS ── */
.descriptions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin-top: 2.5vh;
    margin-bottom: 5vh;
    text-align: center;
    font-family: var(--text-font-body);
}

.description {
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    width: 100%;
    line-height: 1.85;
    font-size: 1.2rem;
    color: var(--muted);
}

.desc3 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-border);
    font-size: 1rem;
    font-family: var(--text-font);
    letter-spacing: 0.08em;
}

/* ── GAME EMBED ── */
iframe {
    width: 100%;
    max-width: 980px;
    max-height: 100vh;
    aspect-ratio: 980 / 640;
    height: auto;
}

.getBigMan {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .header {
        margin-bottom: 5vh;
    }
}

@media (max-height: 800px) {
    .getBigMan {
        padding: 1rem;
    }
}