:root {
    --gallery-bg: #1e1e1e;
    --gold-accent: #eac40d;
    --text-light: #eee;
    --text-muted: #bbbbbb;
    --border-light: rgba(255, 255, 255, 0.1);
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'JetBrains Mono', monospace;
    color: #eee;
    overflow-x: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;

    background-color: #1e1e1e;
    background-image:
            linear-gradient(
                    rgba(0, 0, 0, 0.55),
                    rgba(0, 0, 0, 0.9)
            ),
            url("/images/about-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.about-section {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 10rem 2rem 3rem;

    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin-bottom: 2rem;
}

.about-heading {
    font-size: 1.6rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 100;
}

.about-text {
    max-width: 1000px;
    font-size: 1.05rem;
    line-height: 1.50;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    text-align: justify;
}

.about-text p {
    margin: 0 0 0.6rem;
    line-height: 1.50;
}


@media (max-width: 768px) {
    .about-heading {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-image {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding-top: 4rem;
    }

    .about-heading {
        font-size: 1.6rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-image {
        max-width: 180px;
    }
}
