:root {
    --mint: #98f5e1;
    --lavender: #e1c5ff;
    --peach: #ffcdb2;
    --sky: #b8e2f2;
    --coral: #ff8882;
    --text: #4a4a4a;
    --light: #ffffff;
    --dark: #2d3436;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Accounts for the fixed header height */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background-color: var(--light);
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
header {
    position: fixed;
    width: 100%;
    padding: 15px 0;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Comfortaa', cursive;
    font-size: 28px;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

header.scrolled .logo {
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-left: auto;
    padding-right: 40px; /* Add padding to move links more to the right */
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    transition: color 0.3s ease;
}

header.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--coral);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--coral);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 136, 130, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(152, 245, 225, 0.7) 0%, rgba(184, 226, 242, 0.7) 100%);
    overflow: hidden;
}

.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.parallax-image {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    will-change: transform;
}

.parallax-image-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    background-image: url('images/book.png'); /* Replace with your own image */
}

.parallax-image-2 {
    width: 250px;
    height: 250px;
    top: 60%;
    right: 10%;
    background-image: url('images/koala.png'); /* Replace with your own image */
}

.parallax-image-3 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 15%;
    background-image: url('images/stars.png'); /* Replace with your own image */
}

.parallax-image-4 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 15%;
    background-image: url('images/teddy-bear.png'); /* Replace with your own image */
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--lavender);
    opacity: 0.3;
    top: -200px;
    right: -200px;
    filter: blur(100px);
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--peach);
    opacity: 0.3;
    bottom: -200px;
    left: -200px;
    filter: blur(100px);
}

.hero-content {
    max-width: 650px;
    z-index: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text);
}

.highlight {
    background: linear-gradient(120deg, var(--mint) 0%, var(--mint) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.4em;
    background-position: 0 88%;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--lavender);
    opacity: 0.1;
    bottom: -200px;
    right: -200px;
    filter: blur(100px);
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, var(--lavender), var(--sky));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container::before {
    content: '🎙️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.3;
}

.about-content h3 {
    font-family: 'Comfortaa', cursive;
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-content h3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.3em;
    bottom: 0.1em;
    left: 0;
    z-index: -1;
    background: var(--peach);
    opacity: 0.3;
    transform: rotate(-1deg);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
    font-size: 17px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    background: linear-gradient(135deg, var(--mint) 0%, var(--sky) 100%);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-family: 'Comfortaa', cursive;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-stats {
        justify-content: center;
    }
    
    .stat-item {
        min-width: 140px;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--mint) 0%, var(--sky) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-family: 'Comfortaa', cursive;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 0.3em;
    bottom: 0.1em;
    left: 20%;
    z-index: -1;
    background: var(--lavender);
    transform: rotate(-1deg);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
}

.contact-info h3 {
    font-family: 'Comfortaa', cursive;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--dark);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--coral);
    font-size: 18px;
}

.contact-form input,
.contact-form textarea {
    background: var(--light);
    border: none;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 20px;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    display: block;
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Comfortaa', cursive;
    color: var(--mint);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--light);
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: var(--coral);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
}

/* Animations */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: floatUp 0.6s ease forwards;
}

/* Floating and parallax animations */
@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

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

@keyframes parallax-1 {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 0.7; }
}

@keyframes parallax-2 {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 0.7; }
}

@keyframes parallax-3 {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 0.7; }
}

@keyframes parallax-4 {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 0.7; }
} 