/* style.css – Starbreeze Arc Golfakademie – Scandinavian Clean Design */
/* 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,
main, 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #fafbfa;
  color: #1A4636;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1A4636;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #E5B157;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
section {
  background: #fff;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-size: 2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1A4636;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
  color: #1A4636;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.17rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
  color: #1A4636;
}
p, li, blockquote, address, dl, dd {
  font-size: 1rem;
  color: #255244;
  margin-bottom: 12px;
}
blockquote {
  border-left: 4px solid #E5B157;
  padding-left: 16px;
  font-style: italic;
  color: #1A4636;
  background: #F6F6F1;
  margin-top: 8px;
  margin-bottom: 8px;
}
dl, dt, dd {
  margin-bottom: 8px;
}
dt {
  font-weight: 600;
  color: #1A4636;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* SECTION SPACING PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,70,54,0.04);
  padding: 24px;
  flex: 1 1 280px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 24px rgba(26,70,54,0.10);
  transform: translateY(-2px) scale(1.01);
}
.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;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f7f9f6;
  border-radius: 10px;
  padding: 18px 16px;
  box-shadow: 0 1px 4px rgba(26,70,54,0.05);
}

/**********************
  NAVIGATION
**********************/
header {
  background: #EAF0E4;
  border-bottom: 1px solid #dde7d3;
  position: relative;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 28px;
}
nav img {
  height: 48px;
  width: auto;
  margin-right: 32px;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin: 0 16px;
}
nav ul li {
  margin-bottom: 0;
}
nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1A4636;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}
nav ul li a:hover, nav ul li a:focus {
  background: #E5B157;
  color: #1A4636;
}
nav .cta.primary {
  display: inline-block;
  background: #1A4636;
  color: #fff;
  border-radius: 24px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 28px;
  margin-left: 22px;
  transition: background 0.19s, box-shadow 0.19s, color 0.18s;
  box-shadow: 0 2px 8px rgba(26,70,54,0.03);
  border: none;
  cursor: pointer;
}
nav .cta.primary:hover,
nav .cta.primary:focus {
  background: #E5B157;
  color: #1A4636;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #1A4636;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 6px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  z-index: 501;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E5B157;
  color: #1A4636;
  outline: none;
}
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(233, 240, 228, 0.99);
  z-index: 99999;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.76, .12, .27, .96);
  box-shadow: -3px 0 14px rgba(26,70,54,0.08);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #1A4636;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 6px;
  width: 46px;
  height: 46px;
  align-self: flex-end;
  margin: 24px 24px 8px 0;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 1001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E5B157;
  color: #1A4636;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 24px 32px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  color: #1A4636;
  font-weight: 500;
  padding: 12px 2px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5B157;
  color: #1A4636;
}
@media (max-width: 1020px) {
  nav ul {
    gap: 16px;
  }
}
@media (max-width: 950px) {
  nav ul,
  nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/**********************
  HERO STYLES
**********************/
section:first-of-type {
  background: #EAF0E4;
  border-bottom: 1px solid #dde7d3;
}

/**********************
  LISTS & ICON ITEMS
**********************/
ul {
  list-style: none;
}
li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #255244;
}
li img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/**********************
  CTA BUTTONS
**********************/
.cta {
  display: inline-block;
  background: #EAF0E4;
  color: #1A4636;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
  border: none;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,70,54,0.03);
}
.cta:hover, .cta:focus {
  background: #E5B157;
  color: #1A4636;
  box-shadow: 0 3px 14px rgba(26,70,54,0.09);
  outline: none;
  transform: translateY(-1px) scale(1.01);
}
.cta.primary {
  background: #1A4636;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #E5B157;
  color: #1A4636;
}

/**********************
  TESTIMONIALS
**********************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(26,70,54,0.07);
  min-width: 256px;
  max-width: 480px;
  border-left: 6px solid #E5B157;
  color: #163424;
}
.testimonial-card .stars {
  font-size: 1.3rem;
  color: #E5B157;
  letter-spacing: 1.5px;
  margin-bottom: -4px;
}
.testimonial-card blockquote {
  color: #15331F;
  font-size: 1.01rem;
  background: transparent;
  border-left: 0 solid #E5B157;
  margin: 0;
  padding-left: 0;
}
.testimonial-card span {
  color: #6A7B74;
  font-size: 0.99rem;
  font-style: italic;
  margin-top: -4px;
}

/**********************
  TABLE STYLES
**********************/
table {
  width: 100%;
  margin: 18px 0 22px 0;
  background: #FAFAF6;
  border-radius: 8px;
  box-shadow: 0 2px 9px rgba(26,70,54,0.05);
  font-size: 1rem;
  overflow: hidden;
}
thead {
  background: #EAF0E4;
}
td, th {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid #e1e6d5;
}
tbody tr:last-child td {
  border-bottom: none;
}
th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #18483A;
  font-size: 1.02rem;
}
td {
  color: #255244;
  font-size: 0.97rem;
}

/**********************
  FAQ & DLs
**********************/
dl {
  margin-bottom: 20px;
}
dt {
  margin-bottom: 8px;
  color: #1A4636;
  font-weight: 700;
}
dd {
  margin-bottom: 15px;
  padding-left: 14px;
  color: #255244;
}

