/* Dawn Breeze Outdoor – Professional Corporate Responsive CSS
---------------------------------------------------------------
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F2F5E5;
  color: #1F3D2B;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  margin: 0 0 24px 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #295676;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1F3D2B;
  text-decoration: underline;
}

/* BRAND VARIABLES (NO CSS VARS for compatibility) */
/* COLOR PALETTE */
/*
brand-primary: #1F3D2B (very dark blue-green)
brand-secondary: #4C837A (muted teal)
brand-accent: #F2F5E5 (very light warm gray/green)
accent-blue: #295676 (for links/buttons)
pure-white: #fff
dark-gray: #222C2A;
light-gray: #E4E7ED;
*/

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1F3D2B;
  letter-spacing: -0.01em;
  line-height: 1.18;
}
h1 { font-size: 2.2rem; margin-bottom: 24px; }
h2 { font-size: 1.6rem; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1rem; }
p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222C2A;
  margin-bottom: 12px;
}
strong, b { font-weight: bold; }
.text-section p, .text-section ul, .text-section ol { font-size: 1.05rem; }

/* STRUCTURE & LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 32px;
}

/* FLEXBOX LAYOUTS */
.feature-grid,
.service-cards,
.testimonial-cards,
.footer-nav,
.brand-awards,
.workshop-highlights,
.event-teasers,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(44,60,68,0.10);
  margin-bottom: 20px;
  flex: 1 1 280px;
  border: 1px solid #E4E7ED;
  min-width: 260px;
  max-width: 400px;
}
.testimonial-card p {
  font-size: 1rem;
  color: #1F3D2B;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-card span {
  color: #295676;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(44,60,68,0.12);
  padding: 28px 24px 20px 24px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 310px;
  border: 1px solid #E4E7ED;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.service-card:hover {
  box-shadow: 0 6px 24px 0 rgba(29,70,90,0.12);
  border-color: #4C837A;
}
.service-card h3 { font-size: 1.07rem; margin-bottom: 12px; font-family: 'Montserrat', Arial, sans-serif;}
.service-card span {
  margin-top: 12px;
  color: #4C837A;
  font-weight: 600;
  font-size: 1rem;
}
/* Feature Grid Items */
.feature-grid {
  gap: 24px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(44,60,68,0.08);
  padding: 28px 18px 24px 18px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #E4E7ED;
  transition: box-shadow 0.17s, border-color 0.15s;
  gap: 10px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 22px 0 rgba(44,60,68,0.15);
  border-color: #4C837A;
}
.feature-grid img {
  width: 40px;
  height: 40px;
}

/* Content Grid Example */
.content-grid > * {
  flex: 1 1 280px;
  min-width: 200px;
  margin-bottom: 20px;
}

/* Utility Panels */
.commitment-panel, .brand-awards, .equipment-ratings, .event-teasers, .workshop-highlights {
  background: #E4E7ED;
  padding: 16px 22px;
  border-radius: 9px;
  font-size: 1rem;
  color: #1F3D2B;
  margin: 20px 0 12px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.brand-awards img, .equipment-ratings img, .event-teasers img, .workshop-highlights img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

/* LISTS & BLOCKS */
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 6px;
  padding-left: 2px;
}

.address-block {
  margin: 12px 0 20px 0;
  padding: 12px 16px;
  background: #E4E7ED;
  border-radius: 6px;
}
.location-map img {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

/* BUTTONS & CTA */
.cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  padding: 12px 28px;
  background: #4C837A;
  color: #fff;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 8px 0 rgba(76,131,122,0.07);
  cursor: pointer;
  margin: 12px 8px 0 0;
  transition: background 0.17s, box-shadow 0.19s, color 0.17s;
  text-align: center;
  text-decoration: none;
}
.cta.primary {
  background: #295676;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1F3D2B;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(44,60,68,0.13);
}
.cta:hover, .cta:focus {
  background: #295676;
  color: #fff;
  box-shadow: 0 3px 10px 0 rgba(76,131,122,0.13);
  text-decoration: none;
}
button, .cta {
  outline: 0;
}

