/* FestGlanz style.css – Playful Dynamic, Responsive, Flexbox only */

/* =========== CSS RESET & NORMALIZE =========== */
/* Simple Reset */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0; padding: 0; font-weight: normal;
}
ul, ol { list-style: none; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; border: 0; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }

/* =========== BRAND FONTS & ROOT COLORS =========== */
:root {
  --primary: #3C1657;
  --secondary: #E5C45B;
  --accent: #F8F6F0;
  --fun-pink: #FB52A1;
  --fun-blue: #38B6FF;
  --fun-green: #6EDC83;
  --dark-text: #23202C;
  --light-bg: #F8F6F0;
  --shadow: 0 4px 24px rgba(60,22,87,0.10);
  --radius: 22px;
  --fun-card: #FFF8F1;
}

body {
  background: var(--light-bg);
  color: var(--dark-text);
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.3rem; font-weight: 800; margin-bottom: 18px; }
h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.section h2 { margin-bottom: 26px; }
p, ul, li, a, label, span, strong { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; }

/* PLAYFUL FUN FONTS on headings & bright accents */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* =========== LAYOUT CONTAINERS =========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* MANDATORY FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--fun-card);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  min-width: 270px;
  transition: box-shadow 0.25s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 6px 36px rgba(251,82,161,0.13), var(--shadow);
  transform: translateY(-4px) scale(1.028);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFF;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.22s, transform 0.24s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(56,182,255,0.13), var(--shadow);
  transform: scale(1.015) rotate(-0.7deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 20px 18px;
  margin-bottom: 20px;
  min-width: 180px;
  max-width: 285px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.feature-item:hover {
  box-shadow: 0 6px 32px rgba(110,220,131,0.10), var(--shadow);
  transform: scale(1.021) rotate(1.3deg);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, var(--fun-pink) 8%, var(--fun-blue) 92%);
  color: #fff;
  padding: 64px 0 48px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 60px 60px/0 0 36px 36px;
  box-shadow: 0 6px 36px rgba(60,22,87,0.09);
  margin-bottom: 48px;
}
.hero .container {
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  gap: 22px;
}
.hero h1, .hero h2, .hero h3 { color: #fff; text-shadow: 0 2px 12px rgba(60,22,87,0.18); }
.hero p { color: #fff; font-size: 1.19rem; }
.hero .cta-btn { margin-top: 18px; }

/* ========== BUTTONS & CTA ========== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fun-pink);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 14px 34px;
  margin-top: 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 18px rgba(60,22,87,0.11);
  cursor: pointer;
  position: relative;
  transition: background 0.22s, box-shadow 0.14s, transform 0.11s;
  letter-spacing: 0.03em;
}
.cta-btn.primary {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--fun-blue);
  color: #fff;
  box-shadow: 0 6px 24px rgba(251,82,161,0.17), 0 2px 6px rgba(56,182,255,0.09);
  transform: translateY(-2px) scale(1.03);
}

/* CATEGORY TABS & TAGS */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.category-tabs span {
  background: var(--fun-blue);
  color: #fff;
  border-radius: 16px;
  padding: 7px 21px;
  font-weight: 600;
  font-size: 1.01rem;
  letter-spacing: 0.01em;
  transition: background 0.23s, color 0.19s;
  cursor: pointer;
}
.category-tabs span:hover { background: var(--secondary); color: var(--primary); }

.category-tag, .event-category {
  display: inline-block;
  background: var(--fun-green);
  color: var(--primary);
  border-radius: 12px;
  font-size: .96rem;
  padding: 4px 14px;
  margin-right: 10px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.18s;
}
.category-tag:hover, .event-category:hover {
  background: var(--fun-pink);
  color: #fff;
}

/* FEATURE GRID, EVENT CARDS, BLOG LIST ETC. (Flexbox) */
.feature-grid, .event-list, .event-cards, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 18px 0;
}
.feature-grid > div, .event-list > div, .event-cards > div, .blog-list > div {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 18px 20px;
  flex: 1 1 270px;
  min-width: 230px;
  max-width: 325px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow .20s, transform 0.15s;
  cursor: pointer;
}
.feature-grid > div:hover, .event-list > div:hover, .event-cards > div:hover, .blog-list>div:hover {
  box-shadow: 0 10px 30px 0 rgba(229,196,91,0.14), var(--shadow);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  z-index: 2;
}
.feature-grid img, .event-list img, .event-cards img, .blog-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 5px;
  object-fit: contain;
}
.event-list h3, .event-cards h3, .blog-list h3 { font-size: 1.05rem; font-family: 'Montserrat', Arial, sans-serif; margin-bottom: 5px; }
.event-list p, .event-cards p, .blog-list p { color: #332a3f; font-size: 0.97rem; }
.event-cards a, .blog-list a {
  color: var(--fun-pink);
  font-weight: 700;
  font-size: .97rem;
  margin-top: 9px;
  transition: color 0.2s;
}
.event-cards a:hover, .blog-list a:hover { color: var(--fun-blue); text-decoration: underline; }

/* TESTIMONIALS (Readability!) */
.testimonial-card p {
  color: var(--primary);
  font-size: 1.09rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--fun-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-right: 8px;
}
.testimonial-card img {
  display: inline-block;
  width: 22px; height: 22px;
  margin: 0 1.5px 0 0;
}

/* SCHEDULE (FLEX LAYOUT columns only by flex not grid) */
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 23px;
}
.schedule-grid > div {
  padding: 11px 17px;
  border-radius: 13px;
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.04rem;
  margin-bottom: 3.5px;
  box-shadow: 0 1px 4px 0 rgba(60,22,87,0.03);
}

