/* Reset & Box Sizing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #F3E8FF; /* soft lavender for teen-friendly look */
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* Watermarks */
.watermarks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.watermarks img {
    position: absolute;
    width: 100px;
    height: auto;
    opacity: 0.05;
    transform: rotate(-20deg);
    animation: float 20s ease-in-out infinite alternate;
}

/* Float animation */
@keyframes float {
    0% { transform: translateY(0px) rotate(-20deg); }
    50% { transform: translateY(15px) rotate(-20deg); }
    100% { transform: translateY(0px) rotate(-20deg); }
}

/* Individual animation delays for variety */
.watermarks img:nth-child(1) { top: 5%; left: 10%; animation-delay: 0s; }
.watermarks img:nth-child(2) { top: 12%; left: 60%; animation-delay: 2s; }
.watermarks img:nth-child(3) { top: 20%; left: 30%; animation-delay: 4s; }
.watermarks img:nth-child(4) { top: 28%; left: 70%; animation-delay: 6s; }
.watermarks img:nth-child(5) { top: 35%; left: 15%; animation-delay: 1s; }
.watermarks img:nth-child(6) { top: 42%; left: 80%; animation-delay: 3s; }
.watermarks img:nth-child(7) { top: 50%; left: 40%; animation-delay: 5s; }
.watermarks img:nth-child(8) { top: 55%; left: 65%; animation-delay: 7s; }
.watermarks img:nth-child(9) { top: 60%; left: 20%; animation-delay: 2.5s; }
.watermarks img:nth-child(10) { top: 68%; left: 75%; animation-delay: 4.5s; }
.watermarks img:nth-child(11) { top: 72%; left: 10%; animation-delay: 1.5s; }
.watermarks img:nth-child(12) { top: 78%; left: 50%; animation-delay: 3.5s; }
.watermarks img:nth-child(13) { top: 82%; left: 30%; animation-delay: 5.5s; }
.watermarks img:nth-child(14) { top: 85%; left: 70%; animation-delay: 0.5s; }
.watermarks img:nth-child(15) { top: 88%; left: 20%; animation-delay: 2.2s; }
.watermarks img:nth-child(16) { top: 90%; left: 60%; animation-delay: 4.2s; }
.watermarks img:nth-child(17) { top: 92%; left: 40%; animation-delay: 6.2s; }
.watermarks img:nth-child(18) { top: 94%; left: 80%; animation-delay: 1.8s; }
.watermarks img:nth-child(19) { top: 96%; left: 25%; animation-delay: 3.8s; }
.watermarks img:nth-child(20) { top: 98%; left: 55%; animation-delay: 5.8s; }

/* Main Content */
.main-content {
    max-width: 900px;
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

/* Hero Banner */
.hero-banner {
    background-color: #C198E0;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.hero-banner h1 {
    font-size: 2.5em;
    color: #fff;
    margin-top: 15px;
}

/* Hero Logo Banner */
.hero-logo-banner {
    width: 180px;
    height: auto;
    border-radius: 10px;
}

/* Paragraphs */
p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Links */
a {
    color: #C198E0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #7030A0;
    text-decoration: underline;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #7030A0;
    color: #fff;
    padding: 12px 25px;
    margin: 15px 5px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.button:hover {
    background-color: #C198E0;
    transform: scale(1.05);
}

/* Footer Quote */
.footer-quote p {
    margin-top: 40px;
    font-size: 1.3em; /* slightly smaller to fit in one line */
    font-weight: bold;
    color: #7030A0;
}

/* Footer */
.footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 20px;
    }

    .hero-banner h1 {
        font-size: 2em;
    }

    .hero-logo-banner {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-logo-banner {
        width: 120px;
    }

    .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}
