/* ========================== */
/*  VINTAGE RETRO RESET       */
/* ========================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, main, section, article, aside, nav, header, footer, figure, figcaption, menu {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse; border-spacing: 0;
}

/* Modern Normalize */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F5F5F0;
  color: #2D3130;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

:root {
  --primary: #114A34;
  --accent: #2D8C6B;
  --accent-dark: #1E634A;
  --cream: #F5F5F0;
  --retro-mustard: #E1B960;
  --retro-orange: #D97929;
  --retro-brown: #86592D;
  --retro-green: #6D8B74;
  --white: #fff;
  --shadow: 0 2px 14px 0 rgba(66,45,18,0.07);
  --radius: 12px;
  --radius-card: 18px;
  --font-display: 'Montserrat', Georgia, serif; /* Retro display */
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ========================== */
/*    TYPOGRAPHY SCALE/RETRO  */
/* ========================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: -1px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.18;
  margin-bottom: 16px;
  text-shadow: 0 2px 0 var(--retro-mustard);
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 14px;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  h2, .h2 { font-size: 1.4rem; }
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--retro-brown);
}
p, li {
  font-family: var(--font-body);
  color: #383832;
  font-size: 1.06rem;
  margin-bottom: 10px;
  line-height: 1.65;
}
strong, b {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.2px;
}
a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--retro-brown);
  text-decoration: underline;
}

/* ================ */
/*      CONTAINER   */
/* ================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ====================== */
/*     HEADER & NAV       */
/* ====================== */
header {
  background: var(--cream);
  border-bottom: 3px solid var(--retro-mustard);
  box-shadow: 0 1px 10px rgba(173,107,46,0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: sepia(0.25) contrast(1.11) hue-rotate(-8deg);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  padding: 4px 8px 2px 8px;
  border-radius: 6px;
  font-size: 1.04rem;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--retro-brown);
  color: var(--white);
}
.cta-btn {
  font-family: var(--font-display);
  background: var(--retro-mustard);
  color: var(--primary);
  padding: 10px 32px;
  border-radius: 999px;
  font-size: 1.11rem;
  font-weight: 700;
  box-shadow: 1px 4px 0 var(--retro-orange), var(--shadow);
  letter-spacing: 1px;
  border: none;
  border-bottom: 4px solid var(--retro-orange);
  margin-left: 22px;
  cursor: pointer;
  outline: none;
  transition: transform 0.11s, background 0.18s, color 0.2s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--white);
  transform: translateY(1px) scale(1.03);
  box-shadow: 0 2px 6px 0 rgba(173,107,46,0.13);
}
.cta-link {
  color: var(--retro-orange);
  font-weight: 600;
  font-family: var(--font-display);
  padding-left: 1px;
  text-decoration: underline;
  font-size: 1rem;
  background: none;
  border: none;
}
.cta-link:hover, .cta-link:focus {
  color: var(--retro-brown);
  text-decoration: underline wavy;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  width: 42px;
  height: 42px;
  font-size: 24px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.16s;
  box-shadow: 0 2px 6px 0 rgba(30,99,74,0.08);
  z-index: 31;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-brown);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: var(--cream);
  box-shadow: 2px 0 24px rgba(173,107,46,0.18);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.42,1.03,.49,1.16);
  z-index: 1111;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 24px 16px 24px;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--retro-brown);
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 1.4rem;
  border-radius: 50%;
  margin-bottom: 26px;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  font-size: 1.12rem;
  padding: 12px 0;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background 0.13s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-mustard);
  color: var(--white);
}

@media (min-width: 992px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 991px) {
  .main-nav { display: none !important; }
  .cta-btn { margin-left: 0; }
}

