/* -------- Global Reset -------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Outfit", sans-serif; background:#f4f8fb; color:#333; line-height:1.6; }
.container { width:min(1100px,92%); margin:auto; }

/* -------- Header -------- */
.site-header { position:sticky; top:0; z-index:100;
  backdrop-filter:blur(8px); background:rgba(255,255,255,0.9);
  box-shadow:0 2px 6px rgba(0,0,0,.1);
}
.nav { display:flex; justify-content:space-between; align-items:center; padding:14px 0; }
.brand { font-weight:800; font-size:22px; color:#1E88E5; text-decoration:none; }
.nav nav a { margin-left:20px; font-weight:600; color:#333; text-decoration:none; transition:.3s; }
.nav nav a:hover { color:#1E88E5; }

/* -------- Hero -------- */
.hero { background:linear-gradient(135deg,#1E88E5,#FFB300); color:#fff; text-align:center; padding:100px 20px 80px; border-bottom-left-radius:50px; border-bottom-right-radius:50px; }
.hero h1 { font-size:54px; font-weight:800; margin-bottom:15px; }
.hero p { font-size:20px; max-width:700px; margin:auto; margin-bottom:25px; }
.cta { display:flex; justify-content:center; gap:15px; margin-top:20px; }
.btn { padding:14px 28px; border-radius:10px; font-weight:700; text-decoration:none; transition:.3s; }
.btn-primary { background:#FFB300; color:#000; box-shadow:0 4px 12px rgba(0,0,0,0.2); }
.btn-primary:hover { background:#ffa000; transform:translateY(-3px); }
.btn-ghost { border:2px solid #fff; color:#fff; background:transparent; }
.btn-ghost:hover { background:rgba(255,255,255,0.2); transform:translateY(-3px); }

/* -------- Sections -------- */
.section { padding:80px 20px; text-align:center; }
.section.alt { background:#fff; }
.section-title { font-size:36px; color:#1E88E5; margin-bottom:40px; font-weight:800; }

/* -------- Info Cards -------- */
.grid { display:grid; gap:25px; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); }
.card { background:#fff; padding:30px; border-radius:16px; box-shadow:0 6px 14px rgba(0,0,0,0.1); transition:transform .25s, box-shadow .25s; text-align:center; }
.card:hover { transform:translateY(-6px); box-shadow:0 12px 24px rgba(0,0,0,0.15); }
.card h3 { margin-bottom:10px; color:#FF7043; }

/* -------- Program Tabs -------- */
.tabs { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; margin-bottom:30px; }
.tab { background:#eaf3ff; border:none; padding:10px 20px; border-radius:20px; font-weight:600; cursor:pointer; transition:all .3s; }
.tab:hover { background:#d3e8ff; }
.tab.active { background:#1E88E5; color:#fff; }

/* -------- Honeycomb Layout -------- */
.honeycomb { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-top:30px; }
.hex {
  width:150px; height:130px; background:#1E88E5;
  clip-path:polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%);
  display:flex; justify-content:center; align-items:center;
  text-align:center; color:#fff; font-weight:700; cursor:pointer;
  animation: float 6s ease-in-out infinite;
  transition:transform .3s, box-shadow .3s;
}
.hex span { font-size:18px; line-height:1.3; }
.hex:hover { transform:scale(1.15); box-shadow:0 8px 20px rgba(0,0,0,0.25); }

/* Floating animation */
@keyframes float {
  0% { transform:translateY(0); }
  50% { transform:translateY(-10px); }
  100% { transform:translateY(0); }
}
.hex:nth-child(2){ animation-delay:.5s; }
.hex:nth-child(3){ animation-delay:1s; }
.hex:nth-child(4){ animation-delay:1.5s; }
.hex:nth-child(5){ animation-delay:2s; }
.hex:nth-child(6){ animation-delay:2.5s; }

/* Program Colors */
.yoga { background:linear-gradient(135deg,#43A047,#66BB6A); }
.zumba { background:linear-gradient(135deg,#E53935,#FF7043); }
.academics { background:linear-gradient(135deg,#F4511E,#FB8C00); }
.english { background:linear-gradient(135deg,#3949AB,#5C6BC0); }
.stem { background:linear-gradient(135deg,#8E24AA,#AB47BC); }
.projects { background:linear-gradient(135deg,#00796B,#26A69A); }
.maker { background:linear-gradient(135deg,#C2185B,#E91E63); }
.art { background:linear-gradient(135deg,#FB8C00,#FFB74D); }
.baking { background:linear-gradient(135deg,#0097A7,#26C6DA); }
.calligraphy { background:linear-gradient(135deg,#6D4C41,#8D6E63); }
.events { background:linear-gradient(135deg,#7CB342,#9CCC65); }
.schools { background:linear-gradient(135deg,#1E88E5,#42A5F5); }

/* -------- Forms -------- */
.form { max-width:500px; margin:auto; background:#fff; padding:35px; border-radius:16px; box-shadow:0 6px 16px rgba(0,0,0,0.1); display:flex; flex-direction:column; gap:15px; }
input,select,textarea { padding:12px; border:1px solid #ccc; border-radius:10px; font:inherit; }
textarea { min-height:100px; resize:vertical; }
button { padding:14px; border:none; border-radius:10px; background:#1E88E5; color:#fff; font-weight:700; font-size:16px; cursor:pointer; transition:background .3s, transform .3s; }
button:hover { background:#1565C0; transform:translateY(-3px); }

/* -------- Popups -------- */
.overlay { position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.6); display:none; justify-content:center; align-items:center; z-index:200; }
.popup { background:#fff; padding:40px; border-radius:14px; text-align:center; max-width:420px; box-shadow:0 8px 20px rgba(0,0,0,0.2); }
.popup h2 { margin-bottom:10px; color:#1E88E5; }
.popup button { margin-top:20px; background:#1E88E5; color:#fff; border:none; padding:12px 24px; border-radius:8px; cursor:pointer; }

/* -------- Footer -------- */
.site-footer { background:#1E88E5; color:#fff; padding:25px; text-align:center; margin-top:50px; }