/* CATEGORIES (Blog) */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0 0 0;
}
.categories span {
  background: var(--fun-green);
  color: var(--primary);
  border-radius: 16px;
  padding: 7px 19px;
  font-weight: 600;
  transition: background .21s, color .12s;
  cursor: pointer;
}
.categories span:hover { background: var(--fun-blue); color: #fff; }

/* FAQ, Contact Details (Flex, Playful) */
.faq-list, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin: 20px 0 18px 0;
}
.faq-list > div, .contact-details > div {
  flex: 1 1 270px;
  min-width: 215px;
  max-width: 360px;
  background: var(--accent);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 17px 17px 15px 17px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .99rem;
  transition: box-shadow .18s, transform .19s;
}
.faq-list > div:hover, .contact-details > div:hover {
  box-shadow: 0 10px 36px rgba(62,22,90,0.13), var(--shadow);
  transform: scale(1.03) rotate(1deg);
}
.contact-details img {
  width: 20px; height: 20px;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
}

/* ========== CALL-TO-ACTION CALLOUTS ========== */
.callout {
  background: var(--fun-green);
  border-radius: 26px;
  margin: 40px 0 28px 0;
  text-align: center;
  box-shadow: 0 2px 12px rgba(110,220,131,0.10);
  padding: 36px 0;
}
.callout h2 {
  color: var(--primary);
  font-size: 1.52rem;
  margin-bottom: 12px;
}
.callout p {
  color: var(--dark-text);
  font-size: 1.02rem;
}
.callout .cta-btn {
  margin-top: 14px;
  background: var(--fun-pink);
  color: #fff;
}
.callout .cta-btn.primary {
  background: var(--secondary);
  color: var(--primary);
}

/* THANK YOU SECTION */
.thank-you {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  text-align: center;
  background: linear-gradient(80deg, var(--fun-green) 13%, var(--fun-pink) 87%);
  color: #fff;
}
.thank-you h1, .thank-you p, .thank-you a, .thank-you li {
  color: #fff;
  text-shadow: 0 1.5px 6px rgba(60,22,87,0.17);
}
/*.thank-you h1 {margin-bottom: 8px;}*/

