:root {
    /* Farming Green */
    --text-light: #ffffff;
    --accent-gold: #4facff;
    --text-light-color: #45474ecc;
    --text-dark-color: #292525;
    --text-lighter-color: #a3a8bacc;
    --text-accent-on-dark: #4d4f52;
    --panel-dark: #050505;
    --border-dark: #555;
    --shadow-dark: rgba(0, 0, 0, 0.27);

}

a {
    text-decoration: none;
}

h3 {
    font-size: 1.8rem;
}


@font-face {
    font-family: 'Special Gothic';
    src: url('fonts/SpecialGothicExpandedOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/static/Sora-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/static/Sora-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/static/Sora-ExtraBold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/static/Sora-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/static/Sora-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

.company-credo {
    font-family: 'Special Gothic', sans-serif;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 0 1rem #ffffff50;
    font-size: 8rem;
    line-height: 8.1rem;
    text-align: right;
    flex-basis: 70%;
}


.glass-panel {
    /* 1. Semi-transparent background (Alpha) */
    background: rgba(255, 255, 255, 0.1);

    /* 2. The Background Blur */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* For Safari support */

    /* Optional: shadow to give depth */
    box-shadow: 0 8px 12px 0 var(--shadow-dark);

}

.page {
    display: none;
    /* Hide everyone */
}

.page.active {
    display: block;
    /* Show the active one */
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


* {
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-dark-color);
}



body {
    /* background-image: url('images/Back.png'); */
    background: linear-gradient(45deg, var(--accent-gold) 30%, var(--text-light));
    line-height: 1.6;
    background-position: 40%;
    background-size: auto 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main#spa-content {
    flex: 1;
}




.logo {
    height: 100%;
    font-size: 2rem;
    font-family: 'Special Gothic', sans-serif;
    display: flex;
    align-items: center;
}

.description {
    font-size: 1.2rem;
    color: var(--text-dark-color);
    text-align: left;
    flex-basis: 30%;
}

.container {
    max-width: 1100px;
    margin: auto 40px;
}



footer .container {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    max-width: 1100px;

}

/* Header */
.header {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    justify-content: center;
    background: rgb(255 192 79 / 10%);
}

.header .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: stretch;
    height: 100%;
}

.nav-container-top {
    display: flex;
    align-items: center;
}


.nav-container-top a {
    text-decoration: none;
    margin-left: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
    color: var(--text-light-color);
}

.nav-container-top a:hover {
    color: var(--text-dark-color);
}

.nav-container-top a:active,
.nav-container-top a.active {
    color: var(--text-dark-color);
        border-bottom: 2px solid var(--border-dark);
    /* box-shadow: 0 8px 12px 0 var(--shadow-dark); */
}



.hero-content {
    display: flex;
    flex-direction: row;
    min-height: 600px;
    height: 90vh;
    align-items: center;
    vertical-align: middle;
    padding: 0 40px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 60px;
}


.floating-asset {
    position: absolute;

    opacity: 1.0;

    position: absolute;
    z-index: 1;
    /* This makes the movement smooth */
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.valais {
    width: 400px;
    height: auto;
    left: 25%;
    bottom: 0;
}


/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-placeholder {
    background: var(--panel-dark);
    border: 2px solid var(--border-dark);
    padding: 12px 25px;
    border-radius: 10px;
    cursor: not-allowed;
    font-size: 0.9rem;
    color: var(--text-accent-on-dark);
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-placeholder span {
    display: block;
    font-weight: 900;
    color: var(--text-light);
}



.banner-item {
    width: calc(100% - 40px);
    height: 450px;
    padding: 60px 40px;
    margin-bottom: 40px;
    margin-left: 40px;
    border-radius: 50px 0 0 50px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.game-view,
.game-cover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.game-view {
    object-fit: cover;
    /* Acts like background-size: cover */
    z-index: -1;
}

.game-cover {
    cursor: pointer;
    display: block;
}



.banner-overlay {
    position: relative;
    /* Sits above the pseudo-element light */
    z-index: 2;
    width: 100%;
    text-align: center;
}

/* Legal Section */
.legal-section {
    padding: 60px 40px;
}

.terms-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle contrast against black */
    border: 1px solid #333;
    border-radius: 8px;
}


footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding: 20px 0;
    background: var(--panel-dark);
    /* Or your studio color */
    justify-content: center;
}

footer h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-accent-on-dark);
    margin-bottom: 10px;
}

footer a {
    color: var(--text-lighter-color);
}

footer p {
    color: var(--text-lighter-color);
}

.nav-bottom {
    display: flex;
    padding: 20px 40px 60px 40px;
    justify-content: space-between;
}

.nav-container-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.nav-container-bottom a {
    padding: 4px 0;
}

.nav-container-social {}

.company-info {
    margin: 0 40px;
    border-top: 1px solid var(--text-lighter-color);
}

.company-label {
    font-size: 0.8rem;
    margin-top: 10px;
}


.game-logo {
    position: inherit;
    height: 220px;
    margin-bottom: 40px;
    pointer-events: none;
}

.trademark,
.company-label {
    text-align: center;
}

#terms, #privacy {
    padding: 20px 40px;
    max-width: 1100px;
    margin: auto;
}

.contacts-banner {
    background-image: url('images/BackContacts1.png');
    position: relative;
        height: 600px;
    width: 100%;
    background-size: cover;
    background-position: center;

}

.fish1, .fish2 {
    height: 200px;
    width: auto;
}

.fish1 {
top: 160px;
    left: 65%;
}

.fish2 {
left: 20%;
}

#contacts h1 {
    text-align: center;
    margin-top: 20px;
}

.contacts-panels {
    padding: 20px 40px 60px 40px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.contacts-panel {
   
}

.contacts-panel h2 {
    font-size: 1.6rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        justify-content: center;
    }

    .company-credo {
        font-size: 4rem;
        line-height: 4.1rem;
        flex-basis: auto;
        text-shadow: 0 0 1rem #ffffff50;
    }

    .description {
        flex-basis: auto;
    }

    .valais {
        width: 300px;
        height: auto;
        bottom: 0;
        left: 0;
    }

    .header .container {
        flex-direction: column;
        margin: 0;
        max-width: 1100px;
    }

    .logo {
        margin-left: 40px;
    }

    .nav-container-top a {
        font-size: 1rem;
        padding: 3px 0px;
        margin: 0;
        flex: 1;
        justify-content: center;
    }

   

    .game-logo {
        width: 100%;
        margin-bottom: 8px;
        height: auto;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .btn-placeholder {
        width: fit-content;
    }

    footer .container {
        width: auto;
    }

    .nav-bottom {
        flex-direction: column;
    }

    .fish1, .fish2 {
    height: 150px;
    width: auto;
}

.fish1 {
     right: 10%;
        top: auto;
        bottom: 10%;
        top: auto;
        left: auto;
}
}