/* Mazenel Breeze - Elegant Classic Modern CSS */
/* ====================================================
   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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F5F7FA;
  color: #23293E;
  font-family: 'Roboto', 'Georgia', serif;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  padding-left: 1.5em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ====================================================
   BRAND TYPOGRAPHY & COLORS
==================================================== */
:root {
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --color-primary: #23293E;
  --color-secondary: #F5F7FA;
  --color-accent: #F4B942;
  --color-light: #FFFFFF;
  --color-dark: #23293E;
  --color-muted: #DFE3E8;
  --color-text: #23293E;
  --color-heading: #23293E;
  --color-link: #23293E;
  --color-link-hover: #F4B942;
  --color-card-bg: #FFFFFF;
  --color-shadow: rgba(35,41,62,0.08);
  --transition: all 0.2s ease;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-heading);
  font-weight: 500;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, address {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
  color: var(--color-primary);
}
.subheadline {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: #697188;
  margin-bottom: 20px;
}
a {
  color: var(--color-link);
  transition: color 0.15s;
}
a:hover, a:focus {
  color: var(--color-link-hover);
}


/* ====================================================
   SECTIONS & SPACING
==================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* MANDATORY FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  overflow: hidden;
  transition: transform .16s, box-shadow .16s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(35,41,62,0.14);
  transform: translateY(-3px) scale(1.01);
}
.content-grid, .feature-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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(35,41,62,0.08);
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 440px;
  transition: box-shadow .16s;
}
.testimonial-card p {
  font-style: italic;
  color: #23293E;
  font-size: 1.06rem;
  margin-bottom: 7px;
}
.testimonial-card strong {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #6d6f74;
}
.testimonial-card:hover {
  box-shadow: 0 3px 18px rgba(35,41,62,0.17);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Proper gap for flex layouts */
.content-wrapper > *, .feature-grid > * {
  flex: 1 1 260px;
  min-width: 260px;
  background: var(--color-card-bg);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 1px 10px rgba(35,41,62,0.03);
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .15s;
}
.feature-grid > *:hover {
  box-shadow: 0 2px 18px rgba(244,185,66,0.12), 0 2px 16px rgba(35,41,62,0.1);
  transform: translateY(-2px) scale(1.006);
}
.feature-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 14px;
}

/* Remove card styling for normal lists */
.content-wrapper ul, .content-wrapper ol {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 0 1.2em;
  margin: 0 0 12px 0;
}
.content-wrapper li {
  margin: 0 0 8px 0;
  font-size: 1rem;
}


/* ====================================================
   MAIN NAVIGATION & HEADER
==================================================== */
header {
  background: var(--color-light);
  box-shadow: 0 1px 14px rgba(35, 41, 62, 0.03);
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 20px;
  max-width: 1060px;
  margin: 0 auto;
}
.main-nav img {
  height: 42px;
  margin-right: 26px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.04rem;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--color-primary);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  background: var(--color-muted);
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 30px;
  box-shadow: 0 0.5px 2px rgba(244,185,66,0.08);
  margin-left: 8px;
  transition: background .16s, color .14s, box-shadow .14s, transform .1s;
  border: none;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #e2a923;
  color: var(--color-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 2px 8px rgba(244,185,66,0.15);
}

/* ====================================
   Mobile Navigation Burger Menu
==================================== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 8px;
  font-size: 2rem;
  padding: 8px 16px;
  color: var(--color-primary);
  position: absolute;
  top: 15px;
  right: 22px;
  z-index: 70;
  border: 1px solid var(--color-muted);
  box-shadow: 0 1px 10px rgba(35,41,62,0.04);
  transition: color .2s, background .2s;
}
.mobile-menu-toggle:hover {
  color: var(--color-accent);
  background: var(--color-muted);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 9990;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.8, .01, .16, 1);
  box-shadow: 0 6px 32px rgba(35,41,62,0.18);
  padding-top: 28px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  margin: 8px 26px 12px 0;
  padding: 0 8px;
  cursor: pointer;
  z-index: 10000;
  transition: color .17s;
}
.mobile-menu-close:hover {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  font-size: 1.22rem;
  padding: 30px 34px;
  width: 100vw;
}
.mobile-nav a {
  padding: 10px 0;
  font-family: var(--font-display);
  color: var(--color-primary);
  border-radius: 4px;
  font-weight: 500;
  transition: color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: var(--color-muted);
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 10px;
    padding: 12px 8px;
  }
  .main-nav img {
    margin-right: 10px;
    height: 38px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 1.5vw;
  }
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .main-nav a {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .header, header {
    padding: 0 0 3px 0;
  }
  .container {
    padding: 0 5px;
  }
}
/* ====================================================
   HERO & HEADLINES
==================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
@media (max-width: 600px) {
  section {
    padding: 28px 0 34px 0;
    margin-bottom: 44px;
  }
}

/* ====================================================
   FOOTER
==================================================== */
footer {
  background: #23293E;
  color: var(--color-secondary);
  padding: 38px 0 18px 0;
  margin-top: 60px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 24px;
  font-size: 1rem;
}
.footer-nav a {
  color: #F4B942;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 2px 7px;
  transition: color .14s, background .14s;
  border-radius: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F8E0B4;
  color: #23293E;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.footer-brand img {
  height: 32px;
}
.footer-brand span {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #F5F7FA;
}