/* ========== HEADER / NAVIGATION ========== */
header {
  background: #fff;
  padding: 0; margin: 0;
  box-shadow: 0 3px 14px -8px rgba(60,22,87,0.07);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 201;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 73px;
}
.logo img {height: 40px; width: auto;}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 17px;
  border-radius: 17px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.13s, color 0.14s;
  position: relative;
  z-index: 1;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--fun-blue);
  color: #fff;
}
.main-nav a.cta-btn.primary {
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 22px;
  margin-left: 7px;
  box-shadow: 0 2px 12px rgba(229,196,91,0.17);
  transition: background 0.19s, color 0.16s, box-shadow 0.18s;
}
.main-nav a.cta-btn.primary:hover {
  background: var(--fun-pink);
  color: #fff;
  box-shadow: 0 4px 20px rgba(251,82,161,0.13);
}

.mobile-menu-toggle {
  display: none;
  background: var(--fun-pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: 13px;
  transition: background 0.17s;
  z-index: 309;
}
.mobile-menu-toggle:hover {
  background: var(--fun-blue);
}

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(60,22,87,0.94);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.69, 0.04, 0.37, 0.93);
  pointer-events: none;
  opacity: 1;
}
body.mobile-menu-open .mobile-menu {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--fun-blue);
  color: #fff;
  font-size: 2.8rem;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 8px 20px;
  z-index: 2;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: var(--fun-pink); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
  margin-left: 27px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 17px;
  padding: 11px 16px;
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: var(--secondary); color: var(--primary); }

/* HIDE MAIN NAV ON MOBILE */
@media (max-width: 1020px) {
  .main-nav { gap: 9px; }
  .main-nav a { font-size: .98rem; padding: 7.5px 11px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 6px; }
  .main-nav a { font-size: .95rem; }
}
@media (max-width: 820px) {
  .main-nav { gap: 3.3px; }
  .main-nav a { font-size: .94rem; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 23px 0;
  border-radius: 30px 30px 0 0/18px 18px 0 0;
  box-shadow: 0 -10px 38px -8px rgba(60,22,87,0.08);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  font-size: .98rem;
}
.footer-brand, .footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px; /* breathing space */
}
.footer-brand img {
  width: 48px; height: auto; margin-bottom: 3px;
}
.footer-links {
  gap: 10px;
}
.footer-links a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .97rem;
  margin-bottom: 3px;
  transition: color 0.16s;
}
.footer-links a:hover { color: var(--fun-blue); }
.footer-contact img {
  width: 20px; height: 20px; margin-right: 4px; vertical-align: middle;
}
.footer-contact span { color: var(--accent); font-size: .95rem; }

