/* GENERAL STYLES */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500&family=Inter:wght@400;700&display=swap');

:root {
    --bg-color: #000000;
    --text-white: #FFFFFF;
    --text-gray: #BBBBBB;
    --flame-start: #FFB300;
    --flame-end: #FF4500;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hand-left, .hand-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 60vh;
    width: auto;
    z-index: 1;
    filter: invert(1);
    background-color: #454545;
}

.hand-left {
    left: 3%;
}

.hand-right {
    right: 3%;
}

.flame {
    position: absolute;
    width: 80px;
    height: 120px;
    z-index: 10;
    transform-origin: bottom center;
    animation: flicker 3s infinite linear;
}

@keyframes flicker {
    0%, 100% { transform: scale(1, 1) skewX(0); opacity: 1; }
    25% { transform: scale(1.05, 0.95) skewX(5deg); opacity: 0.95; }
    50% { transform: scale(0.98, 1.02) skewX(-5deg); opacity: 1; }
    75% { transform: scale(1.02, 0.98) skewX(2deg); opacity: 0.9; }
}

.title-container {
    text-align: center;
    z-index: 5;
    position: relative;
}

.main-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    color: #BBBBBB;
    mix-blend-mode: screen;
    padding: 0 2rem;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

/* QUOTE SECTION */
.quote-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
    text-align: center;
}

.quote-text {
    font-size: 2.5rem;
    font-weight: bold;
    max-width: 800px;
    color: #BBBBBB;
}

/* GRID SECTION */
.grid-section {
    padding: 5rem 2rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-item .caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: var(--text-white);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.grid-item:hover .caption {
    opacity: 1;
}

/* FOOTER */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 100;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .quote-text {
        font-size: 1.8rem;
    }

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

    .hand-left, .hand-right {
        display: none;
    }
    
    .flame {
        opacity: 0.8;
        width: 60px;
        height: 90px;
    }
} 