/* ================================================================== */
/*  Nature Organic CSS for GipfelGlanz Reisen - Mobile First, Flexbox  */
/* ================================================================== */

/************************** CSS RESET & BASE **************************/
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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #283226;
  background: #F3F7EE;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
  background-image: url('../assets/bg-texture.jpg');
  background-size: cover;
  background-repeat: repeat-y;
  background-position: top center;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #18516E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #75B75F;
  outline: none;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1em;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  width: 100%;
}

/************************** TYPOGRAPHY **************************/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&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, sans-serif;
  color: #18516E;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4 { font-size: 1.2rem; margin-bottom: 14px; }
p, li { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; color: #3C4530; margin-bottom: 12px; }
strong { font-weight: 700; color: #18516E; letter-spacing: -0.01em; }

@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
}

/************************** FLEXBOX LAYOUTS **************************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card-container, .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: 20px;
  box-shadow: 0 2px 12px 0 rgba(24,81,110,0.08), 0 1.5px 4px 0 rgba(108,138,90,0.10);
  margin-bottom: 20px;
  border-left: 6px solid #75B75F;
  flex-direction: column;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F3F7EE;
  border-radius: 18px;
  box-shadow: 0 1px 4px 0 rgba(24,81,110,0.06);
  padding: 20px 16px;
  flex: 1 1 220px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .feature-grid, .features, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/************************** NAVIGATION **************************/
header {
  padding: 0;
  position: relative;
  background: #E6EEE6;
  box-shadow: 0 1px 4px 0 rgba(108,138,90,0.07);
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  justify-content: flex-start;
}
.main-nav a {
  color: #18516E;
  padding: 7px 13px;
  border-radius: 22px;
  transition: background 0.17s, color 0.17s;
  font-weight: 500;
  background: none;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #c2ddb2;
  color: #143c4d;
}
.main-nav .cta.primary {
  background: #75B75F;
  color: #fff;
  font-weight: 700;
  border-radius: 25px;
  padding: 10px 24px;
  margin-left: 18px;
  transition: background 0.2s;
  box-shadow: 0 2px 10px 0 rgba(117,183,95,0.10);
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #18516E;
  color: #fff;
}
.main-nav img {
  height: 36px;
  margin-right: 18px;
}

/************************** MOBILE NAVIGATION **************************/
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #75B75F;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 102;
  box-shadow: 0 2px 8px 0 rgba(21, 80, 30, 0.12);
  transition: background 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #18516E;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  background: #F3F7EE;
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.76,.01,.18,.99);
  box-shadow: 0 0 0 500px rgba(40,50,38, 0.14);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #18516E;
  font-size: 2.1rem;
  margin: 18px 16px 10px 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 121;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #75B75F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  margin: 26px 32px;
  min-height: 60vh;
}
.mobile-nav a {
  color: #18516E;
  padding: 14px 0 14px 12px;
  font-size: 1.23rem;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #c2ddb2;
  color: #143c4d;
}

@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    justify-content: flex-start;
    gap: 26px;
  }
}
@media (max-width: 899px) {
  .main-nav {
    display: none !important;
  }
  header {
    padding-bottom: 0;
  }
}

