/**
* Author: AKKI
* For: Yuvi
*/

/*--------------------------------------------------------------
# Variables & Base
--------------------------------------------------------------*/
:root {
    --font-family-primary: 'Noto Sans SC', sans-serif;
    --color-primary: #FFFFFF;
    --brand-green: #84A415;
    
    --text-size-large: 35px; 
    --line-height-large: 1.2;
    --text-size-small: 11px;
}

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

body {
    background-color: var(--brand-green);
    color: var(--color-primary);
    font-family: var(--font-family-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/*--------------------------------------------------------------
# Layout Structure
--------------------------------------------------------------*/
.main-container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    height: auto;
}

.bg-wrapper {
    position: fixed;
    top: 120px;   
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.global-bg-bottom {
    width: 100%;
    height: 100%;
    display: block;
}


.bg-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(132, 164, 21, 1) 0%,     
        rgba(132, 164, 21, 0.8) 20%,   
        rgba(132, 164, 21, 0) 60%      
    );
    z-index: 1;
}

/* --- TOP BAR --- */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    z-index: 10;
}

.logo {
    width: 120px;
    height: auto;
}

.header-container {
    width: 100%;
}

/* --- MAIN CONTENT --- */
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
    z-index: 10;
}

.mobile-break {
    display: none;
}

/* --- FOOTER --- */
.bottom-container {
    padding: 0; 
    text-align: center;
    z-index: 10;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
.text-box-large {
    font-weight: 300;
    font-size: var(--text-size-large);
    line-height: var(--line-height-large);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.text-box-large p {
    font-size: inherit;
    line-height: inherit;
}

.text-box-small {
    font-size: var(--text-size-small);
    line-height: 1.4;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# MOBILE VERSION (FORCED WIDTH TO EDGES)
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .bg-wrapper {
        height: auto;
        bottom: 0;
        display: flex;
        align-items: flex-end;
    }

    .global-bg-bottom {
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
    }

    .top-bar {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 50px;
    }

    .main-content {
        justify-content: center;
        padding-bottom: 60px;
    }

    .main-content.text-box-large {
        font-size: 22px;
    }

    .text-box-large {
        font-size: 28px;
    }

    .text-box-small {
        font-size: 8.5px;
    }
    .mobile-break {
        display: block;
    }
}