/* CSS Variables */
:root {
  --brand-blue: #144997;
  --brand-yellow: #FFD700;
  --brand-red: #B50F2D;
  --brand-white: #ffffff;
  --ink: #0a2458;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--brand-white);
  background: var(--brand-blue);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 36, 88, 0.08);
  backdrop-filter: saturate(160%) blur(8px);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 22px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 40px 20px;
  position: relative;
}

.hero-bubble {
  position: absolute;
  right: -100px;
  top: 20px;
  width: 480px;
  height: 480px;
  background: #fff;
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
}

.tag {
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
  opacity: 0.95;
}

.title {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1;
  margin: 0 0 10px;
}

.subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  max-width: 32ch;
  margin: 0 0 12px;
}

.location-tag {
  font-size: clamp(14px, 1.8vw, 16px);
  opacity: 0.9;
  margin: 0 0 22px;
  font-weight: 600;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.btn-primary {
  background: #fff;
  color: var(--brand-blue);
}

.btn-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

/* Decorative Blobs */
.blob {
  position: absolute;
  opacity: 0.95;
  filter: saturate(110%);
}

.blob-yellow {
  right: -70px;
  bottom: -60px;
  width: 360px;
  height: 260px;
  background: var(--brand-yellow);
  border-radius: 38% 62% 55% 45% / 41% 51% 49% 59%;
}

.blob-red {
  left: -80px;
  bottom: -40px;
  width: 280px;
  height: 210px;
  background: var(--brand-red);
  border-radius: 60% 40% 55% 45% / 40% 60% 40% 60%;
}

/* Sections */
section {
  padding: 70px 20px;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 22px;
}

.section-header h2 {
  font-family: "Baloo 2", cursive;
  font-size: 38px;
  margin: 0 0 8px;
}

.section-lead {
  opacity: 0.9;
  margin: 0;
}

/* Menu */
.menu-grid {
  max-width: 1100px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  background: rgba(255, 255, 255, 0.97);
  color: #1a2d4a;
  border-radius: 16px;
  padding: 18px 18px 8px;
}

.menu-card h3 {
  font-family: "Baloo 2", cursive;
  margin: 0 0 8px;
}

.menu-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.menu-card li {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 10px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(20, 77, 163, 0.12);
}

.menu-card li:last-child {
  border-bottom: 0;
}

.item-name {
  font-weight: 800;
}

.item-desc {
  opacity: 0.85;
}

.menu-card .menu-note {
  text-align: left;
  margin: 6px 0 12px 0;
  font-size: 11px;
  opacity: 0.75;
  font-style: italic;
}

.menu-note {
  text-align: center;
  margin-top: 14px;
  opacity: 0.95;
}

/* About Section */
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.about-text h2 {
  font-family: "Baloo 2", cursive;
  margin: 0 0 10px;
}

.about-text p {
  margin: 0 0 12px;
  opacity: 0.95;
}

.about-media img {
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Schedule */
.schedule-list {
  max-width: 900px;
  margin: 10px auto 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.schedule-list li {
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 12px;
}

.date {
  font-weight: 800;
}

.place {
  opacity: 0.95;
}

.time {
  justify-self: end;
  opacity: 0.95;
}

/* Contact */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-text h2 {
  font-family: "Baloo 2", cursive;
  margin: 0 0 10px;
}

.contact-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.contact-list a {
  color: #fff;
  text-decoration: underline;
}

.contact-form {
  background: rgba(255, 255, 255, 0.97);
  color: #1a2d4a;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.form-row input,
.form-row textarea {
  border: 1px solid rgba(20, 77, 163, 0.18);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 16px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-note {
  font-size: 12px;
  opacity: 0.7;
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px 20px;
  margin-top: 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1072px) {
  .hero-bubble {
    width: 420px;
    height: 420px;
    right: -80px;
    top: 30px;
  }
}

@media (max-width: 940px) {
  .hero-bubble {
    width: 380px;
    height: 380px;
    right: -60px;
    top: 20px;
  }
}

@media (max-width: 780px) {
  .hero-bubble {
    width: 300px;
    height: 300px;
    right: -80px;
    top: 30px;
    opacity: 0.7;
  }
  
  .nav-links {
    position: absolute;
    right: 16px;
    top: 62px;
    background: rgba(10, 36, 88, 0.96);
    padding: 14px;
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    display: none;
    min-width: 160px;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav.open .nav-links {
    display: flex;
  }
}

@media (max-width: 760px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .schedule-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .time {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .hero-bubble {
    width: 260px;
    height: 260px;
    right: -100px;
    top: 40px;
    opacity: 0.5;
  }
  
  .hero-inner {
    padding: 20px 20px;
  }
  
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-bubble {
    display: none;
  }
  
  .hero-inner {
    min-height: 60vh;
    padding: 20px 16px;
  }
  
  .title {
    font-size: clamp(32px, 8vw, 42px);
  }
  
  .subtitle {
    font-size: clamp(14px, 4vw, 16px);
  }
}