/* splash.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-red: #D91A4D;
    --dark-red: #A61439;
    --light-pink: #FEEAEE;
    --text-gray: #4b5563;
    --gray-dark: #1f2937;
    --background-white-subtle: #fdfbfb;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-gray);
    background-color: var(--background-white-subtle);
}

#splash-screen {
    background-color: white;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: opacity 0.6s ease-out;
}

#splash-screen #hero {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-container {
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content {
    opacity: 0;
    transform: translateY(100px);
    animation: slideInUp 1s ease-out forwards;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-content h1 strong {
    color: var(--primary-red);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

@keyframes slideOutDown {
    to {
        opacity: 0;
        transform: translateY(100px);
    }
}

.hidden {
    display: none !important;
}

.no-animation {
    animation: none !important;
}

#main-site-content {
    min-height: 100vh;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}
