:root {
    --color-cream: #F5F1E8;
    --color-base: #ffffff;
    --color-primary: #f9517e;
    --color-body: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    /* background: var(--color-base); */
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(166, 4, 45, 0.02) 100px, rgba(196, 61, 61, 0.02) 200px);
    color: var(--color-cream);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Animated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(166, 4, 45, 0.02) 100px, rgba(196, 61, 61, 0.02) 200px); */
    animation: slidePattern 60s linear infinite;
    pointer-events: none;
}

@keyframes slidePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(200px) translateY(200px); }
}

/* Floating decorative elements */
.deco-circle {
    position: fixed;
    border: 1px solid #f9517e;
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.deco-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.deco-circle:nth-child(2) {
    width: 50px;
    height: 50px;
    bottom: -50px;
    left: -30px;
    animation-delay: -7s;
}

.deco-circle:nth-child(3) {
    width: 20px;
    height: 20px;
    top: 40%;
    left: 10%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 1;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1;
    animation: fadeInUp 1.2s ease-out;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    margin: 2rem auto;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

.coming-soon {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0;
    color: #000;
    animation: fadeInUp 1.2s ease-out 0.9s forwards;
}

.description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 600px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #222;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 1.2s forwards;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 1.5s forwards;
}

.input-wrapper {
    position: relative;
}

input[type="email"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    background: rgba(245, 241, 232, 0.05);
    border: 1px solid #f9517e;
    color: #222;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

input[type="email"]::placeholder {
    color: #222;
}

button {
    padding: 1.2rem 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--color-primary);
    color: var(--color-base);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

button:hover::before {
    width: 300px;
    height: 300px;
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 1.8s forwards;
}

.social-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.social-links a:hover::after {
    width: 100%;
}

.social-links a:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success message */
.success-message {
    display: none;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    text-align: center;
    margin-top: 1rem;
    animation: slideIn 0.4s ease-out;
}

.success-message.show {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .notify-form {
        gap: 0.8rem;
    }

    .social-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.toast {
	opacity: 1 !important;
}
