/* =============================================
   Flicker Station Yacht Club – Flicker Minimal
   Comprehensive Minimalist Flexbox CSS Styles
   ============================================= */
/* 1. CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #102A43;
  background: #fff;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}
li {
  margin-bottom: 0.6em;
  font-size: 1rem;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #102A43;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, address {
  margin-bottom: 18px;
  font-size: 1.06rem;
}
blockquote {
  border-left: 3px solid #B3C0CC;
  margin-left: 0;
  padding-left: 18px;
  color: #102A43;
  font-size: 1.05rem;
  background: #F8FAFC;
  font-style: italic;
}
/* 2. LAYOUT CONTAINERS & PATTERNS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(16,42,67,0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(16, 42, 67, 0.06);
  padding: 30px 26px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  min-width: 240px;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 8px 26px rgba(16, 42, 67, 0.11);
}
.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: #F7E6CE;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(16, 42, 67, 0.04);
  margin-bottom: 20px;
  transition: box-shadow .18s;
  color: #102A43;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(16,42,67,0.10);
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 3px solid #B3C0CC;
  margin: 0;
  padding-left: 16px;
  color: #102A43;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F8FAFC;
  border-radius: 12px;
  padding: 32px 22px;
  box-shadow: 0 2px 10px rgba(16,42,67,0.05);
}
.feature-item img {
  width: 32px;
  height: 32px;
}
/* 3. HEADER & NAVIGATION */
header {
  width: 100%;
  padding: 0 0 24px 0;
  margin-bottom: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(16,42,67,0.05);
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px 0 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #102A43;
  background: none;
  border-radius: 6px;
  padding: 7px 13px;
  transition: background .18s, color .18s;
  margin-bottom: 0;
}
header nav a.button-primary {
  background: #102A43;
  color: #fff;
  border-radius: 8px;
  padding: 9px 22px;
  font-size: 1.09rem;
  font-weight: 700;
  margin-left: auto;
  box-shadow: 0 2px 10px rgba(16,42,67,0.09);
  transition: background .18s, box-shadow .18s, color .18s;
}
header nav a.button-primary:hover {
  background: #B3C0CC;
  color: #102A43;
}
header nav a:hover,
header nav a:focus-visible {
  background: #F7E6CE;
  color: #102A43;
}
header nav img {
  height: 38px;
  width: auto;
  vertical-align: middle;
  margin-right: 12px;
}
/* MOBILE MENU */
.mobile-menu-toggle {
  position: absolute;
  right: 20px;
  top: 18px;
  display: none;
  background: #fff;
  border: none;
  color: #102A43;
  font-size: 2rem;
  padding: 7px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .18s, box-shadow .18s;
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  box-shadow: 0 2px 9px #B3C0CC33;
  background: #F7E6CE;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,42,67,0.97);
  z-index: 1200;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(0.77,0.2,0.05,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  position: absolute;
  top: 22px;
  right: 30px;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 7px;
  transition: background .14s;
  z-index: 1199;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #B3C0CC22;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  width: 100%;
  min-height: 320px;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 9px 18px;
  border-radius: 6px;
  transition: background .16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B3C0CC33;
}
@media (max-width: 1180px) {
  header nav {
    max-width: 100vw;
    gap: 14px;
    padding-right: 65px;
  }
}
@media (max-width: 900px) {
  header nav a.button-primary {
    margin-left: 0;
    margin-right: 0;
  }
  header nav {
    gap: 9px;
    padding-right: 85px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: none!important;
  }
}
/* 4. BUTTONS */
.button-primary {
  display: inline-block;
  background: #102A43;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 11px 28px;
  border: none;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(16,42,67,0.06);
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .17s, box-shadow .17s, color .18s, transform .13s;
}
.button-primary:hover, .button-primary:focus {
  background: #B3C0CC;
  color: #102A43;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px rgba(16,42,67,0.13);
}
.button-secondary {
  display: inline-block;
  background: #B3C0CC;
  color: #102A43;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background .18s, color .18s, transform .13s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #102A43;
  color: #fff;
  transform: translateY(-1px) scale(1.025);
}
.button-ghost {
  background: transparent;
  color: #102A43;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 16px;
  border-radius: 7px;
  border: 1px solid #B3C0CC;
  cursor: pointer;
  transition: background .18s, border .18s;
}
.button-ghost:hover, .button-ghost:focus {
  background: #F7E6CE;
  border-color: #102A43;
}
/* 5. GENERIC */
hr {
  border: none;
  border-top: 1px solid #B3C0CC66;
  margin: 30px 0;
}
.section > .container {
  padding: 0;
  width: 100%;
}
section {
  width: 100%;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 34px;
    padding: 28px 8px;
    border-radius: 0;
    box-shadow: none;
  }
  .card {
    min-width: unset;
    padding: 20px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 9px;
  }
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-item {
    padding: 17px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
}

/***** FLEX PATTERNS OVERRIDES *****/
.features, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* 6. HERO & HEADINGS */
.hero-subheadline, .subheadline {
  color: #B3C0CC;
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 0;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 0.7em;
  }
  h2 {
    font-size: 1.27rem;
  }
}
/* 7. SPACING UTILITY CLASSES */
.mt-2 { margin-top: 16px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.gap-32 { gap: 32px !important; }
.gap-24 { gap: 24px !important; }
.gap-16 { gap: 16px !important; }
/* 8. ICONS */
li img, address img {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  vertical-align: middle;
}
/* 9. LINKS */
main a:not(.button-primary):not(.button-secondary):not(.button-ghost) {
  color: #102A43;
  border-bottom: 1px solid #B3C0CC44;
  transition: color .15s, border-color .15s;
  font-weight: 500;
}
main a:not(.button-primary):not(.button-secondary):not(.button-ghost):hover,
main a:not(.button-primary):not(.button-secondary):not(.button-ghost):focus {
  color: #B3C0CC;
  border-bottom: 1.5px solid #B3C0CC;
}

/* 10. FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #F0F3F7;
  padding: 32px 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  font-size: 0.96rem;
  gap: 20px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
footer nav a {
  color: #B3C0CC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 3px 12px;
  border-radius: 5px;
  transition: background .15s, color .15s;
}
footer nav a:hover,
footer nav a:focus-visible {
  background: #F7E6CE;
  color: #102A43;
}
footer address {
  color: #102A43;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
  align-items: flex-start;
}
footer address img {
  margin-right: 7px;
}
footer p {
  color: #B3C0CC;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  footer {
    padding: 24px 0 2px 0;
    gap: 9px;
    margin-top: 32px;
  }
  footer address {
    font-size: 0.96rem;
    gap: 2px;
    margin-bottom: 3px;
  }
  footer nav {
    gap: 10px;
    padding: 0 10px;
  }
}
/* 11. COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1.5px solid #B3C0CC55;
  box-shadow: 0 -3px 12px #B3C0CC19;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 30px;
  z-index: 3000;
  transition: transform .34s cubic-bezier(0.8,0.25,0.14,1), opacity .24s;
}
.cookie-consent-banner.hidden {
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cc-content {
  font-size: 1.01rem;
  color: #102A43;
}
.cookie-consent-banner .cc-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-consent-banner .button-primary,
.cookie-consent-banner .button-secondary,
.cookie-consent-banner .button-ghost {
  font-size: 1rem;
  padding: 8px 18px;
  min-width: 90px;
}
@media (max-width: 680px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
    gap: 11px;
  }
  .cookie-consent-banner .cc-content {
    margin-bottom: 8px;
    max-width: 400px;
    line-height: 1.45;
  }
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(16,42,67,0.62);
  justify-content: center;
  align-items: center;
  transition: background .24s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  padding: 35px 28px 28px 28px;
  min-width: 340px;
  box-shadow: 0 6px 70px #102A4344;
  max-width: 90vw;
  max-height: 94vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalIn .32s cubic-bezier(0.7,0.29,0.23,1.07);
}
@keyframes cookieModalIn {
  0% { transform: translateY(40px) scale(0.96); opacity: 0.1; }
  100% {transform: none; opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.37rem;
  margin-bottom: 8px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.04rem;
}
.cookie-toggle {
  margin-left: auto;
  position: relative;
  width: 36px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #B3C0CC;
  border-radius: 30px;
  transition: background .19s;
}
.cookie-toggle .slider:before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 2.5px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform .19s;
  box-shadow: 0 1.5px 5px #102A4322;
}
.cookie-toggle input:checked + .slider {
  background: #102A43;
}
.cookie-toggle input:checked + .slider:before {
  transform: translateX(15px);
}
.cookie-toggle[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.64;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 18px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #B3C0CC;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #102A43;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 16px 5vw;
    min-width: unset;
  }
  .cookie-modal h2 {
    font-size: 1.08rem;
  }
}

/* 12. ACCESSIBILITY FOCUS */
a:focus-visible, button:focus-visible, .button-primary:focus {
  outline: 2px solid #102A43;
  outline-offset: 2px;
}

/* 13. MICRO-INTERACTIONS & TRANSITIONS */
.button-primary, .button-secondary, .button-ghost {
  transition: background .16s, color .17s, transform .13s, box-shadow .14s;
}
.card, .section, .testimonial-card {
  transition: box-shadow .19s, background .17s;
}

/* 14. TABLES (for potential CMS) */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
}
th, td {
  padding: 13px 9px;
  border-bottom: 1px solid #B3C0CC33;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #F7E6CE;
  color: #102A43;
}

/* 15. FORMS (if any in contact) */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border: 1.2px solid #B3C0CC55;
  border-radius: 7px;
  background: #F7FAFC;
  margin-bottom: 18px;
  width: 100%;
  transition: border .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #102A43;
  outline: none;
  background: #fff;
}
label {
  font-size: 1rem;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #102A43;
}

/* 16. TYPOGRAPHIC SCALE */
.font-xs { font-size: 0.91rem; }
.font-sm { font-size: 1rem; }
.font-md { font-size: 1.19rem; }
.font-lg { font-size: 1.4rem; }
.font-xl { font-size: 2rem; }
.font-xxl { font-size: 2.65rem; }

/* 17. HIDE OUTLINES FOR MOUSE USERS */
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) a:focus {
  outline: none;
}

/* 18. MINIMUM CARD SEPARATION (mobile wrap) */
@media (max-width: 700px) {
  .card-container, .content-grid, .features, .feature-list, .card-grid {
    flex-direction: column;
    gap: 12px !important;
  }
  .card {
    margin-bottom: 20px;
  }
}

/* 19. NO GRID, NO COLUMNS (FLEX ONLY!) */
/* All layouts are strictly flex patterns. No CSS grid or columns are used anywhere in this file. */
