/* style.css - Version 1.0 */
/* ---------------------------------------- */

body {
    margin: 0;
    font-family: Bebas-Neue, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #fafafa;
    text-align: center;
    color: #FFF;
    background-image: url('/app/images/PAGE_BG.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
button {
    font-family: Bebas-Neue, sans-serif;
}

h1 {
    font-size: 55px;
}

p {
    font-size: 28px;
}

.content-container {
    max-width: 500px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px
}

img.logo {
    max-width: 220px;
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

button {
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn {
    background: #444;
    color: #fff;
}

.contact-btn:hover {
    background: #222;
}

.buy-btn {
    background: #b30000;
    color: #fff;
}

.buy-btn:hover {
    background: #800000;
}

/* Popup overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
}

.popup {
    padding: 30px;
    max-width: 400px;
    text-align: center;
    background: #33333360;
    border-radius: 16px;
    box-shadow: 0 4px 30px #333333;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.popup h2 {
    margin-top: 0;
}

.popup button {
    margin-top: 20px;
    background: #b30000;
    color: #fff;
}

.popup button:hover {
    background: #800000;
}

.popup img {
    max-width: 100%;
    width: 300px;
    filter: invert(1);
}

@media all and (max-width: 767px) {
    body {
        padding: 20px;
        max-height: 100dvh;
        overflow: hidden;
    }

    h1 {
        font-size: 45px;
    }

    .overlay {
        width: 91vw;
        padding: 20px;
    }

    .popup {
        max-width: 100%;
    }
}