/* Bee Curious - Custom CSS for Bootstrap 5 */

:root {
    --honey-gold: #F4B41A;
    --soft-cream: #FFF7E1;
    --garden-green: #6DBE45;
    --sky-blue: #8ECDF2;
    --playful-coral: #FF6F61;
    --charcoal-gray: #4A4A4A;
    --pure-white: #ffffff;
}

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

body {
    font-family: 'Fredoka', 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.6;
    color: var(--charcoal-gray);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #f8f9fa 100%);
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    animation: float-shapes 20s infinite linear;
}

.bg-shape:nth-child(1) { width: 80px; height: 80px; background: var(--honey-gold); top: 10%; left: 10%; animation-delay: 0s; }
.bg-shape:nth-child(2) { width: 60px; height: 60px; background: var(--garden-green); top: 20%; right: 20%; animation-delay: 5s; }
.bg-shape:nth-child(3) { width: 100px; height: 100px; background: var(--sky-blue); bottom: 30%; left: 15%; animation-delay: 10s; }
.bg-shape:nth-child(4) { width: 70px; height: 70px; background: var(--playful-coral); bottom: 20%; right: 10%; animation-delay: 15s; }

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--honey-gold);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: var(--pure-white);
    padding: 10px 0;
    position: relative;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-nav-left,
.navbar-nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-nav-left .nav-link,
.navbar-nav-right .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.navbar-nav-left .nav-link:hover,
.navbar-nav-right .nav-link:hover {
    color: var(--honey-gold);
    background-color: rgba(244, 180, 26, 0.1);
}

.navbar-nav-left .nav-link.active,
.navbar-nav-right .nav-link.active {
    color: var(--honey-gold);
    background-color: rgba(244, 180, 26, 0.15);
}

/* Hide mobile menu on desktop */
.navbar-toggler {
    display: none !important;
}

.navbar-collapse {
    display: none !important;
}

.navbar-collapse.show {
    display: block !important;
}

/* Override Bootstrap's navbar-expand-lg behavior */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }
    
    .navbar-expand-lg .navbar-toggler {
        display: none !important;
    }
}

/* Ensure mobile menu works properly */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .navbar-collapse .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-collapse .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-collapse .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-collapse .nav-link {
        padding: 1rem 2rem;
        color: var(--charcoal-gray) !important;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .navbar-collapse .nav-link:hover {
        background-color: rgba(244, 180, 26, 0.1);
        color: var(--honey-gold) !important;
    }
}

.navbar-brand.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--honey-gold);
    font-family: 'Fredoka', sans-serif;
}

.logo-icon {
    margin-right: 0.5rem;
    animation: bee-fly 3s ease-in-out infinite;
}

.navbar-nav .nav-link {
    color: var(--charcoal-gray);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    background: var(--honey-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 180, 26, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: white;
    overflow: hidden;
    padding: 120px 20px 60px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.8);
    animation: fade-in-up 1s ease-out;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--charcoal-gray);
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fade-in-up 1s ease-out 0.3s both;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--charcoal-gray);
    margin-bottom: 3rem;
    font-weight: 400;
    animation: fade-in-up 1s ease-out 0.4s both;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(2rem, 5vw, 3rem);
    background: var(--playful-coral);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 111, 97, 0.4);
    transition: all 0.3s ease;
    animation: fade-in-up 1s ease-out 0.6s both;
    border: none;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 111, 97, 0.5);
    background: var(--playful-coral);
    color: white;
}

/* Hive Background */
.hive-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.honeycomb-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/honeycomb-bg.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: repeat-y;
    opacity: 0.9;
    z-index: 0;
}

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal-gray);
    position: relative;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--charcoal-gray);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--honey-gold), var(--playful-coral));
    border-radius: 3px;
}

