/* =====================================================
   Breeze Hold Academy – Scandinavian Clean CSS Framework
   All pages – Mobile-first, Flexbox-only, Brand controls
   ===================================================== */

/* ===============================
   RESET/NORMALIZE
=============================== */
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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F7F9FA;
  color: #262B40;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #F7F9FA;
  color: #262B40;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ===============================
   TYPOGRAPHY
=============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #262B40;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
p, ul, li {
  color: #354156;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong {
  color: #262B40;
  font-weight: 600;
}
.text-section h3 {
  margin-top: 16px;
  margin-bottom: 10px;
}

/* ===============================
   LAYOUT CONTAINERS
=============================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(38,43,64,0.04), 0 1.5px 3px rgba(38,43,64,0.05);
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===============================
   NAVIGATION
=============================== */
header {
  background: #fff;
  border-bottom: 1px solid #e7eaf0;
  box-shadow: 0 1px 6px rgba(38,43,64,0.03);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 18px 16px 18px 16px;
}

header img[alt="Breeze Hold Academy"] {
  height: 38px;
  width: auto;
  margin-right: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #262B40;
  padding: 6px 2px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f5f7fb;
  color: #0d1031;
}

.cta-primary {
  background: #FFE66D;
  color: #323237;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 28px;
  box-shadow: 0 2px 8px rgba(255,230,109,0.06);
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  margin-left: 24px;
  display: inline-block;
  letter-spacing: 0.02em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffe24e;
  box-shadow: 0 4px 25px rgba(255,230,109,0.12);
  color: #10111a;
}

/* ===============================
   MOBILE MENU
=============================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #262B40;
  background: transparent;
  border: none;
  height: 48px;
  width: 48px;
  border-radius: 8px;
  margin-left: 16px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f5f7fb;
  color: #0d1031;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 6px 32px rgba(38,43,64,0.14);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.8,0,.2,1);
  z-index: 3000;
  padding: 0 36px;
  opacity: 0.97;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 24px;
  margin-bottom: 10px;
  background: #F7F9FA;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  color: #262B40;
  border: none;
  transition: background 0.12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFE66D;
  color: #0d1031;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #262B40;
  padding: 14px 0 10px 0;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
  font-weight: 500;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D1D7E0;
  color: #10111a;
}

@media (min-width:769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width:1023px) {
  header .container {
    min-height: 60px;
    padding: 14px 7px 14px 10px;
  }
  .cta-primary {
    margin-left: 12px;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
  }
  .cta-primary {
    margin-left: 8px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .cta-primary {
    display: none !important;
  }
  header .container {
    padding-right: 0px;
  }
  header img[alt="Breeze Hold Academy"] {
    height: 32px;
    margin-right: 8px;
  }
}


/* ===============================
   SECTIONS & SPACING
=============================== */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

/* ===============================
   FEATURE GRID & CARDS
=============================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 18px;
  width: 100%;
}
.feature {
  flex: 1 1 220px;
  background: #F7F9FA;
  border-radius: 12px;
  padding: 26px 22px 20px 22px;
  box-shadow: 0 2px 6px rgba(38,43,64,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  margin-right: 0;
}
.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #262B40;
}
.feature:hover, .feature:focus {
  box-shadow: 0 4px 22px rgba(38,43,64,0.12);
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 900px) {
  .feature {
    min-width: 210px;
  }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 18px 14px;
  }
}

/* ===============================
   TESTIMONIALS
=============================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #f7f9fa;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(38,43,64,0.04);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 545px;
  border-left: 5px solid #FFE66D;
  position: relative;
  transition: box-shadow 0.16s;
}
.testimonial-card p {
  color: #232739;
  font-size: 1.08rem;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #323237;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 20px rgba(38,43,64,0.12);
}
@media (min-width: 900px) {
  .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
  }
}

/* ===============================
   CARDS / GENERIC
=============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(38,43,64,0.04);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 20px 22px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 22px rgba(38,43,64,0.1);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============================
   BUTTONS & INTERACTIVE
=============================== */
button, .btn,
input[type="submit"],
input[type="button"] {
  background: #FFE66D;
  color: #232739;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 8px 24px;
  border: none;
  outline: none;
  box-shadow: 0 1.5px 6px rgba(255,230,109,0.06);
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.2s, transform 0.12s;
  letter-spacing: 0.02em;
}
button:hover, button:focus,
.btn:hover, .btn:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #ffe24e;
  color: #10111a;
  box-shadow: 0 3px 20px rgba(255,230,109,0.17);
  transform: translateY(-1px) scale(1.04);
}

.btn-secondary {
  background: #262B40;
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #10111a;
  color: #FFE66D;
}

.btn-link {
  background: transparent;
  color: #262B40;
  border: none;
  padding: 0;
  box-shadow: none;
  text-decoration: underline;
}
.btn-link:hover, .btn-link:focus {
  color: #FFE66D;
  background: none;
}

