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

:root {
    /* Rosa Care Color Palette */
    --rosa-pink: #e72177;
    --rosa-purple: #862b90;
    --rosa-olive: #798645;
    --rosa-dark-gray: #545759;
    --rosa-light-gray: #bdc4c8;
    --rosa-beige: #c2b582;
}

body {
    font-family: 'Alexandria', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #fafafa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeIn 1.2s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(231, 33, 119, 0.2));
}

.heading {
    font-family: 'Alexandria', sans-serif;
    font-weight: 300;
    font-size: 4rem;
    color: var(--rosa-dark-gray);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.tagline {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--rosa-purple);
    margin-bottom: 2rem;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.description {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-family: 'Alexandria', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--rosa-dark-gray);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.description p {
    margin-bottom: 1rem;
}

.description p:last-child {
    margin-bottom: 0;
}

.divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rosa-pink), transparent);
    margin: 3rem auto;
    animation: fadeIn 1s ease-out 0.9s both;
}

.coming-soon-text {
    font-family: 'Alexandria', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--rosa-olive);
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease-out 1.1s both;
}

/* Contact Section */
.contact-section {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(231, 33, 119, 0.1);
    animation: fadeInUp 1s ease-out 1.3s both;
}

.contact-heading {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--rosa-dark-gray);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.contact-subtitle {
    font-family: 'Alexandria', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--rosa-dark-gray);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: 'Alexandria', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--rosa-dark-gray);
    background: #ffffff;
    border: 2px solid var(--rosa-light-gray);
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--rosa-pink);
    box-shadow: 0 0 0 3px rgba(231, 33, 119, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--rosa-light-gray);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 1rem 2.5rem;
    font-family: 'Alexandria', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rosa-pink), var(--rosa-purple));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 20px rgba(231, 33, 119, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(231, 33, 119, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.success {
    opacity: 1;
    background: rgba(121, 134, 69, 0.1);
    color: var(--rosa-olive);
    border: 2px solid var(--rosa-olive);
}

.form-message.error {
    opacity: 1;
    background: rgba(231, 33, 119, 0.1);
    color: var(--rosa-pink);
    border: 2px solid var(--rosa-pink);
}

/* Animated rose petals background */
.rose-petals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.rose-petals::before,
.rose-petals::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50% 0 50% 0;
    background: linear-gradient(135deg, rgba(231, 33, 119, 0.05), rgba(134, 44, 145, 0.05));
    animation: float 20s infinite ease-in-out;
}

.rose-petals::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.rose-petals::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 10s;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .heading {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .contact-section {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .contact-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .contact-section {
        padding: 1.5rem 1rem;
    }
    
    .contact-heading {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Subtle hover effects for interactivity */
@media (hover: hover) {
    .logo {
        transition: transform 0.3s ease, filter 0.3s ease;
    }
    
    .logo:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(231, 33, 119, 0.3));
    }
}