/* About Section - Creative Honeycomb Design */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.honeycomb-bg {
    position: relative;
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.honeycomb-cell {
    width: 60px;
    height: 60px;
    background: var(--honey-gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: honeycomb-pulse 3s ease-in-out infinite;
    opacity: 0.3;
}

.honeycomb-cell:nth-child(1) { animation-delay: 0s; }
.honeycomb-cell:nth-child(2) { animation-delay: 0.5s; }
.honeycomb-cell:nth-child(3) { animation-delay: 1s; }
.honeycomb-cell:nth-child(4) { animation-delay: 1.5s; }
.honeycomb-cell:nth-child(5) { animation-delay: 2s; }
.honeycomb-cell:nth-child(6) { animation-delay: 2.5s; }

@keyframes honeycomb-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Honeycomb Grid */
.honeycomb-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.honeycomb-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.honeycomb-row-offset {
    transform: translateX(60px);
}

.honeycomb-item {
    width: 200px;
    height: 200px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.honeycomb-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--honey-gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.4s ease;
    z-index: 1;
}

.honeycomb-item:hover::before {
    background: linear-gradient(135deg, var(--honey-gold), var(--playful-coral));
    transform: scale(1.1);
}

.honeycomb-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--charcoal-gray);
    width: 80%;
}

.honeycomb-icon {
    font-size: 3rem;
    margin-bottom: 0 !important;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.honeycomb-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal-gray);
}

.honeycomb-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--charcoal-gray);
}

.honeycomb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 180, 26, 0.3) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.honeycomb-item:hover .honeycomb-glow {
    opacity: 1;
    animation: glow-pulse 1.5s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Story Panel */
.story-panel {
    background: linear-gradient(135deg, var(--soft-cream) 0%, #f8f9fa 100%);
    border-radius: 30px;
    padding: 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.story-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 180, 26, 0.1) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

.story-panel-content {
    position: relative;
    z-index: 2;
}

.story-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.story-bee {
    animation: bee-float 4s ease-in-out infinite;
}

.story-bee-svg {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes bee-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.story-header h3 {
    color: var(--charcoal-gray);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.story-text {
    text-align: center;
    margin-bottom: 3rem;
}

.story-text p {
    color: var(--charcoal-gray);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.story-highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--honey-gold);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-text {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Programs Section */
.programs {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--soft-cream) 100%);
    position: relative;
}

.programs-header {
    position: relative;
    margin-bottom: 4rem;
}

.bee-illustration {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.bee-character {
    animation: bee-bounce 3s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.crayon-bee {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    animation: bee-bounce 3s ease-in-out infinite;
}

.crayon-bee-programs {
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.15));
    animation: bee-bounce 3s ease-in-out infinite;
}

.arrow-path {
    display: flex;
    align-items: center;
    animation: arrow-pulse 2s ease-in-out infinite;
}

.crayon-arrow {
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
    animation: crayon-draw 3s ease-in-out infinite;
}

.crayon-arrow path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw-line 2s ease-in-out infinite;
}

@keyframes bee-bounce {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(5deg); 
    }
}

@keyframes arrow-pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.2); 
        opacity: 1;
    }
}

@keyframes crayon-draw {
    0%, 100% { 
        transform: rotate(-2deg) scale(1); 
    }
    50% { 
        transform: rotate(2deg) scale(1.05); 
    }
}

@keyframes draw-line {
    0% { 
        stroke-dashoffset: 100; 
    }
    50% { 
        stroke-dashoffset: 0; 
    }
    100% { 
        stroke-dashoffset: 0; 
    }
}

/* Facilities Section Bee Illustration */
.facilities-header {
    position: relative;
    margin-bottom: 4rem;
}