/* HEADER / NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #E4E7ED;
  padding: 0;
}
.logo-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  min-height: 70px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.logo-nav > a {
  padding: 8px 0;
  min-width: 48px;
}
.logo-nav img {
  width: auto;
  min-width: 44px;
  height: 44px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 32px;
  flex: 1 1 auto;
}
nav.main-nav a {
  color: #295676;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 7px;
  font-size: 1.03rem;
  transition: background 0.19s, color 0.18s;
}
nav.main-nav a:hover,
nav.main-nav a.active,
nav.main-nav a:focus {
  background: #E4E7ED;
  color: #1F3D2B;
  text-decoration: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1F3D2B;
  margin-left: auto;
  cursor: pointer;
  padding: 10px 13px;
  border-radius: 7px;
  transition: background 0.14s, color 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E4E7ED;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1250;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  box-shadow: 0 6px 32px 0 rgba(44,60,68,0.14);
  padding: 42px 22px 32px 22px;
  min-width: 250px;
  width: 90vw;
  max-width: 420px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1F3D2B;
  align-self: flex-end;
  margin-bottom: 32px;
  cursor: pointer;
  transition: color 0.12s, background 0.12s;
  padding: 7px 16px 8px 7px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #295676;
  background: #E4E7ED;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 8px 0;
}
.mobile-nav a {
  font-size: 1.06rem;
  color: #1F3D2B;
  padding: 14px 0 12px 0;
  border-radius: 7px;
}
.mobile-nav a:hover,
.mobile-nav a:focus{
  color: #295676;
  background: #E4E7ED;
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 1080px) {
  .nav-links { gap: 12px; }
}
@media (max-width: 900px) {
  nav.main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 900px) {
  .logo-nav {
    min-height: 56px;
    gap: 10px;
  }
  .logo-nav img { height: 38px; min-width: 32px; }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}
/* Overlay background for mobile menu */
body.mobile-menu-open:after {
  content: '';
  display: block;
  background: rgba(44,60,68,0.13);
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1200;
}

/* HERO/SPECIAL SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section .container {
  padding: 0;
}
section:nth-child(odd) {
  background: #fff;
}

/* CARDS & PANELS */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(44,60,68,0.13);
  border: 1px solid #E4E7ED;
  padding: 28px 16px 18px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, border-color 0.15s;
}
.card:hover {
  border-color: #4C837A;
  box-shadow: 0 6px 22px 0 rgba(29,70,90,0.13);
}

/* FOOTER */
footer {
  background: #1F3D2B;
  color: #E4E7ED;
  padding: 0;
}
footer .container { padding: 0 16px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 38px 0 20px 0;
  align-items: flex-start;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 165px;
}
.footer-nav nav a {
  color: #F2F5E5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  letter-spacing: 0.01em;
  padding: 4px 2px 4px 0;
  transition: color 0.16s;
}
.footer-nav nav a:hover {
  color: #4C837A;
  text-decoration: underline;
}
.footer-nav .contact-info {
  font-size: 0.99rem;
  color: #E4E7ED;
  min-width: 195px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-nav .contact-info img {
  width: 17px; height: 17px;
  vertical-align: middle;
  margin-right: 4px;
}
.footer-nav .legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 145px;
}
.footer-nav .legal-links a { color: #BFC5C1; font-size: 0.99rem; font-family: 'Montserrat', Arial, sans-serif; }
.footer-nav .legal-links a:hover { color: #4C837A; }
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  border-radius: 40px;
  background: #fff;
  width: 38px; height: 38px;
  justify-content: center;
  transition: background 0.11s, box-shadow 0.12s;
  box-shadow: 0 1px 6px 0 rgba(31,61,43,0.07);
}
.social-links a:hover {
  background: #4C837A;
}
.social-links img {
  width: 21px;
  height: 21px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 1080px) {
  .container { max-width: 850px; }
}
@media (max-width: 900px) {
  .container { max-width: 97vw; }
  .footer-nav { gap: 18px; }
  .service-cards, .feature-grid, .testimonial-cards {
    gap: 18px;
  }
}
@media (max-width: 800px) {
  section { padding: 30px 8px; }
  .footer-nav { flex-direction: column; gap: 22px; }
  .service-cards, .feature-grid, .testimonial-cards { flex-direction: column; gap: 14px; }
}
@media (max-width: 768px) {
  .service-cards, .feature-grid, .testimonial-cards, .brand-awards, .commitment-panel, .workshop-highlights, .social-links, .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: flex-start !important;
  }
  .content-wrapper, .container {
    padding: 0 8px;
  }
  .card, .service-card, .feature-grid > div, .testimonial-card {
    min-width: 0 !important;
    max-width: 100% !important;
  }
}
@media (max-width: 560px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1.01rem; }
  section { margin-bottom: 35px; padding: 22px 2vw; }
}

