/* Variables */
:root {
    --color-white: #FFF;
    --color-gold: #EEAD12;
    --font-anton: 'Anton', sans-serif;
    --font-antonio: 'Antonio', sans-serif;
}

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

/* Background Configuration */
body {
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    font-family: var(--font-antonio);
    overflow: hidden;
    position: relative;
}

/* Linear Gradient Overlay as requested */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(4, 4, 4, 0.80) 0%, rgba(4, 4, 4, 0.48) 50%, rgba(4, 4, 4, 0.80) 100%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 40px 20px;
    text-align: center;
}

/* Logo - 244.276px x 140px on 1920px screen */
.header {
    margin-top: 2vh;
}

.main-logo {
    width: 12.72vw; /* ~244.276px at 1920 viewport */
    height: 7.29vw; /* ~140px at 1920 viewport */
    min-width: 180px; 
    min-height: 103px;
    object-fit: contain;
    display: block;
}

/* Headline - Max-width 1428.732px; font Anton */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.headline {
    width: 74.41vw; /* ~1428.732px at 1920 viewport */
    max-width: 95%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.headline span {
    font-family: var(--font-anton);
    /* Size 135.211px at 1920 screen */
    font-size: clamp(2.5rem, 7.042vw, 135.211px);
    line-height: clamp(3rem, 8.333vw, 160px);
    letter-spacing: 0.141vw; 
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    display: block;
}

.text-white {
    color: var(--color-white);
}

.text-gold {
    color: var(--color-gold);
}

/* Footer Section: 1000px x 56px; Font Antonio; Size 22px; */
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3vh;
}

.footer-wrapper {
    width: 52.08vw; /* ~1000px at 1920 viewport */
    max-width: 90%;
    min-height: 56px;
}

.footer-text {
    color: var(--color-white);
    font-family: var(--font-antonio);
    /* Size 22px on 1920 viewport */
    font-size: clamp(0.9rem, 1.146vw, 22px);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.0917vw; 
    text-transform: capitalize;
    text-align: center;
    opacity: 0.5;
}

/* Mobile Adjustments for very small screens */
@media screen and (max-width: 768px) {
    .container {
        padding: 20px 10px;
    }
    
    .main-logo {
        width: 160px;
        height: auto;
    }

    .headline span {
        line-height: 1.2;
    }

    .footer-wrapper {
        width: 100%;
    }
}