/**********************
  FOOTER
**********************/
footer {
  background: #f3f6f2;
  border-top: 1px solid #dde7d3;
  padding: 36px 0 18px 0;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  font-size: 1rem;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 8px;
}
footer ul li {
  margin-bottom: 0;
}
footer ul a {
  color: #255244;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.18s;
}
footer ul a:hover, footer ul a:focus {
  color: #E5B157;
  outline: none;
}
footer address {
  font-style: normal;
  color: #657c6b;
  font-size: 0.98rem;
}
footer address a {
  color: #336652;
  text-decoration: underline;
  transition: color 0.2s;
}
footer address a:hover, footer address a:focus {
  color: #E5B157;
}

/**********************
  COOKIE CONSENT BANNER
**********************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F7F9F6;
  box-shadow: 0 -4px 22px rgba(26,70,54,0.10);
  border-top: 2px solid #E5B157;
  z-index: 100000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 28px;
  font-size: 1rem;
  animation: cookieFadeIn 0.7s ease;
}
@keyframes cookieFadeIn {
  0% {transform: translateY(100%); opacity:0;}
  100% {transform:translateY(0); opacity:1;}
}
.cookie-banner__text {
  flex: 1 1 60%;
  color: #18483A;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  background: #E5B157;
  color: #1A4636;
  border-radius: 24px;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin: 0;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(26,70,54,0.05);
  transition: background 0.18s, color 0.16s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #1A4636;
  color: #fff;
  outline: none;
}
.cookie-btn.outline {
  background: transparent;
  color: #1A4636;
  border: 2px solid #1A4636;
}
.cookie-btn.outline:focus, .cookie-btn.outline:hover {
  background: #EAF0E4;
  color: #1A4636;
}

/**********************
  COOKIE MODAL
**********************/
.cookie-modal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 98vw;
  width: 430px;
  background: #F7F9F7;
  border-radius: 16px;
  box-shadow: 0 6px 36px rgba(26,70,54,.14);
  padding: 35px 30px 27px 30px;
  z-index: 100001;
  transform: translate(-50%, -48%) scale(1.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s cubic-bezier(.44,.13,.54,.78), transform 0.33s cubic-bezier(.44,.13,.54,.78);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: bold;
  color: #18483A;
}
.cookie-modal__close {
  background: #1A4636;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  border-radius: 4px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal__close:focus, .cookie-modal__close:hover {
  background: #E5B157;
  color: #1A4636;
  outline: none;
}
.cookie-modal__body {
  font-size: 1rem;
  color: #255244;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: #1A4636;
  font-weight: 600;
  cursor: pointer;
}
.cookie-category input[type='checkbox'] {
  accent-color: #E5B157;
  width: 18px;
  height: 18px;
}
.cookie-category .always-on {
  color: #6A7B74;
  font-size: 0.97rem;
  font-style: italic;
  margin-left: 5px;
}
.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}

/**********************
  SIMPLE ANIMATIONS / HOVER
**********************/
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.16s, transform 0.15s, background 0.15s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 6px 20px rgba(26,70,54,0.13);
  background: #F7FAF3;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(229,177,87,0.10), 0 2px 22px rgba(26,70,54,0.11);
  background: #F8F8F8;
  transform: translateY(-2px) scale(1.02);
}

/**********************
  UTILITIES
**********************/
.text-section {
  margin-bottom: 28px;
}

/**********************
  RESPONSIVENESS
**********************/
@media (max-width: 820px) {
  .container {
    padding: 0 12px;
  }
  .section {
    padding: 32px 8px;
  }
}
@media (max-width: 650px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.10rem; }
  h3 { font-size: 1rem; }
  .footer,
  nav img {
    height: 38px;
  }
  .section {
    padding: 20px 4px;
    margin-bottom: 36px;
  }
  .testimonial-card, .card {
    padding: 16px 10px;
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 750px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 6px;
    gap: 13px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 9px;
    width: 100%;
  }
}

/**********************
  Z-INDEX
**********************/
header,
.mobile-menu,
.cookie-banner,
.cookie-modal {
  z-index: 9999;
}

/**********************
  CUSTOM SCROLLBAR (Webkit only)
**********************/
::-webkit-scrollbar {
  width: 8px;
  background: #e8eddd;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #cfd9cb;
  border-radius: 8px;
}

/**********************
  FORM ELEMENTS (if present)
**********************/
input, textarea, select {
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid #dde7d3;
  border-radius: 6px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F7F9F6;
  color: #222;
  margin-bottom: 14px;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #E5B157;
  outline: none;
}
button, .cta, .cookie-btn {
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/**********************
  MISC
**********************/
hr {
  border: 0;
  height: 1px;
  background: #dde7d3;
  margin: 32px 0;
}

/**********************
  VISUAL SEPARATORS
**********************/
.section:not(:last-child) {
  border-bottom: 1px solid #e8eddd;
}

/**********************
  HIDE ELEMENTS WHEN NOT NEEDED
**********************/
.mobile-menu,
.cookie-modal {
  display: none;
}
.mobile-menu.open,
.cookie-modal.open {
  display: flex;
}

/* END: Starbreeze Arc Scandinavian Clean */
