:root {
    --reference-width: 1920px;
    --gradient-start: #003460;
    --gradient-mid: #6034a1;
    --gradient-end: #710185;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    position: relative;
    background: url('images/background_logo.png');
    background-size: 100%;
    background-position: center;
    background-attachment: scroll;
    background-repeat: repeat-y;
}

/* Gradient overlay that tints the background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    background: linear-gradient(
        to bottom,
        var(--gradient-start) 0%,
        var(--gradient-start) 14%,
        var(--gradient-mid) 62%,
        var(--gradient-end) 100%
    );
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
    position: relative;
}

.about-section {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3vw 12vw;
    text-align: center;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.0vw;
    font-weight: 600;
    color: #d3d2d2;
    margin-top: 1vw;
    margin-bottom: 3.0vw;
    letter-spacing: -1px;
    white-space: nowrap;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75vw;
    font-weight: 510;
    letter-spacing: -0.8px;
    color: #d3d2d2;
    max-width: none;
    line-height: 1.15;
    margin-bottom: 2.0vw;
    white-space: nowrap;
    /*padding: 1vw 2vw;*/
}

.about-text p {
    margin: 0.3vw 0;
    text-align: center;
}

.contact-button {
    margin: 1.0vw 0vw;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.7vw;
    font-weight: 550;
    letter-spacing: -0.5px;
    color: #384b76;
    background-color: #d3d2d2;
    padding: 1.5vw 2.0vw;
    border-radius: 10vw;
    text-decoration: none;
    line-height: 1;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button:hover {
    background-color: white;
    transform: scale(1.05);
}

.artboard-section {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5vw;
    padding: 0vw 5vw;
}

.artboard-preview {
    width: 31vw;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.artboard-preview:hover {
    transform: scale(1.02);
}

/* Individual artboard vertical positioning */
.artboard-01 {
    margin-top: 13vw;
}

.artboard-02 {
    margin-top: 0vw;
}

.artboard-03 {
    margin-top: 7vw;
}

.footer-section {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5vw 0vw;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.6vw;
    font-weight: 510;
    color: #d3d2d2;
    margin-bottom: 3.5vw;
    letter-spacing: 0.5px;
}
