:root {
    --primary-hue: 260;
    /* Purple/Lavender base */
    --secondary-hue: 320;
    /* Pink/Rose base */
    --accent-gold: #d4af37;
    --text-dark: #1e1e2f;
    --text-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: #0f172a;
    color: var(--text-light);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Fluid Background (Resin Art Effect) */
.fluid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Subtle animation for depth */
@keyframes subtleZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.fluid-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    animation: subtleZoom 30s ease-in-out infinite;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    /* Slightly darker for better text readability */
    backdrop-filter: blur(10px);
    z-index: -1;
}

/* Container */
.wrapper {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 4.5rem;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    text-align: center;
    max-width: 850px;
    width: 100%;
    animation: fadeIn 1s ease-out;
    position: relative;
}

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

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


/* Header */
.brand-header {
    margin-bottom: 3rem;
    text-align: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
}

/* Content */
.content {
    text-align: center;
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: italic;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Coming Soon */
.coming-soon-container {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    text-align: center;
}

.coming-soon-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    letter-spacing: 0.05em;
    animation: gentleGlow 3s ease-in-out infinite;
}

@keyframes gentleGlow {

    0%,
    100% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }

    50% {
        text-shadow: 0 0 50px rgba(212, 175, 55, 0.8);
    }
}

/* Form */
.notify-section {
    margin-bottom: 3rem;
    text-align: center;
}

.notify-text {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.email-form {
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

input[type="email"] {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 140px;
    /* Space for button */
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 1.5rem;
    border-radius: 40px;
    border: none;
    background: var(--accent-gold);
    color: #000;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #deb841;
    transform: scale(1.02);
}

.form-message {
    height: 1.5em;
    /* Reserve space */
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #4ade80;
}

/* Footer */
.social-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 0.5rem;
}

.social-icon {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-container {
        padding: 2.5rem 2rem;
        max-width: 90%;
    }

    .main-heading {
        font-size: 2rem;
    }

    .logo {
        font-size: 2.5rem;
    }



    .coming-soon-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .glass-container {
        padding: 2rem 1.5rem;
    }



    .logo {
        font-size: 2rem;
    }

    .main-heading {
        font-size: 1.5rem;
    }

    .coming-soon-text {
        font-size: 1.5rem;
    }

    input[type="email"] {
        padding-right: 1.5rem;
        margin-bottom: 1rem;
    }

    .input-wrapper {
        flex-direction: column;
    }

    .submit-btn {
        position: static;
        width: 100%;
        padding: 0.8rem;
    }
}