* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ABE0F0;
    color: #2d2d2d;
    line-height: 1.45;
    min-height: 100vh;
}

.hero-header {
    height: 55vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.20)),
                url('../image0011041.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.header-overlay {
    background: rgba(171, 224, 240, 0.60); /* increased opacity a bit for better contrast */
    padding: 1.8rem 2.5rem;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    max-width: 90%;
}

h1 {
    font-family: 'Comic Neue', cursive;
    font-size: 4.2rem;
    margin-bottom: 0.6rem;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.6);
    letter-spacing: 1.5px;
}

.hero-header p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.main-nav {
    background: rgba(255, 238, 145, 0.92);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.main-nav a {
    color: #E2852E;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #F5C857;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: #F5C857;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* ────── SECTIONS & TITLES ────── */

section {
    padding: 2rem 1rem;
    text-align: center;
}

h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2.9rem;
    color: #E2852E;
    margin: 1.1rem auto 0.9rem;
    text-align: center;
    width: fit-content;
    max-width: 92%;
    padding: 0 1rem;
}

/* ────── COMPACT BUBBLES ────── */

.bubble {
    background: rgba(255, 238, 145, 0.94);
    border-radius: 999px;
    padding: 0.75rem 2.3rem;
    margin: 0.75rem auto;
    max-width: 640px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1),
                inset 0 0 10px rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
    border: 2px solid #ABE0F0;
    position: relative;
    animation: float 7s ease-in-out infinite;
    line-height: 1.42;
}

.bubble p {
    margin: 0;
}

.bubble::before,
.bubble::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
}

.bubble::before { width: 20px; height: 20px; bottom: -9px; left: 18%; opacity: 0.7; }
.bubble::after  { width: 14px; height: 14px; bottom: -6px; left: 14%; opacity: 0.5; }

.big-bubble {
    max-width: 720px;
    padding: 1rem 2.8rem;
    font-size: 1.18rem;
    margin: 0.75rem auto;
}

.btn {
    display: inline-block;
    background: #E2852E;
    color: white;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.7rem;
    transition: all 0.25s;
}

.btn:hover {
    background: #F5C857;
    color: #2d2d2d;
    transform: translateY(-2px);
}

footer {
    background: linear-gradient(to right, #E2852E, #F5C857);
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2.2rem;
}

.footer-image {
    width: 78px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(245, 200, 87, 0.5));
    animation: gentle-glow 4s ease-in-out infinite;
    transition: all 0.4s ease;
}

.footer-image:hover {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 12px 32px rgba(245, 200, 87, 1)) brightness(1.2);
    animation: none;
}

@keyframes gentle-glow {
    0%, 100% { filter: drop-shadow(0 4px 12px rgba(245, 200, 87, 0.5)); }
    50%      { filter: drop-shadow(0 8px 20px rgba(245, 200, 87, 0.85)); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

@media (max-width: 768px) {
    h1 { font-size: 3.3rem; }
    .header-overlay { padding: 1.5rem; }
    .main-nav ul { flex-direction: column; gap: 1rem; }
    section { padding: 1.6rem 0.8rem; }
    h2 { font-size: 2.4rem; margin: 0.9rem auto 0.7rem; }
    .bubble, .big-bubble { padding: 0.7rem 1.9rem; margin: 0.7rem auto; }
}