/*
Theme Name: PMP Coming Soon
Description: A custom coming soon theme for PMP.
Author: Antigravity
Version: 1.0
*/

@font-face {
    font-family: 'Mozaic GEO';
    src: url('fonts/MozaicGEO-Regular.woff2') format('woff2'),
        url('fonts/MozaicGEO-Regular.woff') format('woff'),
        url('fonts/MozaicGEO-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mozaic GEO';
    src: url('fonts/MozaicGEO-SemiBold.woff2') format('woff2'),
        url('fonts/MozaicGEO-SemiBold.woff') format('woff'),
        url('fonts/MozaicGEO-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mozaic GEO';
    src: url('fonts/MozaicGEO-ExtraBold.woff2') format('woff2'),
        url('fonts/MozaicGEO-ExtraBold.woff') format('woff'),
        url('fonts/MozaicGEO-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mozaic GEO';
    src: url('fonts/MozaicGEO-Black.woff2') format('woff2'),
        url('fonts/MozaicGEO-Black.woff') format('woff'),
        url('fonts/MozaicGEO-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mozaic GEO';
    src: url('fonts/MozaicGEO-Light.woff2') format('woff2'),
        url('fonts/MozaicGEO-Light.woff') format('woff'),
        url('fonts/MozaicGEO-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #69FAB5;
    --bg-gradient-start: #110b2a;
    --bg-gradient-end: #5832d2;
    --text-color: #ffffff;
    --subtext-color: #e0e0e0;
}

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

body,
html {
    width: 100%;
    height: 100%;
    font-family: 'Mozaic GEO', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-color);
    overflow: hidden;
    /* prevent scrolling for a static cover page */
}

/* Background Pattern */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><g fill="%23ffffff" opacity="0.05"><path d="M14.5 10.5h1v9h-1v-9z"/><path d="M10.5 14.5h9v1h-9v-1z"/></g></svg>');
    background-size: 30px 30px;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.subtitle {
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 12px;
    color: #e0e0e0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.title {
    font-size: 160px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 130px;
    margin-bottom: 15px;
    margin-top: 40px;
    letter-spacing: -3px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 550px;
    color: var(--subtext-color);
    margin-bottom: 45px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
}

.input-wrapper {
    display: flex;
    gap: 12px;
    max-width: 600px;
}

.input-wrapper input[type="email"] {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-family: 'Mozaic GEO', sans-serif;
    outline: none;
    background-color: #ffffff;
    color: #333;
    transition: box-shadow 0.3s ease;
}

.input-wrapper input[type="email"]::placeholder {
    color: #888;
}

.input-wrapper input[type="email"]:focus {
    box-shadow: 0 4px 20px rgba(105, 250, 181, 0.3);
}

.input-wrapper button {
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: #0b071a;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Mozaic GEO', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.input-wrapper button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 250, 181, 0.4);
}

.input-wrapper button:active {
    transform: translateY(1px);
}

.message {
    margin-top: 15px;
    font-size: 0.9rem;
    display: none;
}

.message.success {
    color: var(--primary-color);
    display: block;
}

.message.error {
    color: #ff6b6b;
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .subtitle {
        line-height: 1.4;
    }

    .title {
        font-size: 100px;
        line-height: 85px;
        letter-spacing: -2px;
        margin-top: 20px;
    }

    .input-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .input-wrapper button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .title {
        font-size: 75px;
        line-height: 65px;
        letter-spacing: -1.5px;
    }

    .subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .description {
        font-size: 14px;
    }
}