/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@400;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #1B1235; 
    color: #F2D49B;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

.container {
    text-align: center;
    z-index: 1;
    max-width: 600px;
    padding: 20px;
}

/* Logo */
.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

/* Coming Soon headline */
.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(242, 212, 155, 0.5);
}

.coming-soon .dot:nth-child(1) {
    animation: dot1 3s infinite;
}

.coming-soon .dot:nth-child(2) {
    animation: dot2 3s infinite;
}

.coming-soon .dot:nth-child(3) {
    animation: dot3 3s infinite;
}

@keyframes dot1 {
    0%, 25% {
        opacity: 0;
    }
    26%, 100% {
        opacity: 1;
    }
}

@keyframes dot2 {
    0%, 50% {
        opacity: 0;
    }
    51%, 100% {
        opacity: 1;
    }
}

@keyframes dot3 {
    0%, 75% {
        opacity: 0;
    }
    76%, 100% {
        opacity: 1;
    }
}

/* Tagline */
.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-style: italic;
}

/* Email form */
.email-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.email-form input {
    background-color: #1A1531;
    border: 2px solid #F2D49B;
    color: #F2D49B;
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
    outline: none;
}

.email-form input::placeholder {
    color: #FFFFFF;
}

.email-form button {
    background-color: #F2D49B;
    color: #1A1531;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-form button:hover {
    background-color: #e0c08a;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Social icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a {
    color: #F2D49B;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e0c08a;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.social-icons svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #F2D49B;
    stroke-width: 2;
}

/* Sparkles container */
#sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #F2D49B;
    border-radius: 50%;
    box-shadow: 0 0 6px #F2D49B;
    animation: twinkle infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        max-width: 100%;
    }

    .logo {
        margin-bottom: 30px;
        max-width: 80%;
    }

    .coming-soon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .email-form {
        gap: 15px;
        margin-bottom: 30px;
    }

    .email-form input,
    .email-form button {
        padding: 12px;
        font-size: 1rem;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icons svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .logo {
        max-width: 70%;
    }
}