/* ====================================================
   BUTTONS, FORMS, MICRO-INTERACTIONS
==================================================== */
.btn-primary, .mobile-nav a.btn-primary {
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: 8px;
  font-family: var(--font-display);
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1.5px 6px rgba(244,185,66,0.08);
  transition: background .14s, color .14s, box-shadow .15s, transform .1s;
  border: none;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #eabc45;
  color: #23293E;
  box-shadow: 0 3px 11px rgba(244,185,66,0.15);
  transform: scale(1.04) translateY(-2px);
}

/* For forms (should be added if a contact form is present) */
input, textarea, select {
  border: 1px solid #C5C8CD;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  background: #FFF;
  color: var(--color-primary);
  transition: border .14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-accent);
  outline: none;
}
label {
  font-family: var(--font-display);
  font-size: 1.07rem;
  margin-bottom: 7px;
  color: var(--color-primary);
}

/* ====================================================
   RESPONSIVE FLEXBOX LAYOUTS
==================================================== */
@media (max-width: 900px) {
  .content-grid, .feature-grid {
    gap: 16px;
  }
  .content-wrapper > *, .feature-grid > * {
    padding: 14px 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 500px) {
  .feature-grid > *, .content-wrapper > * {
    padding: 10px 4px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.08rem;
  }
}

/* ====================================================
   COOKIE CONSENT BANNER & MODAL
==================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #F5F7FA;
  color: #23293E;
  box-shadow: 0 -2px 18px rgba(35,41,62,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 36px 22px 24px;
  z-index: 9999;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform .42s cubic-bezier(.62,.22,.35,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--font-display);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 24px;
  margin: 0;
  border: none;
  outline: none;
  transition: background .14s, color .14s;
}
.cookie-banner .accept-btn {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #e2a923;
  color: var(--color-light);
}
.cookie-banner .reject-btn {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #2d3758;
  color: var(--color-accent);
}
.cookie-banner .settings-btn {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-muted);
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: var(--color-muted);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,41,62, 0.26);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg .25s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  color: #23293E;
  box-shadow: 0 6px 24px rgba(35,41,62,0.20);
  border-radius: 18px;
  max-width: 440px;
  padding: 36px 27px 24px 27px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalPopIn .33s cubic-bezier(.75,.02,.4,1);
}
@keyframes modalPopIn {
  from { transform: scale(0.93) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .category-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 11px;
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 36px;
  height: 22px;
  display: inline-block;
  margin-left: 10px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #CED3DC;
  border-radius: 12px;
  transition: background .16s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: var(--color-accent);
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  transition: transform .18s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(35,41,62,0.08);
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(14px);
}
.cookie-modal .category-row.essential .toggle-switch {
  opacity: 0.68;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px; right: 13px;
  font-size: 1.53rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  transition: color .13s;
  z-index: 6;
}
.cookie-modal .modal-close:hover {
  color: var(--color-accent);
}

/* For mobile banner and modal */
@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 8px 17px 13px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 18px 8px;
    font-size: 1rem;
  }
}

/* ====================================================
   INTERACTIVE MICRO-EFFECTS
==================================================== */
*:focus {
  outline: 2px solid #F4B942;
  outline-offset: 2px;
}
a:focus {
  outline: 2px dotted #F4B942;
}

.card, .testimonial-card, .feature-grid > *, .btn-primary {
  transition: box-shadow .16s, transform .10s;
}


/* ====================================================
   UTILITIES
==================================================== */
.hide-xs {
  display: block;
}
@media (max-width: 600px) {
  .hide-xs {
    display: none !important;
  }
}

/* Hide scroll when mobile menu or modal active */
body.menu-open, body.cookie-modal-open {
  overflow: hidden !important;
}

::selection {
  background: #fae5bc;
}

/* End of Mazenel Breeze CSS */