/* ===============================
   LISTS & MISC
=============================== */
ul, ol {
  margin-left: 18px;
  margin-bottom: 14px;
  color: #353e50;
  font-size: 1rem;
  line-height: 1.7;
}
.text-section ul li, ul li, ol li {
  padding-left: 0;
  margin-bottom: 9px;
  list-style: disc outside;
}
.text-section ul img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  height: 19px;
  width: 19px;
}

/* ===============================
   FOOTER
=============================== */
footer {
  background: #fff;
  border-top: 1px solid #e0e2e6;
  margin-top: 48px;
  padding-top: 24px;
  padding-bottom: 24px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.92rem;
  color: #42507e;
  padding: 5px 3px;
  border-radius: 3px;
  transition: background 0.12s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFE66D;
  color: #262B40;
}

footer p {
  color: #8891ac;
  font-size: 0.97rem;
}
.footer-contact p {
  color: #5b6686;
  font-size: 0.93rem;
}
@media (min-width: 900px) {
  footer .container {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
  .footer-nav {
    gap: 28px;
  }
}

/* ===============================
   COOKIE CONSENT BANNER
=============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 5300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fffbe3;
  border-top: 2px solid #FFE66D;
  box-shadow: 0 -2px 24px rgba(38,43,64,0.04);
  padding: 22px 18px;
  gap: 26px;
  font-size: 1.04rem;
  min-height: 60px;
  line-height: 1.6;
  transition: transform 0.32s, opacity 0.2s;
}
.cookie-consent-banner.hide {
  transform: translateY(160px);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  color: #262B40;
  margin-right: 12px;
  font-size: 0.97rem;
}
.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-consent-banner .cookie-btn {
  background: #FFE66D;
  border: none;
  color: #232739;
  padding: 8px 19px;
  font-size: 1rem;
  margin-left: 2px;
  margin-bottom: 0;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.15s, box-shadow 0.2s, transform 0.12s;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  background: #fff58b;
  color: #0d1031;
  box-shadow: 0 3px 20px rgba(255,230,109,0.19);
  transform: translateY(-1px) scale(1.04);
}
.cookie-consent-banner .cookie-btn.settings {
  background: #262B40;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.settings:hover, .cookie-consent-banner .cookie-btn.settings:focus {
  background: #161827;
  color: #FFE66D;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.98rem;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38,43,64,0.3);
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 35px 28px 26px 28px;
  box-shadow: 0 4px 32px rgba(38,43,64,0.12);
  max-width: 420px;
  min-width: 270px;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.26rem;
  margin-bottom: 10px;
}
.cookie-setting-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-switch {
  width: 41px;
  height: 23px;
  border-radius: 12px;
  background: #D1D7E0;
  position: relative;
  transition: background 0.14s;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-switch.active {
  background: #FFE66D;
}
.cookie-switch .handle {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(38,43,64,0.09);
  transition: left 0.16s;
}
.cookie-switch.active .handle {
  left: 21px;
  background: #fffbe7;
}
.cookie-modal-content .close-cookie-modal {
  position: absolute;
  top: 12px; right: 14px;
  background: #F7F9FA;
  color: #262B40;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem;
  border: none;
  transition: background 0.12s;
}
.cookie-modal-content .close-cookie-modal:hover,
.cookie-modal-content .close-cookie-modal:focus {
  background: #FFE66D;
  color: #0d1031;
}
.cookie-modal-content .cookie-btn {
  margin-top: 16px;
}


/* ===============================
   RESPONSIVE DESIGN (General)
=============================== */
@media (max-width:600px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section {
    padding: 26px 7px;
  }
  section {
    padding: 23px 0;
    margin-bottom: 36px;
  }
  h1 {
    font-size: 1.63rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .card, .feature {
    padding: 12px 7px;
  }
}

/* ========== Utility Classes ========== */
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.pad-16 { padding: 16px !important; }
.mb-16 { margin-bottom: 16px !important; } 
.mt-24 { margin-top: 24px !important; }
.align-center { align-items: center !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.justify-between { justify-content: space-between !important; }

/* ========== Accessibility ========== */
:focus {
  outline: 2px solid #FFE66D;
  outline-offset: 2px;
}

@media (max-width: 420px) {
  .cookie-modal-content { padding: 18px 4px 16px 7px; }
}

/* ========== Hide visually, not for screen readers ========== */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  top: auto;
  overflow: hidden;
}

/* ========== Animations & Transitions ========== */
@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
  .feature, .feature:hover, .feature:focus,
  .testimonial-card, .testimonial-card:hover, .testimonial-card:focus,
  .card, .card:hover, .card:focus {
    transition: box-shadow 0.22s, transform 0.18s;
  }
  .cta-primary, button, .cookie-btn {
    transition: background 0.18s, color 0.15s, box-shadow 0.2s, transform 0.12s;
  }
  .mobile-menu {
    transition: transform 0.35s cubic-bezier(.8,0,.2,1);
  }
  .cookie-consent-banner {
    transition: transform 0.32s, opacity 0.2s;
  }
  .cookie-modal, .cookie-modal.hide {
    transition: opacity 0.22s;
  }
}

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