:root {
    --color-marron: #2A0813;
    --color-pink: #f2c9f8;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #777777;
    
    --font-primary: "Optima", "Segoe UI", "Helvetica Neue", sans-serif;
    --font-secondary: "Poppins", sans-serif;
    --font-display: "Buffalo", "Optima", serif;
}

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

body {
    background-color: var(--color-marron);
    color: var(--color-white);
    font-family: var(--font-primary);
    overflow: hidden; /* Hide scrollbars for coming soon page */
    position: relative;
    min-height: 100vh;
}

.page-border {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(242, 201, 248, 0.2);
    pointer-events: none;
    z-index: 100;
}



.background-container {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(42, 8, 19, 0.5) 0%, rgba(42, 8, 19, 0.95) 100%);
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 8%; /* Large padding to clear header/footer */
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Header & Logo */
.header {
    position: absolute;
    top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 0.8s ease forwards 0.2s;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.logo-img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(242, 201, 248, 0.4));
}

.logo-underline {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-pink), transparent);
}

.logo-tagline {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray);
    margin-top: 10px;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* Gaps managed by margins for precision */
}

.tagline {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-pink);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards 0.4s;
    max-width: 700px;
}

.headline {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--color-white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards 0.6s;
    max-width: 800px;
}

.description {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards 0.8s;
    max-width: 600px;
}

/* Form */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards 1s;
}

.notify-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    width: 320px;
    border-radius: 30px;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notify-form input:focus {
    border-color: var(--color-pink);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(242, 201, 248, 0.2);
}

.notify-form input::placeholder {
    color: var(--color-gray);
}

.btn {
    background: var(--color-pink);
    color: var(--color-marron);
    border: none;
    padding: 16px 36px;
    border-radius: 30px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 40px;
    width: 100%;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.4s;
}

.socials a {
    color: var(--color-gray);
    text-decoration: none;
    margin-right: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem; /* Adjust icon size */
}

.socials a i {
    vertical-align: middle;
}

.socials a:hover {
    color: var(--color-pink);
    transform: translateY(-3px);
}

.copyright {
    color: var(--color-gray);
}

/* Promo Reveal Styles */
.form-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-reveal.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.promo-label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray);
    margin-bottom: 10px;
    display: block;
}

.promo-code {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-pink);
    letter-spacing: 10px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(242, 201, 248, 0.3);
}

.promo-desc {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-white);
    font-style: italic;
}

.notify-form.hidden {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .headline { font-size: 3.5rem; }
    .content { padding: 100px 6%; }
}

@media (max-width: 768px) {
    .page-border {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .content { 
        padding: 80px 6%; 
        justify-content: center;
    }
    
    .header { top: 30px; }
    .logo-img { width: 180px; }
    
    .tagline { font-size: 0.75rem; letter-spacing: 4px; margin-bottom: 20px; }
    .headline { font-size: 2.8rem; margin-bottom: 20px; }
    .description { font-size: 1rem; margin-bottom: 40px; }
    
    .notify-form { 
        flex-direction: column; 
        align-items: stretch; 
        width: 100%; 
        max-width: 350px;
    }
    .notify-form input { width: 100%; margin-bottom: 12px; padding: 14px 20px; }
    .btn { padding: 14px; width: 100%; }

    .promo-code { font-size: 2.2rem; letter-spacing: 4px; }
    .form-reveal-wrapper { min-height: 100px; }
    
    .footer { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
        bottom: 30px;
    }
    .socials a { margin: 0 10px; font-size: 0.75rem; }
    .copyright { font-size: 0.7rem; }
}

@media (max-width: 480px) {
    .headline { font-size: 2.2rem; }
    .logo-img { width: 150px; }
    .content { padding-top: 100px; padding-bottom: 80px; }
    .page-border {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
    }
}
