
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background: url('../img/banner-1.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.hero {
    padding: 100px 20px 60px;
    background: rgba(255, 192, 203, 0.2);
    backdrop-filter: blur(5px);
    animation: fadeIn 2s ease;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    text-shadow: 0 0 10px #ff69b4;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    background: #ff69b4;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.buttons a:hover {
    background: #ff1493;
}

.stats {
    padding: 40px 20px;
    background: #fff;
    color: #ff1493;
}

.stats h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

footer {
    padding: 20px;
    background: #ff69b4;
    color: #fff;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

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

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

@media (max-width: 600px) {
    .hero h1 { font-size: 2em; }
    .hero p { font-size: 1em; }
    .logo { width: 90px; }
}
