:root {
    --primary-color: #e91e63;
    --secondary-color: #f8bbd0;
    --accent-color: #880e4f;
    --text-dark: #2c3e50;
    --text-light: #718096;
    --bg-light: #fdf2f8;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 2rem 0;
    animation: fadeInDown 1s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
}

.logo svg {
    animation: rotate 20s linear infinite;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
    padding: 3rem 0;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(103, 126, 234, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.countdown {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.countdown-item {
    text-align: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 80px;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.countdown-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}


.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.flower-animation {
    position: relative;
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.petal {
    position: absolute;
    width: 80px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50% 50% 50% 0;
    opacity: 0.8;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
}

.petal-1 {
    transform: rotate(0deg) translate(-40px, -100px);
    animation: sway 3s ease-in-out infinite;
}

.petal-2 {
    transform: rotate(60deg) translate(-40px, -100px);
    animation: sway 3s ease-in-out infinite 0.5s;
}

.petal-3 {
    transform: rotate(120deg) translate(-40px, -100px);
    animation: sway 3s ease-in-out infinite 1s;
}

.petal-4 {
    transform: rotate(180deg) translate(-40px, -100px);
    animation: sway 3s ease-in-out infinite 1.5s;
}

.petal-5 {
    transform: rotate(240deg) translate(-40px, -100px);
    animation: sway 3s ease-in-out infinite 2s;
}

.petal-6 {
    transform: rotate(300deg) translate(-40px, -100px);
    animation: sway 3s ease-in-out infinite 2.5s;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    z-index: 10;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
    animation: fadeInUp 1s ease;
}

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
}

footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer p {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(103, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(103, 126, 234, 0.4);
    }
}

@keyframes sway {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .form-group {
        flex-direction: column;
    }

    .flower-animation {
        width: 200px;
        height: 200px;
    }

    .petal {
        width: 60px;
        height: 90px;
    }

    .center {
        width: 40px;
        height: 40px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}