.bee-illustration-facilities {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.bee-character-facilities {
    animation: bee-bounce 3s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.crayon-bee-facilities {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    animation: bee-bounce 3s ease-in-out infinite;
}

.arrow-path-facilities {
    display: flex;
    align-items: center;
    animation: arrow-pulse 2s ease-in-out infinite;
}

.crayon-arrow-facilities {
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
    animation: crayon-draw 3s ease-in-out infinite;
}

.crayon-arrow-facilities path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw-line 2s ease-in-out infinite;
}

/* Enrollment Section Bee Illustration */
.enrollment-header {
    position: relative;
    margin-bottom: 3rem;
}

.bee-illustration-enrollment {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.bee-character-enrollment {
    animation: bee-bounce 3s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.crayon-bee-enrollment {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    animation: bee-bounce 3s ease-in-out infinite;
}

.arrow-path-enrollment {
    display: flex;
    align-items: center;
    animation: arrow-pulse 2s ease-in-out infinite;
}

.crayon-arrow-enrollment {
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
    animation: crayon-draw 3s ease-in-out infinite;
}

.crayon-arrow-enrollment path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw-line 2s ease-in-out infinite;
}

.program-card {
    background: var(--pure-white);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--honey-gold), var(--playful-coral));
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.program-card ul {
    text-align: justify;
}
.program-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce-gentle 2s ease-in-out infinite;
}

.program-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--honey-gold);
    margin-bottom: 1rem;
}

.program-age {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--playful-coral);
    margin-bottom: 1.5rem;
}

.program-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--charcoal-gray);
}

/* Facilities Section */
.facility-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 235, 59, 0.03) 50%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 235, 59, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    background-size: 80px 80px, 60px 60px, 100px 100px, 70px 70px;
    background-position: 
        0 0, 
        40px 20px, 
        80px 40px, 
        20px 80px;
    opacity: 0.6;
    z-index: 0;
}

.facility-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(244, 180, 26, 0.2);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 235, 59, 0.05) 50%, rgba(255, 255, 255, 0.98) 100%);
}

.facility-card:hover::before {
    opacity: 0.8;
    background-size: 90px 90px, 70px 70px, 110px 110px, 80px 80px;
}

.facility-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--honey-gold);
    animation: pulse-gentle 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.facility-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal-gray);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.facility-card p {
    position: relative;
    z-index: 1;
    color: var(--charcoal-gray);
    line-height: 1.6;
}

/* Enrollment Section */
.enrollment {
    background: linear-gradient(135deg, var(--honey-gold) 0%, var(--playful-coral) 100%);
    color: white;
    border-radius: 40px;
    padding: 6rem 0;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.enrollment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"><animate attributeName="r" values="2;4;2" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="1.5" fill="white" opacity="0.1"><animate attributeName="r" values="1.5;3;1.5" dur="2.5s" repeatCount="indefinite"/></circle></svg>') repeat;
}

.enrollment h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.enrollment p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.enrollment-info {
    background: rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    height: 100%;
}

.enrollment-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.enrollment-info p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 0.5rem;
}

