/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Quicksand', sans-serif;
    color: #333;
    background-color: #ffccf2; /* Solid pastel pink background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

/* Landing Section */
.section-landing {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.intro {
    background: #fff;
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    text-align: center;
    animation: fadeIn 1.2s ease-in-out;
}

.intro h1 {
    font-size: 2.5em;
    color: #d63384; /* Rich pink color */
    margin-bottom: 1em;
}

/* Buttons */
.explore-button {
    background-color: #ff66b3; /* Pink button color */
    color: #fff;
    font-size: 1em;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin: 0.5em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.explore-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 102, 179, 0.4);
}

/* Footer */
footer {
    background: #ffcce6; /* Matching footer color */
    color: #d63384;
    padding: 1em;
    font-size: 0.9em;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

footer p {
    margin: 0;
}

/* Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
