:root {
    /* Color Palette */
    --color-primary: #FF8901;
    --color-secondary: #F9AF25;
    --color-dark: #241A0B;
    --color-light-gray: #F5F5F5;
    --color-white: #FFFFFF;

    /* Text Size */
    --h1-size: 2.4rem;
    --h2-size: calc(var(--h1-size) * (45 / 60));
    --h3-size: calc(var(--h1-size) * (38 / 60));
    --h4-size: calc(var(--h1-size) * (33 / 60));
    --p-size: calc(var(--h1-size) * (33 / 60));

    /* Layout & Spacing */
    --max-width: 1000px;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 20px rgba(36, 26, 11, 0.08);

    --main-padding-x: 4rem;
}

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

body {
    line-height: 1.6;
    font-family: Arial, "Segoe UI", Roboto, sans-serif;

    color: var(--color-text);
    background-color: var(--color-light-gray);

    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

body.no-scroll {
    overflow: hidden;
}

main {
    width: 100%;
    max-width: var(--max-width);

    padding: 2rem var(--main-padding-x);
    margin: 0 auto;
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

h1 {
    font-size: var(--h1-size);
    line-height: 1.5;

    font-weight: bolder;
    font-family: 'Sigurd heavy', Georgia, serif, Arial;
}

h2 {
    font-size: var(--h2-size);
    line-height: 1.5;

    font-weight: bolder;
    font-family: 'Sigurd heavy', Georgia, serif, Arial;
}

h3 {
    font-size: var(--h3-size);
    line-height: 1.5;

    font-weight: bolder;
    font-family: 'Sigurd Bold', Georgia, serif, Arial;

    margin-bottom: 0.5rem;
}

h4 {
    font-size: var(--h4-size);
    line-height: 1.5;
    font-family: Georgia, serif, Arial;
    font-style: italic;
}

p {
    font-size: var(--p-size);
    line-height: 1.5;
    font-family: Arial;
    text-align: justify;

    margin-bottom: 3rem;

    word-break: keep-all;
}

.image-container {
    width: 80%;
    height: auto;

    margin: 3rem 10%;
}

.gallery-container {
    width: calc(100% + 2 * var(--main-padding-x));
    height: auto;

    margin: 3rem calc(-1 * var(--main-padding-x));
}

.image-container img,
.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 992px) {
    :root {
        --h1-size: 2rem;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --h1-size: 1.8rem;
    }

    p {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --main-padding-x: 2rem;
    }
}