/* ============================================================
   Blumen Rüger – Stylesheet
   ============================================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   WRAPPER
   ============================================================ */
.wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 10px;
}

#header .wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-block {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  display: block;          /* verhindert kleine Lücke unter dem Bild */
  height: 150px;            /* Beispiel – anpassen */
  width: auto;             /* Verhältnis beibehalten */
  max-width: 100%;
}
@media (max-width: 680px) {
  .logo-img {
    height: 90px;
  }
}


.logo-tulips svg {
  width: 72px;
  height: 88px;
}

.logo-text-main {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #333;
  letter-spacing: 1px;
  line-height: 1;
}

.logo-text-sub {
  font-size: 10px;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-tagline {
  margin-left: 12px;
  line-height: 1.35;
}

.logo-tagline span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 20px;
  color: #6aaa00;
}

.logo-tagline span.dark {
  color: #333;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  background: #6aaa00;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}

#nav .wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

#nav ul {
  list-style: none;
  display: flex;
  align-items: stretch;
}

#nav ul li {
  position: relative;
}

#nav ul li a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 11px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  transition: background .18s;
}

#nav ul li a:hover,
#nav ul li.active > a {
  background: #518200;
}
@media (max-width: 680px) {
  #nav .wrapper {
    flex-wrap: wrap;
  }

  #nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-search {
    width: 100%;
    justify-content: center;
  }
}
/* Dropdown arrow */
#nav ul li .arrow {
  font-size: 9px;
  margin-top: 1px;
}

/* Sub-menu */
#nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 3px 8px rgba(0,0,0,.12);
  min-width: 200px;
  flex-direction: column;
  z-index: 200;
}

#nav ul li:hover > ul {
  display: flex;
}

#nav ul li ul li a {
  color: #333;
  background: #fff;
  padding: 9px 14px;
  font-weight: normal;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}

#nav ul li ul li:last-child a {
  border-bottom: none;
}

#nav ul li ul li a:hover {
  background: #f5f5f5;
  color: #6aaa00;
}

/* Search */
.nav-search {
  display: flex;
  align-items: center;
  padding: 6px 10px;
}

.nav-search form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
}

.nav-search input[type="text"] {
  border: none;
  outline: none;
  padding: 5px 10px;
  font-size: 13px;
  width: 130px;
  color: #555;
}

.nav-search button {
  background: none;
  border: none;
  padding: 5px 8px;
  cursor: pointer;
  color: #888;
  font-size: 14px;
}

.nav-search button:hover {
  color: #6aaa00;
}
.search-results {
  margin-top: 25px;
}

.search-result {
  background: #f7f7f7;
  border-left: 5px solid #76b900;
  padding: 12px 16px;
  margin-bottom: 12px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.search-result a {
  display: block;
  text-decoration: none;
  color: #2d2d2d;
}

.search-result:hover {
  background: #eef6e6;
  transform: translateX(2px);
}

.search-title {
  font-size: 18px;
  font-weight: 600;
}

.search-no-results {
  background: #fff4f4;
  border-left: 5px solid #d9534f;
  padding: 14px 16px;
}

.search-hint {
  font-size: 14px;
  color: #666;
}

/* ============================================================
   SLIDER
   ============================================================ 

#slider {
  aspect-ratio: 16/9;
  height: auto;
}


.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
*/

.slide-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 2;
}

.slide-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,.08);
  z-index:3;
  pointer-events:none;
}

.slide-caption h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 2px 5px rgba(0,0,0,.65);
}

.slide-caption p {
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: #ffe066;
  text-shadow: 1px 2px 5px rgba(0,0,0,.65);
  margin-top: 6px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.38);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 3px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}

.slider-btn:hover {
  background: rgba(0,0,0,.6);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .18s;
}

.slider-dot.active {
  background: #fff;
}

/* ============================================================
   SLIDER – KORREKT KOMPAKT
   ============================================================ */
#slider {
  position: relative;
  width: 100%;
  height: clamp(260px, 25vw, 420px);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
}
/*
 #slider {
  position: relative;
  width: 100%;
  height: 280px;        
  max-height: 280px;
  overflow: hidden;
  background: #222;
} 


/* Slides übereinander 
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
}
*/

/* Bild füllt genau die Slider-Höhe 
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
 */
@media (max-width: 680px) {
  #slider {
    height: 180px;   
  }

  .slide-caption h2 {
    font-size: 18px;
  }

  .slide-caption p {
    font-size: 14px;
  }
}


/* ============================================================
   CONTENT AREA
   ============================================================ */
#content-area {
  display: flex;
  gap: 32px;
  padding: 24px 0 32px;
}

/* Main column */
#main-content {
  flex: 1;
  min-width: 0;
}