/* Promotional Banner */
.promotional-banner {
    background: linear-gradient(135deg, var(--honey-gold) 0%, var(--playful-coral) 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(244, 180, 26, 0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.banner-text {
    flex: 1;
    text-align: center;
    color: white;
}

.banner-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.banner-btn {
    background: white !important;
    color: var(--honey-gold) !important;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--soft-cream) !important;
    color: var(--honey-gold) !important;
}

.banner-bees {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bee-left {
    position: absolute;
    left: 10%;
    top: 20%;
    font-size: 4rem;
    animation: bee-float 6s ease-in-out infinite;
    opacity: 0.8;
}

.bee-right {
    position: absolute;
    right: 10%;
    bottom: 20%;
    font-size: 3.5rem;
    animation: bee-float 8s ease-in-out infinite reverse;
    opacity: 0.7;
}

.enrollment-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 3rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

.enrollment-form h3 {
    color: var(--charcoal-gray);
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-item {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-item:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3.5rem;
    color: var(--honey-gold);
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: var(--honey-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.map-container {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 1rem;
}

.contact-form {
    background: var(--pure-white);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--honey-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Form Styles */
.form-control, .form-select {
    border: 3px solid #e9ecef;
    border-radius: 15px;
    padding: 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--honey-gold);
    box-shadow: 0 0 0 3px rgba(244, 180, 26, 0.1);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: var(--charcoal-gray);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--playful-coral) 0%, var(--honey-gold) 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 111, 97, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 111, 97, 0.4);
    background: linear-gradient(135deg, var(--playful-coral) 0%, var(--honey-gold) 100%);
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.fab:hover {
    transform: scale(1.1) translateY(-3px);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.fab-scroll-top {
    background: var(--honey-gold);
}

.fab-whatsapp {
    background: #25D366;
}

.fab-call {
    background: var(--playful-coral);
}

/* Footer */
.footer {
    background: var(--charcoal-gray);
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--honey-gold);
}

.partner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sv-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    /*filter: brightness(0) invert(1);*/
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.sv-logo-img:hover {
    opacity: 1;
}

/* Animations */
@keyframes bee-fly {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes bee-float {
    0%, 100% { 
        transform: translate(0px, 0px) rotate(0deg); 
        opacity: 0.7;
    }
    25% { 
        transform: translate(20px, -15px) rotate(5deg); 
        opacity: 0.9;
    }
    50% { 
        transform: translate(0px, -25px) rotate(0deg); 
        opacity: 0.8;
    }
    75% { 
        transform: translate(-15px, -10px) rotate(-5deg); 
        opacity: 0.9;
    }
}

@keyframes float-shapes {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes twinkle {
    0% { transform: translateX(0px); }
    100% { transform: translateX(-20px); }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-around {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(100px, -50px) rotate(90deg); }
    50% { transform: translate(0px, -100px) rotate(180deg); }
    75% { transform: translate(-100px, -50px) rotate(270deg); }
    100% { transform: translate(0px, 0px) rotate(360deg); }
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-gentle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Animation Classes */
.section,
.program-card,
.facility-card,
.about,
.enrollment-info,
.highlight-item,
.section-title,
.section-subtitle,
.enrollment h2,
.enrollment p {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.section.animate-in,
.program-card.animate-in,
.facility-card.animate-in,
.about.animate-in,
.enrollment-info.animate-in,
.highlight-item.animate-in,
.section-title.animate-in,
.section-subtitle.animate-in,
.enrollment h2.animate-in,
.enrollment p.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for cards */
.program-card:nth-child(1) { transition-delay: 0.1s; }
.program-card:nth-child(2) { transition-delay: 0.2s; }
.program-card:nth-child(3) { transition-delay: 0.3s; }
.program-card:nth-child(4) { transition-delay: 0.4s; }

.facility-card:nth-child(1) { transition-delay: 0.1s; }
.facility-card:nth-child(2) { transition-delay: 0.2s; }
.facility-card:nth-child(3) { transition-delay: 0.3s; }
.facility-card:nth-child(4) { transition-delay: 0.4s; }
.facility-card:nth-child(5) { transition-delay: 0.5s; }
.facility-card:nth-child(6) { transition-delay: 0.6s; }

.highlight-item:nth-child(1) { transition-delay: 0.1s; }
.highlight-item:nth-child(2) { transition-delay: 0.2s; }
.highlight-item:nth-child(3) { transition-delay: 0.3s; }
.highlight-item:nth-child(4) { transition-delay: 0.4s; }
.highlight-item:nth-child(5) { transition-delay: 0.5s; }
.highlight-item:nth-child(6) { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav-left,
    .navbar-nav-right {
        display: none;
    }
    
    .navbar-brand.logo {
        position: static;
        transform: none;
        margin-right: auto;
    }
    
    /* Show mobile toggle button on mobile */
    .navbar-toggler {
        display: block !important;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 100px 15px 40px 15px;
        min-height: 90vh;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .enrollment {
        margin: 2rem 0;
        padding: 3rem 0;
    }

    .enrollment h2 {
        font-size: 2.5rem;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .fab-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    /* Promotional Banner Mobile */
    .promotional-banner {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    .bee-left {
        font-size: 3rem;
        left: 5%;
    }
    
    .bee-right {
        font-size: 2.5rem;
        right: 5%;
    }
    
    /* Programs Bee Illustration Mobile */
    .bee-illustration {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .bee-character {
        transform: scale(0.8);
    }
    
    .crayon-bee {
        width: 48px;
        height: 40px;
    }
    
    .crayon-bee-programs {
        width: 48px;
        height: 40px;
    }
    
    /* About Section Mobile */
    .about {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 1rem;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .about-highlights {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .highlight-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .highlight-icon {
        font-size: 1.5rem;
        margin-right: 0.8rem;
        min-width: 2.5rem;
    }
    
    /* About Section Mobile - Honeycomb Design */
    .honeycomb-bg {
        height: 60px;
        gap: 5px;
    }
    
    .honeycomb-cell {
        width: 40px;
        height: 40px;
    }
    
    .honeycomb-container {
        padding: 1rem 0;
        max-width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .honeycomb-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .honeycomb-row-offset {
        transform: none;
    }
    
    .honeycomb-item {
        width: 220px;
        height: 220px;
        margin: 0 auto;
        align-self: center;
        flex-shrink: 0;
        position: relative;
    }
    
    .honeycomb-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--honey-gold);
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        transition: all 0.4s ease;
        z-index: 1;
    }
    
    .honeycomb-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
        color: var(--charcoal-gray);
        width: 85%;
    }
    
    .honeycomb-icon {
        display: none;
    }
    
    .honeycomb-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .honeycomb-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .honeycomb-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(244, 180, 26, 0.3) 0%, transparent 70%);
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }
    
    .story-panel {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin-top: 2rem;
    }
    
    .story-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .story-header h3 {
        font-size: 2rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .story-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        min-width: 100px;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .highlight-text {
        font-size: 0.8rem;
    }
    
    .arrow-path {
        transform: scale(0.8);
    }
    
    .crayon-arrow {
        width: 50px;
        height: 16px;
    }
    
    /* Facilities Bee Illustration Mobile */
    .bee-illustration-facilities {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .bee-character-facilities {
        transform: scale(0.8);
    }
    
    .crayon-bee-facilities {
        width: 48px;
        height: 40px;
    }
    
    .arrow-path-facilities {
        transform: scale(0.8);
    }
    
    .crayon-arrow-facilities {
        width: 50px;
        height: 16px;
    }
    
    /* Enrollment Bee Illustration Mobile */
    .bee-illustration-enrollment {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .bee-character-enrollment {
        transform: scale(0.8);
    }
    
    .crayon-bee-enrollment {
        width: 48px;
        height: 40px;
    }
    
    .arrow-path-enrollment {
        transform: scale(0.8);
    }
    
    .crayon-arrow-enrollment {
        width: 50px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }

    .hero {
        padding: 80px 10px 30px 10px;
        min-height: 85vh;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .enrollment h2 {
        font-size: 2rem;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
    }
    
    .sv-logo-img {
        height: 35px;
    }
    
    /* Extra small mobile honeycomb adjustments */
    .honeycomb-container {
        padding: 0.5rem 0;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .honeycomb-row {
        gap: 15px;
        margin-bottom: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .honeycomb-item {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .honeycomb-icon {
        display: none;
    }
    
    .honeycomb-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .honeycomb-content p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* iPad Pro specific styles - Fix header logo overlapping menus */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (-webkit-min-device-pixel-ratio: 2) {
  
  .navbar {
    padding: 0.8rem 2rem; /* Increase horizontal padding for more space */
  }
  
  .navbar-nav-left {
    margin-right: 2rem; /* Add more space between left menu and logo */
  }
  
  .navbar-nav-right {
    margin-left: 2rem; /* Add more space between logo and right menu */
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0.8rem; /* Reduce individual link padding */
    font-size: 0.9rem; /* Slightly smaller font to fit better */
  }
  
  .container {
    max-width: 100%; /* Use full width for more space */
    padding: 0 1rem;
  }
}

/* Additional iPad Pro landscape fix */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (orientation: landscape) {
  
  .navbar {
    padding: 0.6rem 1.5rem; /* Adjust for landscape */
  }
  
  .navbar-nav-left {
    margin-right: 1.5rem;
  }
  
  .navbar-nav-right {
    margin-left: 1.5rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
  }
}
