/* =============================================
   FIRST CLASS SOFTEE â Global Styles
   Colors: Cream #fefbed | Red #e82829 | Blue #355aa5
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

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

:root {
  --cream: #fefbed;
  --red:   #e82829;
  --blue:  #355aa5;
  --dark:  #1a1a2e;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body.menu-open {
  overflow: hidden;
}

body {
  background-color: var(--cream);
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, .nav-brand {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* =============================================
   NAV
   ============================================= */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.nav-brand img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-links a {
  color: var(--white);
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--red);
}

.nav-links a.nav-contact {
  background: var(--red);
  border-radius: 4px;
  border-bottom-color: transparent;
  padding: 0.5rem 1rem;
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 6rem;
  color: var(--white);
  min-height: 90vh;
}

.hero-bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: scale(1.15);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(53, 90, 165, 0.72) 0%,
    rgba(30, 58, 122, 0.78) 50%,
    rgba(26, 26, 46, 0.85) 100%
  );
  z-index: 0;
}

.hero-logo {
  width: min(280px, 60vw);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

.hero h1 span {
  color: #ffd700;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 560px;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.5px;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2.5px solid var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* Wave divider */
.wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* =============================================
   SECTION TITLES
   ============================================= */

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--blue);
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--red);
  margin-top: 0.4rem;
}

.section-title p {
  color: #555;
  margin-top: 0.6rem;
  font-size: 1.05rem;
}

/* =============================================
   MENU SECTION
   ============================================= */

.menu-section {
  padding: 4rem 2rem;
  background: var(--cream);
}

.menu-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  background: var(--white);
  border: 2px solid #e8e4cc;
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) {
  .menu-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
  }
}

.menu-card-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.menu-card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.menu-card h3 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.menu-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.menu-card-count {
  display: inline-block;
  font-family: 'Fredoka One', cursive;
  font-size: 0.78rem;
  color: var(--blue);
  background: rgba(53, 90, 165, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.menu-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.05rem;
  color: #555;
}

.menu-cta a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}


/* =============================================
   INFO STRIP
   ============================================= */

.info-strip {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 3rem 2rem;
}

.info-strip h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.info-strip p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #1e3a7a 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(53, 90, 165, 0.82) 0%,
    rgba(30, 58, 122, 0.88) 50%,
    rgba(26, 26, 46, 0.92) 100%
  );
  z-index: 0;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-top: 0.6rem;
  max-width: 560px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.about-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.about-text p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-text p:first-of-type {
  font-size: 1.12rem;
  color: #333;
}

.about-text .callout {
  border-left: 4px solid var(--red);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  background: rgba(232, 40, 41, 0.04);
  padding: 1.25rem;
  border-radius: 0 10px 10px 0;
}

.about-mascot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-mascot img {
  width: 220px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

.badge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.badge-list li {
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #444;
  background: rgba(53, 90, 165, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.badge-list li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  font-weight: 500;
}

.contact-section b,
.contact-section strong,
.contact-section h2,
.contact-section h3,
.contact-section label {
  font-weight: 600;
}

.contact-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-wrapper {
  min-width: 0;
}

.info-card {
  background: var(--white);
  border: 2px solid #e8e4cc;
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-card:hover {
  border-color: var(--blue);
}

.info-card .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.info-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
}

.info-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-card p, .info-card a {
  font-size: 0.95rem;
  color: #444;
  word-break: break-all;
}

.info-card a:hover {
  color: var(--red);
}

/* Form */

.contact-form-wrapper h2 {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.contact-form-wrapper > p {
  color: #555;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  background: var(--red);
  color: var(--white);
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  padding: 0.85rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

@media (hover: hover) {
  .btn-submit:hover {
    background: #c41f20;
    transform: translateY(-2px);
  }
}

.form-success {
  display: none;
  background: #d4edda;
  border: 2px solid #28a745;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  color: #155724;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* =============================================
   HOW IT WORKS
   ============================================= */

.how-it-works {
  padding: 4rem 2rem;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* =============================================
   EVENTS WE SERVE
   ============================================= */

.events-section {
  padding: 4rem 2rem;
  background: var(--cream);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.event-card {
  background: var(--white);
  border: 2px solid #e8e4cc;
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) {
  .event-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
  }
}

.event-card h3 {
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.event-card .btn {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}

/* =============================================
   SERVICE AREA
   ============================================= */

.service-area {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
}

.service-area > p {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
}

.area-badge {
  background: var(--blue);
  color: var(--white);
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section {
  padding: 4rem 2rem;
  background: var(--cream);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 2px solid #e8e4cc;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--blue);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Nunito', sans-serif;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* =============================================
   VALUES GRID (About page)
   ============================================= */

.values-section {
  padding: 4rem 2rem;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--cream);
  border: 2px solid #e8e4cc;
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.value-card:hover {
  border-color: var(--blue);
}

.value-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* =============================================
   ABOUT — OUTLINE AREA BADGES (differentiated)
   ============================================= */

.area-badge-outline {
  background: transparent;
  color: var(--blue);
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
  border: 2.5px solid var(--blue);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  margin-top: auto;
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-brand img {
  height: 70px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: 'Fredoka One', cursive;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact p,
.footer-contact a {
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.3rem;
}

footer a {
  color: rgba(255,255,255,0.85);
}

footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.25rem 1.5rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .menu-showcase { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Show hamburger, hide nav links by default */
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--blue);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li { text-align: center; }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-bottom: none;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255,255,255,0.1);
    border-bottom-color: transparent;
  }

  .nav-links li:last-child {
    display: flex;
    justify-content: center;
    padding: 0.5rem 1.5rem;
  }

  .nav-links a.nav-contact {
    display: inline-flex;
    width: auto;
    background: var(--red);
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
  }

  .hero { min-height: 70vh; padding: 3.5rem 1.5rem 4rem; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-question {
    padding: 1.15rem 1.25rem;
    min-height: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .footer-brand {
    align-items: center;
  }

  .page-hero {
    min-height: 30vh;
    padding: 3.5rem 1.5rem 4rem;
  }
}

@media (max-width: 650px) {
  .about-grid  { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .about-mascot { order: -1; }
  .steps-grid  { grid-template-columns: 1fr; gap: 1rem; }
  .events-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .event-card .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .menu-showcase { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 3rem 1rem 3.5rem; }
  .section-title { margin-bottom: 1.5rem; }
  .menu-section, .how-it-works, .events-section, .faq-section, .service-area,
  .values-section, .about-section { padding: 2.5rem 1rem; }
  .info-strip { padding: 2rem 1rem; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .page-hero {
    min-height: auto;
    padding: 2.5rem 1rem 3rem;
  }
}
