/* ====================== CSS RESET & NORMALIZATION ===================== */
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 {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ========================= CUSTOM PROPERTIES ========================== */
:root {
  --clr-primary: #295130;
  --clr-secondary: #F5F2EB;
  --clr-accent: #BC8A5F;
  --clr-accent-dark: #915D23;
  --clr-white: #fff;
  --clr-black: #181818;
  --clr-muted: #aaa;
  --shadow-main: 0 4px 16px rgba(45,60,35,.07);
  --radius-main: 16px;
  --ff-display: 'Merriweather', serif;
  --ff-body: 'Roboto', Arial, sans-serif;
}

/* ======================= TYPOGRAPHY & HEADINGS ======================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--clr-primary);
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  text-shadow: 2px 4px 0 #F8DCAA33, 0 2px 8px #00000009;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  color: var(--clr-accent);
  margin-top: 24px;
}
h3 {
  font-size: 1.32rem;
  color: var(--clr-primary);
  font-weight: 600;
}
strong {
  color: var(--clr-accent);
  font-weight: bold;
}
p {
  margin-bottom: 16px;
  color: var(--clr-primary);
}

/* ======================= LAYOUT & SPACING CLASSES ===================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--clr-white);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--clr-secondary);
  box-shadow: var(--shadow-main);
  border-radius: var(--radius-main);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  min-width: 220px;
  flex: 1 1 270px;
  transition: box-shadow .22s, transform .14s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 #bc8a5f33, 0 1px 4px #0002;
  transform: translateY(-4px) scale(1.025);
}
.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;
  color: var(--clr-primary);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 18px #bc8a5f17;
  margin-bottom: 20px;
  font-size: 1.08rem;
  font-family: var(--ff-display);
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Extra/Custom Layouts per HTML Structure */
.team-grid, .guest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 32px 0 0 0;
}
.team-grid > div, .guest-grid > div {
  flex: 1 1 260px;
  background: var(--clr-secondary);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 24px 20px 16px 20px;
  font-family: var(--ff-body);
  font-size: 1.04rem;
  margin-bottom: 20px;
}
.subscription-block ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.subscription-block li {
  background: #fff5ee;
  border-radius: 38px;
  box-shadow: 0 1px 8px #bc8a5f12;
  padding: 8px 18px 8px 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-primary);
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: var(--clr-secondary);
  border-radius: var(--radius-main);
  border: 2px dashed var(--clr-accent);
  margin-top: 20px;
}

/* ========================= NAVIGATION & HEADER ======================== */
header {
  background: var(--clr-white);
  box-shadow: 0 2px 28px #2951300d;
  z-index: 40;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 16px;
}
header img[alt="LandLeben Lauscher"] {
  height: 56px;
  max-height: 12vw;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: var(--clr-primary);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.088rem;
  padding: 6px 12px;
  transition: color 0.2s, background 0.16s, border-radius 0.2s;
  border-radius: 7px;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--clr-secondary);
  color: var(--clr-accent);
}
.main-nav .cta-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: 48px;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  padding: 8px 27px;
  margin-left: 12px;
  box-shadow: 0 3px 14px #bc8a5f17;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.18s, box-shadow 0.14s, transform 0.14s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--clr-accent-dark);
  color: var(--clr-white);
  box-shadow: 0 7px 27px #bc8a5f1c;
  transform: translateY(-2.5px) scale(1.03);
}

/* ======================= BUTTONS & CTAS GENERAL ======================= */
.cta-primary, .cta-secondary {
  display: inline-block;
  border-radius: 48px;
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 32px;
  text-align: center;
  font-size: 1.15rem;
  margin-top: 10px;
  box-shadow: 0 3px 14px #bc8a5f17;
  transition: background 0.22s, color 0.16s, box-shadow 0.16s, transform .14s;
  border: none;
}
.cta-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--clr-accent-dark);
  color: var(--clr-white);
  box-shadow: 0 8px 32px #bc8a5f2a;
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: var(--clr-white);
  color: var(--clr-primary);
  border: 2px solid var(--clr-accent);
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 5px 21px #bc8a5f14;
}
button:focus-visible {
  outline: 2px dashed var(--clr-accent);
  outline-offset: 3px;
}

