/**
 * GVIP PRIVE - Gateway Landing Page Styles
 * @package WoWonder
 */

:root {
    --gold:       #D4AF37;
    --gold-dark:  #8B7355;
    --black:      #000000;
    --dark-1:     #0a0a0a;
    --dark-2:     #141414;
    --text-muted: #555;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; overflow-x: hidden; }

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Background image with waves */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* Dark base with waves image */
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%),
        url("../img/bg-clean.jpg") center center / cover no-repeat fixed #0b0b0b;
}

/* Subtle gold gradient overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.gateway-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 24px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wordmark { margin-bottom: 50px; }
.wordmark img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.alert {
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 16px;
}
.alert-error   { background: rgba(180,40,40,0.4);  border: 1px solid rgba(180,40,40,0.8); color: #ff6b6b; }
.alert-success { background: rgba(40,140,80,0.4);  border: 1px solid rgba(40,140,80,0.8); color: #6bffa0; }

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* The user described the CODE box as the form field */
.form-input {
    width: 300px;
    padding: 16px;
    background: rgba(100, 79, 49, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    outline: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
}

.form-input::placeholder { color: #d6b35d; letter-spacing: 0.1em; font-weight: 300; opacity: 1; }
.form-input:focus { border-color: rgba(212, 175, 55, 0.8); background: rgba(120, 95, 59, 0.95); box-shadow: 0 0 15px rgba(212,175,55,0.4); placeholder: transparent; }
.form-input:focus::placeholder { color: transparent; }

.logo-circle {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}
.logo-emblem {
    width: 100%; height: 100%;
}
/* Crop image square to circle */
.logo-emblem img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 50%; }

.btn-submit {
    display: none; /* Hide button, submit via enter key */
}

.contact-line {
    position: fixed; bottom: 20px; right: 26px;
    font-size: 13px; letter-spacing: 0px;
    color: #bd9f5c; z-index: 20;
    font-family: 'Montserrat', sans-serif;
}
.contact-line a { color: inherit; text-decoration: none; }
.contact-line a:hover { color: #fff; }

@media (max-width: 480px) {
    .gateway-container { padding: 40px 24px; }
    .wordmark img      { max-width: 280px; }
    .logo-circle       { width: 112px; height: 112px; }
    .contact-line      { position: static; text-align: center; padding-top: 32px; }
    .form-input        { width: 240px; font-size: 24px; padding: 12px; }
}