/* ====================== */
/*        MAIN            */
/* ====================== */
main {
  width: 100%;
  flex: 1 1 auto;
  background: var(--cream);
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* INDEX: HERO */
.hero {
  background: var(--retro-mustard);
  background-image: repeating-linear-gradient(135deg,rgba(225,185,96,0.14) 0,rgba(213,184,110,0.12) 10px,rgba(190,170,92,0.12) 32px);
  border-bottom: 4px solid var(--retro-brown);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 340px;
  padding: 38px 0;
  gap: 22px;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 5px 0 var(--white), 0 7px 9px rgba(173,107,46,0.07);
}
.hero p {
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.65;
  color: #594424;
  max-width: 520px;
}
.hero .cta-btn {
  margin-top: 18px;
  font-size: 1.21rem;
}
@media (max-width: 600px) {
  .hero { padding: 18px 0 12px 0; }
  .hero .content-wrapper { min-height: unset; padding: 14px 0; }
}

/* FEATURES FLEX LAYOUT  */
.features {
  background: var(--retro-green);
  border-radius: var(--radius-card);
  margin-bottom: 60px;
}
.features .content-wrapper {
  gap: 12px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 24px;
  margin-bottom: 0px;
}
.feature-grid li {
  flex: 1 1 260px;
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  box-shadow: 0 1px 7px 0 rgba(30,99,74,0.08), var(--shadow);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  border: 2.5px dashed var(--retro-brown);
}
.feature-grid img {
  width: 44px; height: 44px;
  margin-right: 8px;
  filter: sepia(0.3) saturate(1.2) hue-rotate(-6deg);
  flex-shrink: 0;
}
.feature-grid h3 {
  font-size: 1.09rem;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

/* ===========
   CARD & GRID LAYOUTS
=============== */
.services-overview .service-cards,
.language-cards,
.services-list-grid,
.link-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  justify-content: flex-start;
}
.service-card, .language-card, .card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px 22px 24px;
  width: 100%;
  max-width: 335px;
  min-width: 230px;
  box-shadow: var(--shadow),0 7px 14px 0 rgba(225,185,96,0.13);
  border: 2px solid var(--retro-orange);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.service-card .price, .card .price {
  font-family: var(--font-display);
  color: var(--accent-dark);
  font-size: 1.04rem;
  font-weight: 700;
  margin-top: 8px; margin-bottom: 0;
}
.service-card:hover, .language-card:hover, .card:hover {
  box-shadow: 0 4px 32px 0 rgba(213,184,110,0.25);
  transform: translateY(-4px) scale(1.03);
}

/* Cards Links  */
.card a {
  font-family: var(--font-display);
  color: var(--retro-orange);
  font-size: 1.01rem;
  margin-top: 8px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.7px;
  text-decoration:underline;
}
.card a:hover { color: var(--primary); }

/* ================
     SECTION FLEX LAYOUTS
================= */
.section, main section,
.about-snapshot, .services-overview, .testimonial-preview, .newsletter, .courses-guidance, .benefits, .faq, .study-tips-languages, .cta-banner, .about, .team, .values {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .service-cards, .language-cards, .team-bios, .faq-accordion { display: flex; flex-wrap: wrap; gap: 24px; }
.card, .bio, .faq-item, .testimonial-card { margin-bottom: 20px; position: relative; }
.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; padding: 20px; background: var(--white); color: #222; border-radius: var(--radius-card); margin-bottom: 20px;  box-shadow: 0 2px 7px 0 rgba(208,108,29,0.13), var(--shadow); border-left: 6px solid var(--retro-orange); font-family: var(--font-body); }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 768px) {
  .feature-grid, .service-cards, .language-cards, .services-list-grid, .team-bios, .card-container, .link-cards {
    gap: 16px;
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .service-card, .language-card, .card { max-width: 100%; }
  .hero .content-wrapper {
    align-items: flex-start;
    padding: 12px 0;
  }
}

/* ===== TESTIMONIAL CARDS & SLIDER ===== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.testimonial-card {
  background: var(--white);
  color: #222;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 18px 0 rgba(225,185,96,0.11);
  border-left: 6px solid var(--retro-orange);
  padding: 22px 20px 20px 28px;
  margin-bottom: 20px;
  min-width: 220px;
  font-size: 1.08rem;
  transition: transform 0.14s, box-shadow 0.16s;
}
.testimonial-card strong { color: var(--retro-brown); font-weight: 700; }
.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(225,185,96,0.17);
}
/* Slider Animation for demo: visible side by side, on mobile stack */
@media (max-width: 600px) {
  .testimonial-slider { flex-direction: column; gap: 12px; }
}

/*  SECTION PATTERNS (banner, benefits, knowledge-tips, etc)  */
.benefits, .about-snapshot, .newsletter, .cta-banner, .cta-section, .benefit-banner, .confirmation {
  background: var(--retro-mustard);
  border-radius: var(--radius-card);
  border-bottom: 4px solid var(--retro-brown);
}
.benefits .content-wrapper, .about-snapshot .content-wrapper, .newsletter .content-wrapper, .cta-banner .content-wrapper { align-items: center; text-align: center; }
.benefit-icons { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-icons li {
  display: flex; align-items: center; gap: 10px; background: var(--cream); padding: 10px 16px; border-radius: 8px; font-weight: 500; }
.benefit-icons img { width: 28px; height: 28px; opacity: 0.72; filter: sepia(.4) hue-rotate(-10deg); }

/* ================ */
/*    FAQ           */
/* ================ */
.faq-accordion { flex-direction: column; gap: 18px; }
.faq-item { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow); padding: 19px 22px 15px 22px; border-left: 6px solid var(--retro-green); }
.faq-item h3 { cursor: pointer; font-size: 1.10rem; color: var(--accent); margin-bottom: 8px; }
.faq-item p { margin-bottom: 0; }

@media (max-width: 740px) {
  .faq-accordion { gap: 10px; }
  .faq-item { padding: 11px 11px 8px 13px; }
}

/* ================ */
/*    TEAM BIOS     */
/* ================ */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.bio {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent-dark);
  padding: 18px 18px 15px 23px;
  min-width: 180px;
  max-width: 320px;
  margin-bottom: 20px;
}
.bio h3 { color: var(--retro-orange); font-size: 1.11rem; margin-bottom: 7px; }

/* ================ */
/*    FOOTER        */
/* ================ */
footer {
  background: var(--primary);
  color: var(--retro-mustard);
  padding: 0;
  padding-top: 49px;
  padding-bottom: 5px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.footer-nav a {
  color: var(--retro-mustard);
  opacity: 0.95;
  font-weight: 600;
  font-size: 1.01rem;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--retro-orange); }

.footer-contact {
  display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; align-items: center;
  font-size: 1rem;
  color: var(--cream);
}
.footer-contact p {
  display: flex; align-items: center; gap: 7px; color: var(--cream); }
.footer-contact img { width: 20px; height: 20px; opacity: 0.86; }
.footer-contact a {
  color: var(--retro-mustard); text-decoration: underline; font-size: 1.02rem; }
.footer-contact a:hover { color: var(--retro-orange); }
.footer-social {
  display: flex; gap: 19px; align-items: center; justify-content: center; margin-bottom: 11px;
}
.footer-social a img { width: 26px; height: 26px; opacity: 0.88; transition: opacity .13s; }
.footer-social a:hover img { opacity: 1; filter: brightness(1.11) drop-shadow(0 1px 2px #edd49e66); }
.footer-credits p {
  text-align: center; font-family: var(--font-display); font-size: 1.05rem; color: #e7d493; margin-top:11px; margin-bottom:0;}

@media (max-width: 760px) {
  .footer-contact { flex-direction: column; gap: 7px; }
  .footer-nav { flex-direction: column; gap: 5px; }
}

/* ================ */
/*    COOKIE BANNER */
/* ================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--retro-mustard);
  border-top: 3px solid var(--retro-brown);
  box-shadow: 0 -2px 24px 0 rgba(167,93,35,0.19);
  color: var(--primary);
  font-size: 1.1rem;
  padding: 20px 30px;
  z-index: 1333;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  animation: bannerIn 0.55s cubic-bezier(.61,1.12,.44,1.16);
}
@keyframes bannerIn {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 250px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.19s, color 0.18s, box-shadow 0.1s;
  font-weight: 700;
  box-shadow: 0 2px 7px rgba(208,108,29,0.03);
}
.cookie-accept { background: var(--accent-dark); color: #fff; }
.cookie-accept:hover { background: var(--retro-brown); }
.cookie-reject { background: none; color: var(--primary); border:2px dashed var(--primary); }
.cookie-reject:hover { background: var(--retro-mustard); color: var(--retro-brown); }
.cookie-settings { background: var(--retro-orange); color: #fff; }
.cookie-settings:hover { background: var(--retro-brown); color:var(--retro-mustard); }

@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 8px; font-size: .97rem; }
  .cookie-banner__actions { width: 100%; gap: 9px; }
}

/* ================ */
/*    COOKIE MODAL  */
/* ================ */
.cookie-modal {
  position: fixed;
  top:0; left: 0; width:100vw; height: 100vh;
  background: rgba(30,28,23,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2212;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.cookie-modal.active { opacity: 1; pointer-events: all; }
.cookie-modal__content {
  background: var(--cream);
  border: 3.5px solid var(--retro-orange);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow),0 8px 32px 0 rgba(225,185,96,0.13);
  min-width: 310px;
  max-width: 97vw;
  padding: 30px 20px 23px 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: modalIn 0.37s cubic-bezier(.61,1.12,.44,1.16);
}
@keyframes modalIn { from { transform:scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cookie-modal__header { font-family: var(--font-display); font-size: 1.4rem; color: var(--primary); margin-bottom:11px; }
.cookie-modal__categories { display: flex; flex-direction: column; gap:18px; }
.cookie-category {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--font-body);
  font-size: 1.07rem;
  color: var(--retro-brown);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--accent);
  width: 20px; height: 20px;
  border-radius: 50%;
  outline: 2px solid var(--retro-orange);
}
.cookie-modal__actions {
  display: flex; gap: 11px; margin-top: 14px; }
.cookie-modal .cookie-banner__btn { font-size: 1rem; padding: 9px 16px; }
.cookie-modal__close {
  position: absolute; top:14px; right: 30px; background: none; border:none; font-size: 1.7rem; color: var(--retro-orange); cursor: pointer; z-index: 9; }
.cookie-modal__close:hover { color: var(--retro-brown); }

/* ================ */
/* MISC & RETRO NOSTALGIC DECOR */
hr {
  border: 0; height:2px; background: var(--retro-brown); opacity: 0.13; margin:32px 0;
}
::-webkit-input-placeholder { color: #765e36; opacity: .98; }
::-moz-placeholder { color: #765e36; opacity: .98; }
:-ms-input-placeholder { color: #765e36; opacity: .98; }
::placeholder { color: #765e36; opacity: .98; font-family: var(--font-body);}

body, input, textarea, select, button {
  font-family: var(--font-body);
}

/* ============ RESPONSIVE SPACING FOR LAYOUTS =============== */
@media (max-width: 600px) {
  .container { padding: 0 8px; }
  .section, main section, .about-snapshot, .services-overview, .testimonial-preview, .newsletter, .cta-banner, .benefit-banner, .cta-section {
    padding: 18px 3px;
    margin-bottom: 32px;
  }
}

/* ================ */
/*   ANIMATIONS     */
/* ================ */
.cta-btn, .cta-link, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner__btn, .cookie-modal .cookie-banner__btn {
  transition: background .19s, color .19s, box-shadow .14s, transform .12s;
}
.card, .service-card, .language-card, .bio, .faq-item, .testimonial-card {
  transition: box-shadow .18s, transform .14s;
}

/* Accessibility outline */
a, button, input, select, textarea {
  outline-color: var(--retro-orange);
  outline-width: 2px;
  outline-offset: 2px;
}

/* ===========
   PRINT
============ */
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}

/* ================ */
/*   UTILITIES      */
/* ================ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center !important; }
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* ================ */
/* VINTAGE RETRO NOSTALGIC ELEMENTS & PATTERNS */
/* ================ */
.section {
  background: repeating-linear-gradient(-45deg,#F5F3E6 0 10px,#F7E9CF 10px 30px);
  border-radius: var(--radius);
  border: 1.5px dashed var(--retro-brown);
}

/* ========================= */
/* Forms & Inputs            */
/* ========================= */
input, textarea {
  font-size: 1rem;
  padding: 11px 14px;
  border-radius: 7px;
  border: 1.5px solid var(--accent-dark);
  background: #F5F3E6;
  margin-bottom: 14px;
  color: var(--primary);
}
input:focus, textarea:focus {
  outline: 2px solid var(--retro-mustard);
}

/* ========================= */
/* THANK YOU PAGE BUTTONS    */
/* ========================= */
.confirmation .cta-btn {
  margin-top: 18px;
  margin-bottom: 5px;
  font-size: 1.17rem;
}

/* ===============
   Pattern/Decorative Retro Effects (Discreet Dots/Lines)
=============== */
body::after {
  content: '';
  display: block;
  pointer-events: none;
  position: fixed;
  z-index: 0;
  left: 0; right: 0; bottom: 0;
  height: 48px;
  background: repeating-linear-gradient(-90deg,rgba(213,184,110,0.07) 0 8px,rgba(174,105,43,0.08) 8px 14px);
}

@media (max-width: 480px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1rem; }
  main, .container { padding: 0; }
}

/* ================ END OF CSS ================ */