#main-content h1 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: bold;
  color: #6aaa00;
  margin-bottom: 16px;
}

#main-content h2 {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}

#main-content p {
  font-size: 14px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 12px;
}

#main-content img {
  border-radius: 2px;
  margin: 12px 0;
}

.img-right {
  float: right;
  margin: 0 0 16px 20px !important;
  max-width: 220px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.info-box {
  background: #f9f9f9;
  border-left: 4px solid #6aaa00;
  padding: 14px 16px;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

.info-box a {
  color: #6aaa00;
  font-weight: bold;
}

.info-box a:hover {
  text-decoration: underline;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 14px;
}

.card h3 {
  font-size: 14px;
  font-weight: bold;
  color: #6aaa00;
  margin-bottom: 5px;
}

.card p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* Service list */

.service-item{
  margin: 28px 0;
}

.service-item img{
  display: block;
  margin: 12px auto 0 auto;
  width: 100%;
  max-width: 800px;
  height: auto;
}
@media (max-width: 680px) {
  .service-item img {
    height: auto;
    max-width: 100%;
  }
}

/*.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.service-item img {
  width: 640px;
  height: 440px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}*/

.service-item h3 {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 6px;
}

.service-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.contact-grid h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.contact-grid p {
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.5;
}

.divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 28px 0;
}

.content-image{
  margin: 30px 0;
  text-align: center;
}

.content-image img{
  width: 100%;
  max-width: 900px;   /* verhindert Überbreite */
  height: auto;
  border-radius: 6px; /* optional */
}

.slideshow{
  position: relative;
  max-width: 900px;     /* passt in deinen Content */
  margin: 20px 0;
}

.slideshow input{
  position: absolute;
  left: -9999px;        /* Radios verstecken */
}

.slides{
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16/9;   /* gleiche Höhe, modern */
  background: #eee;
}

.slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}

.slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Welche Folie sichtbar ist */
#s1:checked ~ .slides .slide:nth-child(1){ opacity: 1; }
#s2:checked ~ .slides .slide:nth-child(2){ opacity: 1; }
#s3:checked ~ .slides .slide:nth-child(3){ opacity: 1; }
#s4:checked ~ .slides .slide:nth-child(4){ opacity: 1; }
#s5:checked ~ .slides .slide:nth-child(5){ opacity: 1; }
#s6:checked ~ .slides .slide:nth-child(6){ opacity: 1; }
#s7:checked ~ .slides .slide:nth-child(7){ opacity: 1; }
#s8:checked ~ .slides .slide:nth-child(8){ opacity: 1; }

/* Dots */
.dots{
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.dots label{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
}

#s1:checked ~ .dots label:nth-child(1),
#s2:checked ~ .dots label:nth-child(2),
#s3:checked ~ .dots label:nth-child(3),
#s4:checked ~ .dots label:nth-child(4),
#s5:checked ~ .dots label:nth-child(5),
#s6:checked ~ .dots label:nth-child(6),
#s7:checked ~ .dots label:nth-child(7),
#s8:checked ~ .dots label:nth-child(8){
  background: #6aaa00;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
#sidebar {
  width: 260px;        /* empfohlen */
  flex-shrink: 0;
  box-sizing: border-box;
}

.sidebar-box {
  border: 1px solid #ddd;
  background: #fff;
  padding: 16px 18px;     /* statt 14px */
  margin-bottom: 18px;
  font-size: 13px;
  color: #333;
}
@media (max-width: 680px) {
  .sidebar-box {
    padding: 12px 14px;
  }
}

.sidebar-box h3 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.sidebar-box p {
  line-height: 1.55;
  margin-bottom: 3px;
}

.sidebar-box a {
  color: #6aaa00;
}

.sidebar-box a:hover {
  text-decoration: underline;
}

.sidebar-box .hours-label {
  font-weight: bold;
  text-decoration: underline;
  margin-top: 6px;
  display: block;
}

.sidebar-box .hours-label:first-of-type {
  margin-top: 0;
}

/* Video preview placeholder */

.sidebar-video{
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 6px;
}


.video-preview {
  position: relative;
  background: #333;
  aspect-ratio: 16/9;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  margin-top: 6px;
}

.video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #333;
  margin-left: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 14px 10px;
  text-align: center;
  margin-top: 10px;
}

#footer p {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

#footer a {
  font-size: 12px;
  color: #6aaa00;
}

#footer a:hover {
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE – simple mobile adjustments
   ============================================================ */
@media (max-width: 680px) {
  #content-area {
    flex-direction: column;
  }

  #sidebar {
    width: 100%;
  }

  .logo-tagline {
    display: none;
  }

  #nav ul li a {
    padding: 10px 8px;
    font-size: 11px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    flex-direction: column;
  }

  .service-item img {
    width: 100%;
    height: 160px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
