/* Welcome Section - Solid White Card */
.welcome-section {
    background: var(--white);
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.1);
    text-align: center;
    position: relative;
}

/* Simple top border accent */
.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Simple floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart,
.floating-star {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.2;
    animation: simpleFloat 6s ease-in-out infinite;
}

.floating-heart {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-star {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes simpleFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-15px);
        opacity: 0.4;
    }
}

.welcome-content {
    position: relative;
    z-index: 2;
}

/* Heading styles - solid colors matching base theme */
.welcome-content h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark-primary);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(44, 62, 80, 0.1);
}

.welcome-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(52, 73, 94, 0.1);
}

.welcome-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section - Solid Light Gray */
.cta-section {
    padding: 1.5rem 2rem;
    background: #F8F9FA;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    border: 1px solid rgba(52, 73, 94, 0.1);
}

.cta-section h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-primary);
    margin-bottom: 1rem;
}

/* Button - Solid color design matching base theme */
.btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    background: var(--accent-gold);
    color: var(--dark-primary);
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-lg:hover {
    background: #F4D03F;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.4);
    color: var(--dark-primary);
}

.btn-lg:active {
    transform: translateY(-1px) scale(1);
}

.btn-lg i {
    font-size: 1.2rem;
    color: var(--dark-primary);
}

/* Simple subtitle */
.cta-subtitle {
    margin-top: 1.2rem !important;
    margin-bottom: 0 !important;
    font-size: 1rem;
    color: var(--text-muted);
    opacity: 0.8;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .welcome-section {
        padding: 3rem 1.5rem;
        margin: 1.5rem auto;
    }

    .welcome-content h1 {
        font-size: 3.5rem;
    }

    .welcome-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
        border-radius: var(--radius-md);
        width: 95%;
        /* Make it full width with a small gap */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .welcome-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .welcome-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .welcome-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .cta-section {
        width: 100%;
        padding: 1.5rem 1rem;
        margin-top: 1rem;
        box-sizing: border-box;
    }

    .cta-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .btn-lg {
        width: 100%;
        min-height: 44px;
        /* Minimum touch target size */
        padding: 1rem;
        font-size: 1.1rem;
        justify-content: center;
        letter-spacing: 0.5px;
    }

    .cta-subtitle {
        font-size: 0.85rem !important;
        margin-top: 0.8rem !important;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 1.5rem 1rem;
        margin: 0.5rem auto;
        width: 92%;
    }

    .welcome-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .welcome-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .welcome-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .cta-section {
        padding: 1.2rem 1rem;
        margin-top: 1rem;
    }

    .cta-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .btn-lg {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        min-height: 48px;
        /* Safe touch target for very small devices */
    }

    .floating-elements {
        display: none;
    }
}

/* Clean focus states for accessibility */
.btn-lg:focus {
    outline: 3px solid rgba(241, 196, 15, 0.5);
    outline-offset: 2px;
}

/* Print styles - Force solid white */
@media print {
    .floating-elements {
        display: none;
    }

    .welcome-section {
        box-shadow: none;
        background: var(--white) !important;
        border: 1px solid #ccc;
    }

    .cta-section {
        background: var(--white) !important;
        border: 1px solid #ccc;
    }

    .btn-lg {
        background: transparent;
        border: 2px solid var(--dark-primary);
        color: var(--dark-primary);
    }
}