@media (max-width: 980px) {
  footer .container { flex-direction: column; align-items: flex-start; gap: 15px; }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 30000;
  background: #fff;
  border-top: 5px solid var(--secondary);
  box-shadow: 0 -2px 18px -3px rgba(60,22,87,0.12);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  animation: cookieBannerDrop 0.75s ease;
}
@keyframes cookieBannerDrop {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1rem;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cookie-btn {
  background: var(--fun-pink);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 21px;
  padding: 8px 30px;
  margin: 0 0 0 0;
  transition: background .21s, color .14s;
  cursor: pointer;
}
.cookie-btn.accept { background: var(--fun-green); color: var(--primary); }
.cookie-btn.reject { background: var(--fun-pink); color: #fff; }
.cookie-btn.settings { background: var(--fun-blue); color: #fff; }
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary); color: var(--primary);
}

/* ========== COOKIE MODAL ========== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(60,22,87,0.35);
  z-index: 50001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 42px rgba(60,22,87,0.14);
  max-width: 98vw;
  width: 410px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: modalUp 0.31s;
}
@keyframes modalUp { from { transform: scale(0.93) translateY(60px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.cookie-modal header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 7px;
  background: none;
  box-shadow: none;
  padding: 0;
}
.cookie-modal-close {
  background: #fff;
  border: 2px solid var(--fun-blue);
  color: var(--fun-blue);
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.75rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  transition: background 0.13s, color 0.13s;
  display: flex;
}
.cookie-modal-close:hover { background: var(--fun-blue); color: #fff; }
.cookie-modal h2 { color: var(--primary); font-size: 1.28rem; }
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: var(--fun-green);
  margin-right: 6px; vertical-align: middle;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.cookie-modal .category-essential {
  color: var(--fun-blue);
  font-weight: 700;
}
.cookie-modal .category-essential input[type="checkbox"] {
  display: none;
}
.cookie-modal .category-analytics, .cookie-modal .category-marketing {
  color: var(--primary); font-weight: 500;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 13px;
}
.cookie-modal .cookie-btn {
  padding: 8px 25px;
  font-size: 1rem;
}

/* ========== ANIMATION: Micro-interactions ======= */
.cta-btn, .cta-btn.primary, .card, .feature-item, .testimonial-card, .callout, .main-nav a, .card-container > .card, .mobile-nav a, .footer-links a, .category-tabs span, .categories span, .cookie-btn {
  transition: box-shadow 0.22s, background 0.19s, color 0.18s, transform 0.18s;
}
.card, .feature-item, .testimonial-card, .event-cards > div, .blog-list > div, .faq-list > div, .contact-details > div {
  will-change: transform, box-shadow;
}

/* ========== SPACING & LAYOUT RESPONSIVE ========== */
@media (max-width: 1200px) {
  .container { max-width: 980px; }
}
@media (max-width: 1000px) {
  .container { max-width: 760px; }
  .footer-brand img { width: 38px; }
}
@media (max-width: 880px) {
  .container { max-width: 99vw; }
  footer .container, header .container { padding: 0 7px; }
}
@media (max-width: 768px) {
  .container { padding: 0 9px; }
  .section, .callout { padding: 24px 6px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; margin-bottom: 10px; }
  h3 { font-size: .96rem; }
  .feature-grid, .event-list, .event-cards, .blog-list, .faq-list, .contact-details {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  footer .container { flex-direction: column; gap: 23px; }
  .testimonial-card, .feature-item, .card, .faq-list > div, .contact-details > div, .event-cards > div, .blog-list > div {
    min-width: unset;
    max-width: 99vw;
  }
  .callout { border-radius: 22px; padding: 20px 3px; }
}
@media (max-width: 530px) {
  .hero { padding: 45px 0 24px 0; border-radius: 0 0 28px 28px; }
  .footer-brand img { width: 30px; }
}

/* Adequate margins for all cards/sections */
.card-container > *, .feature-grid > *, .event-list > *, .event-cards > *, .blog-list > *, .faq-list > *, .contact-details > * {
  margin-bottom: 20px !important;
}
.section:not(:last-child) { margin-bottom: 60px !important; }

/* Ensure no element overlaps, use flex-wrap: wrap */
.card-container, .feature-grid, .event-list, .event-cards, .blog-list, .faq-list, .contact-details, .content-grid, .text-image-section {
  flex-wrap: wrap;
  gap: 20px;
}

/* === GENERAL FORMS, INPUTS === */
input, select, textarea {
  border: 2px solid var(--fun-blue);
  border-radius: 13px;
  padding: 10px 12px;
  margin: 7px 0 11px 0;
  outline: none;
  font-size: 1rem;
  transition: border-color .13s;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--fun-pink);
}
label { font-weight: 700; color: var(--primary); font-size: 1.01rem; }

/* === Special utility classes if needed === */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.gap-2 { gap: 8px !important; }
.gap-4 { gap: 24px !important; }

/* Hide cookie modal when not active */
.cookie-modal-overlay[hidden], .cookie-modal[hidden], .cookie-banner[hidden] { display: none !important; }

/* Misc playful details */
h1, h2, .cta-btn, .callout h2, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
}

/* Fun shadow, bounce micro-animation for CTAs on hover */
.cta-btn:hover, .cta-btn:focus {
  animation: bounceY .31s 1;
}
@keyframes bounceY {
  0% { transform: scale(1) translateY(0); }
  60% { transform: scale(1.09) translateY(-4px); }
  100% { transform: scale(1) translateY(0); }
}

/* Section spacing for extra breathing room */
.section, .callout, .hero, .thank-you { margin-bottom: 60px; }

/* =========== END =========== */