/* COOKIE CONSENT BANNER - FIXED BOTTOM */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 2005;
  background: #fff;
  border-top: 2px solid #295676;
  box-shadow: 0 -3px 26px 0 rgba(44,60,68,0.11);
  padding: 22px 18px 22px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222C2A;
  transition: transform 0.28s cubic-bezier(0.77,0.2,0.05,1.0);
  transform: translateY(0);
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 12px;
  margin-left: 22px;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 22px;
  border: none;
  background: #4C837A;
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  box-shadow: 0 1px 8px 0 rgba(44,60,68,0.09);
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.15s, color 0.13s;
}
.cookie-btn.primary { background: #295676; }
.cookie-btn.secondary { background: #E4E7ED; color: #1F3D2B; }
.cookie-btn.reject { background: #E85952; color: #fff; }
.cookie-btn:focus, .cookie-btn:hover { background: #1F3D2B; color: #fff; }
.cookie-btn.secondary:hover { background: #4C837A; color: #fff; }

@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    padding: 18px 6vw 18px 6vw;
  }
  .cookie-consent-banner .cookie-btns {
    margin-left: 0;
    gap: 10px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3200;
  background: rgba(44,60,68,0.14);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeInModal 0.25s;
}
@keyframes fadeInModal { 0% { opacity: 0;} 100% { opacity: 1; } }
.cookie-modal .cookie-modal-content {
  background: #fff;
  max-width: 430px;
  padding: 36px 26px 20px 26px;
  border-radius: 16px;
  box-shadow: 0 5px 28px 0 rgba(44,60,68,0.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1rem;
  color: #1F3D2B;
}
.cookie-modal h2 { font-size: 1.23rem; margin-bottom: 18px; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  width: 100%;
}
.cookie-category label {
  font-weight: 500;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  flex: 1 1 auto;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #E4E7ED;
  border-radius: 22px;
  transition: background 0.16s;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #4C837A;
}
.cookie-slider::before {
  content: "";
  position: absolute;
  height: 16px; width: 16px;
  left: 3px; top: 3px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.16s;
  box-shadow: 0 1px 2px #aaa2;
}
.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(20px);
}
.cookie-modal .cookie-modal-btns {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 8px; right: 18px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #1F3D2B;
  cursor: pointer;
  z-index: 3210;
  opacity: 0.75;
  transition: color 0.12s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #295676;
}

/* ANIMATIONS, MICRO-INTERACTIONS */
.cta, .cookie-btn {
  transition: background 0.15s, box-shadow 0.16s, color 0.14s;
}
.card, .service-card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.17s, border-color 0.18s; 
}
.card:hover, .service-card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 10px 38px 0 rgba(29,70,90,0.15);
  border-color: #295676;
}
nav.main-nav a, .footer-nav nav a {
  transition: background 0.18s, color 0.15s;
}
input, textarea, select {
  border: 1px solid #E4E7ED;
  border-radius: 6px;
  padding: 9px 11px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  width: 100%;
  margin-bottom: 18px;
  transition: border 0.13s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border: 1.8px solid #29455A;
  outline: none;
}

/* MISC UTILITIES */
.hidden {
  display: none !important;
}
.mt-24 { margin-top: 24px; }
.mb-18 { margin-bottom: 18px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-0 { margin-top: 0 !important; }
.ml-0 { margin-left: 0 !important; }
.text-center { text-align: center; }
.rounded {
  border-radius: 12px;
}
.shadow-sm {
  box-shadow: 0 2px 8px 0 rgba(44,60,68,0.10);
}

/* PRINT OPTIMIZATION */
@media print {
  body, header, main, footer, section, nav, .container, .content-wrapper {
    color: #1F3D2B !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  .cta, .cookie-consent-banner, .mobile-menu, .footer-nav, .social-links { display: none !important; }
}
