:root {
    --primary-blue: #29B6F6;
    /* Bright Sky Blue */
    --secondary-blue: #0288D1;
    --grass-green: #7CB342;
    --sun-yellow: #FFEE58;
    --text-color: #37474F;
    --white: #ffffff;
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Comic Neue', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-blue);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 20px;
    overflow-x: hidden;
}

/* Clouds Animation */
.cloud {
    position: fixed;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: -1;
    animation: floatCloud 20s linear infinite;
}

.cloud-1 {
    top: 10%;
    left: -10%;
    animation-duration: 25s;
}

.cloud-2 {
    top: 30%;
    left: -20%;
    animation-duration: 35s;
    animation-delay: 5s;
}

.cloud-3 {
    top: 60%;
    left: -15%;
    animation-duration: 30s;
    animation-delay: 2s;
}

@keyframes floatCloud {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(110vw);
    }
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid var(--secondary-blue);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-blue);
    text-shadow: 2px 2px 0 var(--sun-yellow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.nav-links a:hover {
    color: var(--secondary-blue);
    transform: scale(1.1) rotate(-5deg);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--primary-blue), #81D4FA);
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    text-shadow: 4px 4px 0 var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--sun-yellow);
    text-shadow: 4px 4px 0 #F57F17;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-image-container {
    margin: 2rem auto;
    max-width: 800px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 5px solid var(--white);
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.2);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.btn-sniff {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--sun-yellow);
    color: #F57F17;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    border-bottom: 5px solid #FBC02D;
    transition: transform 0.1s, border-bottom 0.1s;
}

.btn-sniff:hover {
    transform: translateY(2px);
    border-bottom: 2px solid #FBC02D;
}

/* Sections */
.section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
}

h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fun-facts {
    list-style: none;
    margin-top: 1.5rem;
}

.fun-facts li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #E1F5FE;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-blue);
}

.rounded-img {
    width: 100%;
    border-radius: 20px;
    border: 5px solid var(--grass-green);
    transition: transform 0.3s;
}

.rotate-hover:hover {
    transform: rotate(5deg) scale(1.05);
}

.caption {
    text-align: center;
    font-weight: 700;
    color: var(--grass-green);
    margin-top: 0.5rem;
}

/* Friends Section */
.friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.friend-card {
    background-color: #FFF9C4;
    /* Light Yellow */
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--sun-yellow);
    transition: transform 0.3s;
}

.friend-card:hover {
    transform: translateY(-10px);
}

.friend-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.friend-card h3 {
    font-family: var(--font-heading);
    color: #F57F17;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-blue);
    color: var(--white);
    margin-top: 4rem;
}

.privacy-link a {
    color: var(--sun-yellow);
    font-weight: 700;
    text-decoration: none;
}

/* Privacy Page */
.privacy-body {
    background-color: #E0F7FA;
    text-align: center;
    padding: 5rem 2rem;
}

.privacy-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    font-size: 3rem;
}

.nav-links {
    display: none;
}

/* Simple hide for now */
}