/* ======================= MAIN PAGE SECTIONS & ULs ===================== */
ul li {
  margin-bottom: 18px;
  font-size: 1.03rem;
  color: var(--clr-primary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
ul li img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 10px;
}

.section ul {
  padding-left: 0;
}

/* ========================= TESTIMONIAL CARD ========================== */
.testimonial-card {
  background: var(--clr-white);
  color: var(--clr-black);
  font-family: var(--ff-display);
  font-size: 1.11rem;
  border-left: 6px solid var(--clr-accent);
  box-shadow: 0 2px 18px #bc8a5f19;
  margin-bottom: 20px;
  gap: 14px;
}
.testimonial-card span {
  color: var(--clr-primary);
  opacity: 0.75;
  font-size: 0.98rem;
  margin-top: 2px;
  font-family: var(--ff-body);
  font-style: italic;
  font-weight: 500;
}

/* =========================== FOOTER =============================== */
footer {
  background: var(--clr-primary);
  color: var(--clr-secondary);
  padding: 44px 0 0 0;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 20px;
  gap: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--clr-secondary);
  font-family: var(--ff-display);
  font-size: 1.08rem;
  margin-bottom: 2px;
  text-shadow: 0 1px 0 #0002;
  transition: color .21s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--clr-accent);
}
.contact-info p {
  color: var(--clr-secondary);
  font-family: var(--ff-body);
  font-size: 0.99rem;
  line-height: 1.7;
}
.contact-info img {
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 8px;
}
.footer-copy {
  padding-bottom: 12px;
  padding-left: 20px;
  font-size: 0.94rem;
  color: #d7ddc5;
  text-align: left;
}

/* ======================== MOBILE NAVIGATION ========================= */
.mobile-menu-toggle {
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 2.3rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 12px #bc8a5f1c;
  z-index: 110;
  transition: background 0.20s, transform 0.11s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--clr-accent-dark);
  transform: scale(1.08);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--clr-white);
  z-index: 250;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 3px 56px #2951302f;
}
.mobile-menu-close {
  background: var(--clr-primary);
  color: var(--clr-secondary);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 20px 16px 0 0;
  transition: background 0.20s, transform 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--clr-accent-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin: 38px 0 0 28px;
}
.mobile-nav a {
  font-size: 1.33rem;
  font-family: var(--ff-display);
  color: var(--clr-primary);
  padding: 7px 18px;
  border-radius: 13px;
  font-weight: 600;
  transition: background 0.17s, color 0.2s;
  min-width: 180px;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--clr-secondary);
  color: var(--clr-accent);
}

