/* Main Stylesheet for Digital Umami Website */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "grenadine-mvb", sans-serif;
    font-weight: 300;
    font-style: normal;
    height: 100vh;
    background: #000;
    color: white;
    overflow: hidden;
    position: relative;
}

h1 {
    font-family: "grenadine-mvb", sans-serif;
    font-weight: 350;
    font-style: normal;
}

/* Background Image Container */
.background-image {
    position: fixed;   /* keeps it behind everything */
     top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;       /* pushes it behind */
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
    /*position: relative;*/
}

/* Background Image Element */
.background-image img {
    width: auto;
    height: auto;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
} */

/* Fallback background if image doesn't load */
.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    z-index: -1;
    display: block;
}

/* Bokeh Effect */
.bokeh-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.bokeh {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(2px);
}

.bokeh-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.bokeh-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.66) 0%, transparent 70%);
    top: 70%;
    right: 20%;
    animation-delay: 2s;
}

.bokeh-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.498) 0%, transparent 70%);
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.bokeh-4 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.847) 0%, transparent 70%);
    top: 20%;
    right: 40%;
    animation-delay: 1s;
}

.bokeh-5 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.logo {
    height: 40px;
    width: auto;
}

.gamelogo {
    height: 50%;
    width: 50%;
    object-fit: scale-down;
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 100;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* Signup Box */
.signup-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 750px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 112, 165, 0.2);
    border: 1px solid rgba(255, 112, 165, 0.1);
    color: #000;
    opacity: 0.95;
}

.signup-box h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: -0.02em;
}

.signup-box p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

.consent-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

.consent-text a {
    color: #ff70a5;
    text-decoration: none;
}

.consent-text a:hover {
    text-decoration: underline;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.email-input {
    padding: 18px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: #ff70a5;
    box-shadow: 0 0 0 3px rgba(255, 112, 165, 0.1);
}

.signup-btn {
    padding: 18px 20px;
    background: #ff70a5;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.signup-btn:hover {
    background: #e55a8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 112, 165, 0.3);
}

.signup-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 25px 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #ff70a5;
}

.footer-buttons {
    display: flex;
    gap: 15px;
}

.footer-btn {
    padding: 8px 16px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-btn:hover {
    background: rgba(255, 112, 165, 0.1);
    border-color: #ff70a5;
    color: #ff70a5;
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) translateX(10px); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) translateX(-5px); 
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) translateX(15px); 
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .signup-box {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .signup-box h1 {
        font-size: 2rem;
    }

    .signup-box p {
        font-size: 1rem;
    }

    footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-buttons {
        justify-content: center;
    }

    header {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .signup-box {
        padding: 30px 20px;
    }

    .signup-box h1 {
        font-size: 1.8rem;
    }

    .email-form {
        gap: 15px;
    }

    .email-input,
    .signup-btn {
        padding: 15px 18px;
    }
}