/*
Theme Name: Oebius Landing
Description: Minimal Pixel Landing Page
Author: Sky
Version: 2.0
*/

@font-face {
    font-family: 'Daydream';
    src: url('fonts/daydream.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Medodica';
    src: url('fonts/medodica.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #212121;
    color: #FFFFFF;
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Medodica', sans-serif;
    -webkit-font-smoothing: none;
}

/* --- LANDING PAGE --- */
.logo-text-container {
    text-align: center;
    user-select: none;
    padding: 20px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.main-title {
    font-family: 'Daydream', sans-serif;
    font-size: clamp(24px, 13vw, 90px);
    margin: 0;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    background: linear-gradient(to right, #B93F7A, #D96296, #E382A9, #EDADD0, #F2C8DF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    font-size: clamp(12px, 3.5vw, 18px);
    margin-top: 15px;
    color: #FFFFFF;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* --- INNER PAGES --- */
.page-container {
    max-width: 800px;
    width: 85%;
    margin: 30px auto 110px auto;
    box-sizing: border-box;
}

.content-box {
    line-height: 1.6;
    font-size: 16px;
}

.content-box h1, .content-box h2, .content-box h3:first-child {
    font-family: 'Daydream', sans-serif;
    color: #E382A9;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.content-box h3:not(:first-child), .content-box h4 {
    color: #EDADD0;
    font-family: 'Medodica', sans-serif;
    font-weight: bold;
    font-variant: small-caps;
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* --- FOOTER --- */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 10px 15px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 1000;
    border-top: 2px solid #333;
    box-sizing: border-box;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 5px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer a {
    color: #EDADD0;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Medodica', sans-serif;
    letter-spacing: 1px;
    white-space: nowrap;
}

.footer-legal a {
    font-size: 9px;
    opacity: 0.5;
}

.footer-sep {
    color: #555;
    font-size: 11px;
    user-select: none;
}

/* --- DESKTOP --- */
@media (min-width: 768px) {
    .footer {
        background: #212121;
        border-top: 1px solid #EDADD0;
        padding: 20px 40px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    .footer-nav {
        width: auto;
        gap: 30px;
    }

    .footer-legal {
        gap: 30px;
    }

    .footer a {
        font-size: 13px;
    }

    .footer-legal a {
        font-size: 11px;
        opacity: 0.6;
    }
}