/* Hide navigation for mobile */
@media (max-width: 940px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 941px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================= COOKIE CONSENT BANNER ======================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--clr-primary);
  color: var(--clr-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 2222;
  padding: 22px 16px 20px 16px;
  box-shadow: 0 -4px 26px #29513023;
  font-size: 1.1rem;
  font-family: var(--ff-body);
  animation: fadein 1s;
}
@keyframes fadein {
  0% { opacity: 0; bottom: -48px; }
  100% { opacity: 1; bottom: 0; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-size: 1.02rem;
  font-family: var(--ff-display);
  font-weight: 600;
  border-radius: 32px;
  border: none;
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 7px 26px;
  margin-left: 5px;
  box-shadow: 0 2px 10px #bc8a5f11;
  transition: background 0.2s, transform 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--clr-accent-dark);
  transform: scale(1.03);
}
.cookie-banner .cookie-settings {
  background: var(--clr-secondary);
  color: var(--clr-primary);
  border: 2px solid var(--clr-accent);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--clr-accent);
  color: var(--clr-white);
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41,81,48,0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3010;
  transition: opacity .24s;
}
.cookie-modal .modal-content {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-radius: var(--radius-main);
  box-shadow: 0 8px 34px #29513029;
  padding: 36px 32px 28px 32px;
  min-width: 320px;
  max-width: 94vw;
  font-family: var(--ff-body);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popin .33s cubic-bezier(.62,-0.50,.52,1.56);
}
@keyframes popin {
  from { opacity:0; transform:scale(0.81); }
  to { opacity:1; transform:scale(1); }
}
.cookie-modal h3 {
  color: var(--clr-accent);
  font-family: var(--ff-display);
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.13rem;
  color: var(--clr-primary);
  font-family: var(--ff-body);
}
.cookie-category input[type="checkbox"] {
  width: 26px;
  height: 26px;
  accent-color: var(--clr-accent);
  border-radius: 8px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .modal-buttons button {
  border-radius: 32px;
  font-family: var(--ff-display);
  font-weight: 600;
  padding: 7px 22px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border: none;
  box-shadow: 0 1px 10px #bc8a5f15;
  font-size: 1.03rem;
  transition: background .15s;
}
.cookie-modal .modal-buttons button.secondary {
  background: var(--clr-white);
  border: 2px solid var(--clr-accent);
  color: var(--clr-primary);
}
.cookie-modal .modal-buttons button.secondary:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: 18px;
  padding: 0 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover {
  background: var(--clr-accent-dark);
}

/* ===================== RESPONSIVE LAYOUT & TYPOGRAPHY ================ */
@media (max-width: 949px) {
  .container {
    max-width: 99vw;
  }
  .main-nav a {
    font-size: 1rem;
  }
}
@media (max-width: 870px) {
  .footer-main {
    flex-direction: column;
    gap: 26px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .section {
    padding: 27px 5px;
    margin-bottom: 35px;
  }
  .content-grid, .team-grid, .guest-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    font-size: 1rem;
    flex-direction: column;
    gap: 8px;
    padding: 12px 10px;
  }
  .footer-main {
    flex-direction: column;
    gap: 14px;
  }
  .map-placeholder {
    min-height: 70px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.98rem;
  }
}

/* =================== DECORATIVE & ARTISTIC ELEMENTS =================== */
::selection {
  background: #FFE6B6;
  color: var(--clr-primary);
}
body {
  background:
    linear-gradient(120deg, #f5f2eb 77%, #FFE6B6 100%) no-repeat;
}
.section {
  position: relative;
  overflow: visible;
  /* Decorative brush overlay bottom right */
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  right: -25px;
  bottom: -20px;
  width: 98px;
  height: 42px;
  background: url('../assets/brush.svg') no-repeat center/contain;
  opacity: 0.09;
  pointer-events: none;
  z-index: 1;
}

.card {
  background: linear-gradient(100deg, #fff 85%, #FFE6B6 100%);
  border-left: 7px solid var(--clr-accent);
}
.card-container > .card:nth-child(2n) {
  border-left: 7px solid var(--clr-primary);
}

ul li strong {
  font-family: var(--ff-display);
  color: var(--clr-accent);
}

/* Animations - subtle, creative */
.cta-primary, .cta-secondary, .main-nav .cta-primary, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.13s, box-shadow 0.13s, transform .13s;
}
.card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 14px 32px #bc8a5f31;
  transform: scale(1.018) translateY(-2px);
  z-index: 10;
}

/* ================= FONT FACE FOR DISPLAY/BODY in fallback ================ */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* =================== CUSTOM ARTISTIC STYLE ADDITIONS ===================== */
body, .section, .card, .testimonial-card {
  /* playful background detail for artistic flavor */
}
body {
  /* textured background for subtle rustic look */
}

/* Artistic icon accent for card/feature sections */
ul li img {
  filter: drop-shadow(0 1.5px 0.5px #bc8a5f33);
  border-radius: 5px;
}

/* Artistic border for special list items */
ul li + li {
  border-top: 1.5px dashed #e7cfb1;
  padding-top: 10px;
}

/* Add spacing for all list blocks */
ul, .footer-nav {
  margin-bottom: 18px;
}

/* ================= FORM ELEMENTS (if any are added) ===================== */
input[type="text"], input[type="email"], textarea {
  border: 2px solid var(--clr-accent);
  border-radius: 12px;
  background: var(--clr-white);
  color: var(--clr-primary);
  padding: 9px 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: var(--ff-body);
  width: 100%;
  transition: border-color .13s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--clr-primary);
  outline: none;
}

/* ================= UTILITY HELPERS ===================== */
.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ================= PRINT OVERRIDE ======================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  body {
    background: #fff;
  }
}