/************************** HERO SECTIONS **************************/
.hero {
  background: #E6EEE6;
  border-radius: 36px;
  box-shadow: 0 2px 32px 0 rgba(40,81,56,0.10);
  margin: 30px 0 60px 0;
  padding: 36px 20px 42px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  position: relative;
}
.hero h1 {
  color: #18516E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero p {
  color: #22411C;
  font-size: 1.1rem;
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .hero {
    padding: 64px 48px 70px 48px;
    min-height: 280px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}

/************************** BUTTONS **************************/
.cta,
button,
input[type="submit"] {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.15rem;
  padding: 12px 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: #75B75F;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(117,183,95,0.13);
  transition: background 0.18s, transform 0.13s;
  outline: none;
  margin-top: 10px;
}
.cta.primary {
  background: #75B75F;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #18516E;
  color: #fff;
  transform: translateY(-2px) scale(1.015);
}
.cta:active {
  background: #3C4530;
  color: #FFF;
}
.cta.secondary {
  background: #18516E;
  color: #fff;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #5c8f5a;
  color: #fff;
}

/************************** CARDS **************************/
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1.5px 7px 0 rgba(117,183,95,0.10), 0 0.5px 2px 0 rgba(24,81,110,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 20px;
  transition: box-shadow 0.25s, transform 0.20s;
}
.card:hover {
  box-shadow: 0 6px 26px 0 rgba(117,183,95,0.14);
  transform: translateY(-3px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/************************** PRICING, TAGS, BADGES **************************/
.price-tag {
  display: inline-block;
  background: #d1e9cc;
  color: #22411C;
  font-size: 1rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 22px;
  box-shadow: 0 1px 4px 0 rgba(117,183,95,0.09);
  margin-top: 5px;
  margin-bottom: 8px;
}
/************************** SERVICE LISTS **************************/
.service-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
.service-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #F3F7EE;
  border-radius: 18px;
  padding: 20px 16px 18px 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px 0 rgba(24,81,110,0.05);
}
/************************** TESTIMONIALS **************************/
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(24,81,110,0.08), 0 1.5px 4px 0 rgba(108,138,90,0.10);
  border-left: 6px solid #75B75F;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 680px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #18516E;
  margin-bottom: 10px;
}
.testimonial-meta {
  font-size: 1rem;
  color: #5C7B50;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.testimonial-meta span {
  color: #75B75F;
  font-size: 1.25em;
  letter-spacing: 2px;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
    font-size: 1rem;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
}
/************************** FOOTER **************************/
footer {
  background: #e6eee6;
  padding: 36px 20px 24px 20px;
  margin-top: 38px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -1.5px 8px 0 rgba(108,138,90,0.07);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #3C4530;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #18516E;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.footer-info img {
  width: 54px;
  margin-bottom: 2px;
}
.footer-info p {
  text-align: center;
  color: #4E6042;
  font-size: 1rem;
}

/************************** COOKIE BANNER & MODAL **************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #22411C;
  color: #fff;
  z-index: 140;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 20px 14px 20px;
  box-shadow: 0 -2px 24px 0 rgba(24,81,110,0.18);
  gap: 12px;
  transition: transform 0.35s cubic-bezier(.76,.01,.18,.99);
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(100vh);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 7px;
}
.cookie-banner button {
  background: #75B75F;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #18516E;
}
.cookie-banner button.cookie-settings {
  background: #18516E;
  color: #fff;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #009150;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,50,38,0.20);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hidden {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal {
  background: #fff;
  color: #22411C;
  border-radius: 24px;
  min-width: 296px;
  max-width: 95vw;
  min-height: 150px;
  box-shadow: 0 8px 52px 0 rgba(24,81,110,0.20);
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalBounceIn 0.33s;
}
@keyframes modalBounceIn {
  0% { transform: scale(.6) translateY(170px); opacity: 0; }
  80% { transform: scale(1.05) translateY(-10px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #18516E;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #283226;
}
.cookie-category input[type="checkbox"] {
  accent-color: #75B75F;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.cookie-category.essential label { color: #18516E; font-weight: bold; }
.cookie-category.essential input { pointer-events: none; }
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: #75B75F;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #18516E;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #18516E;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 2;
}
.cookie-modal .modal-close:hover {
  color: #75B75F;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 16px 7vw 12px 7vw;
    min-width: 0;
    max-width: 99vw;
  }
}
/************************** MISC SPACING & UTILS **************************/
.text-section {
  margin-top: 8px;
  margin-bottom: 22px;
}
ul li {
  margin-bottom: 8px;
}
li img {
  width: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

@media (max-width: 600px) {
  section, .hero {
    padding: 24px 6vw;
    margin-bottom: 34px;
  }
  .footer-info {
    padding-bottom: 10px;
  }
}

/************************** MICRO-INTERACTIONS **************************/
.feature-item:hover, .feature-item:focus-within {
  background: #e6eee6;
  box-shadow: 0 4px 16px 0 rgba(117,183,95,0.11);
  border-left: 4px solid #75B75F;
  transition: box-shadow 0.20s, background 0.20s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 3px;
  border-radius: 12px;
  background: #e6eee6;
  object-fit: contain;
}
/************************** FORMS, INPUTS (if any in future) **************************/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 14px;
  border: 1.5px solid #d1e9cc;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #22411C;
  background: #f8fcf3;
  box-shadow: 0 0.5px 2px 0 rgba(117,183,95,0.09);
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #75B75F;
  outline: none;
}
/************************** ORGANIC SHAPES (decoration only) **************************/
.organic-decor {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.14;
  left: unset; right: unset; top: unset; bottom: unset;
}
/************************** COLOR PALETTES **************************/
:root {
  --primary: #18516E;
  --secondary: #75B75F;
  --accent: #F3F7EE;
  --earth1: #e6eee6;
  --earth2: #d1e9cc;
  --earth3: #4E6042;
  --brown: #a89262;
}
/************************** SELECTION HIGHLIGHT **************************/
::selection {
  background: #d1e9cc;
  color: #18516E;
}
/************************** PRINT  **************************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { color: #222; background: #fff; }
}
