:root {
  --bg: #ffffff;
  --fg: #121212;
  --brand: #0cac94;
  --header: #0f1010;
  --accent: #0cac94;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body, button, a, p, h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #383a3a;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  }

  .brand-text:hover {
    color: #444847;
    transform: scale(1.03);
  }

.nav a {
  margin: 0 0.8rem;
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
}
.nav a:hover {
  color: var(--accent);
}

/* Hero section */
/* === HERO SLIDER === */
.hero {
  position: relative;
  width: 100%;
  height: 85vh; /* was 80vh */
  overflow: hidden; /* was hidden */
}

.slide {
  width: 100%;
  height: 100%; /* was 100% */
  display: none;
}

.slide.is-active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%; /* was 100% */
  object-fit: cover;      /* was cover */
  object-position: center; /* was 50% 70% */
  background: #000;  /* bars behind the image look intentional */
  border-radius: 0;
  display: block;
}

/* navigation arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 18px;
  transition: background-color 0.3s;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.6);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}
 

/* Sections */
.section {
  padding: 3rem 1rem;
}
h1, h2 {
  color: var(--accent);
  text-align: center;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.feature-grid li {
  background: #f5f5f5;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
}

/* Gallery */
/*.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.gallery img {
  width: 100%;
  border-radius: 6px;
}
  /* === GALLERY SECTION === */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
}

.gallery img {
  width: 280px;              /* all images same width */
  height: 190px;             /* all images same height */
  object-fit: cover;         /* crops evenly but keeps proportions */
  border-radius: 10px;       /* smooth corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button */
.wa-cta {
  display: inline-block;
  background: #0CAC94;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 2rem auto;
  text-align: center;
}
.wa-cta:hover {
  background: #1ebc57;
}

/* google maps*/
.map-container {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info {
  text-align: center;
  margin: 2rem auto;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.contact-info h2 {
  color: #0CAC94; /* your mint green */
  margin-bottom: 0.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.contact-info a {
  color: #0CAC94;
  text-decoration: none;
  font-weight: 500;
}

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

#google_translate_element {
  display: inline-block;
  margin-left: 1rem;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-simple img {
  display: none !important;
}

body {
  top: 0px !important;
}

/* Footer */
footer {
  text-align: center;
  background: #f1f1f1;
  padding: 1rem;
  font-size: 0.9rem;
  color: #333;
}







/* ========== Mobile-first base ========== */

/* Layout container */
.container {
  width: min(1100px, 100%);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Type scales that adapt to screen size */
:root {
  --step--1: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  --step-0:  clamp(1rem, 0.95rem + 0.4vw, 1.125rem);
  --step-1:  clamp(1.15rem, 1rem + 1vw, 1.35rem);
  --step-2:  clamp(1.35rem, 1.1rem + 1.8vw, 1.75rem);
}
body { font-size: var(--step-0); }
h1 { font-size: var(--step-2); line-height: 1.2; }
h2 { font-size: var(--step-1); line-height: 1.25; }

/* Header: brand + nav line up nicely */
.site-header { position: sticky; top: 0; background:#fff; z-index: 1000; }
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:.75rem; padding: .75rem 1rem; }
.brand-text { white-space: nowrap; }

/* Mobile nav */
.menu-toggle { 
  display: inline-flex; align-items:center; justify-content:center;
  width: 40px; height: 40px;
  font-size: 1.25rem; background: none; border: 0; cursor: pointer;
}
.nav { display: none; }
.nav.is-open { display:block; }
.nav a { display:block; padding:.75rem 0; }

/* Hero slider: show full image on phones */
.hero { width:100%; height:auto; overflow:visible; }
.slide { width:100%; height:auto; display:none; }
.slide.is-active { display:block; }
.slide img { 
  display:block; width:100%; height:auto; 
  object-fit: contain;          /* no cropping on phones */
  background:#000;              /* looks intentional if bars appear */
}

/* Gallery grid: equal tiles, auto wrap */
.gallery .grid {
  display:grid; gap:12px;
  grid-template-columns: repeat(2, 1fr);   /* 2 per row on phones */
}
.gallery img {
  width:100%; height:auto; display:block; 
  aspect-ratio: 4 / 3;          /* unified tile height */
  object-fit: cover;            /* nice crop inside the tile */
  border-radius: 6px;
}

/* Map responsive */
.map-container {
  width:100%;
  aspect-ratio: 16 / 9;          /* keeps it proportional */
  background:#f2f2f2;
}
.map-container iframe {
  width:100%; height:100%; border:0;
}

/* Buttons / tap targets */
.wa-cta, button, .btn {
  display:inline-flex; align-items:center; justify-content:center;
  min-height:44px; min-width:44px; padding:.75rem 1rem;
  border-radius:8px; text-decoration:none; font-weight:600;
}

/* Google Translate placement tidy-up */
#google_translate_element { margin-left: .5rem; }
.goog-te-banner-frame.skiptranslate { display:none !important; }
body { top: 0 !important; }

/* ========== Bigger screens ========== */
@media (min-width: 768px) {
  /* desktop nav visible, hamburger hidden */
  .menu-toggle { display:none; }
  .nav { display:flex; gap:1.25rem; }
  .nav a { padding:0; }

  /* hero can be taller on tablets/desktop */
  .hero { height:70vh; overflow:hidden; }
  .slide, .slide img { height:100%; }
  .slide img { object-fit: cover; }  /* fill the hero nicely */

  /* gallery: more columns when there’s room */
  .gallery .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .gallery .grid { grid-template-columns: repeat(4, 1fr); }
}


.side-title {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;

  width: 150px; /* breit wie im PDF */
  background: #ffffff;

  display: flex;
  justify-content: center;
  align-items: center;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-family: "Playfair Display", serif;
  font-size: 54px;           /* exakt dieser große Look */
  font-weight: 600;          /* schöne Stärke */
  letter-spacing: 0.35em;    /* viel Abstand wie im PDF */
  text-transform: uppercase;

  color: #000000;
  border-radius: 0 22px 22px 0;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.18); /* leichter PDF-Schatten */
  z-index: 300;
}

/* LEFT VERTICAL NAME STRIP */
.left-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background: #f5f5f5;
  padding: 40px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-strip span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 8px;
  color: #000;
}

main {
  margin-left: 120px;

}


/* Hide on small screens */
@media (max-width: 768px) {
  .side-title {
    display: none;
  }
}

.wa-cta {
  display: block;
  margin: 2rem auto; /* zentriert horizontal */
  text-align: center;
}

p.cta {
  text-align: center;
}
.section {
  text-align: center;
}

.wa-cta {
  margin: 2rem auto 3rem auto;
  display: inline-block;
}

.maps-btn {
  display: inline-block;
  background: #0CA55B;   /* Grün – gleiche Farbe wie WhatsApp-Button */
  color: white !important;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.2s;
}

.maps-btn:hover {
  background: #0a8d4d;
}

.maps-btn-container {
  text-align: center;
  margin: 2rem 0;
}


/* ===== PHONE FIXES ===== */
@media (max-width: 768px) {

main {
margin-left: 0 !important;
}

.side-title,
.left-strip {
display: none !important;
}

.hero img {
width: 100%;
height: auto;
}

.prev,
.next {
top: 50%;
transform: translateY(-50%);
}

.container {
padding-inline: 1rem;
}

.grid {
grid-template-columns: 1fr !important;
}

iframe {
width: 100% !important;
}
}

@media (max-width: 768px) {
html, body {
overflow-x: hidden;
width: 100%;
max-width: 100%;
}

.hero,
.slides,
.slide,
.slide.is-active {
width: 100% !important;
max-width: 100% !important;
overflow: hidden !important;
margin: 0 !important;
padding: 0 !important;
}

.slide img {
display: block;
width: 100% !important;
max-width: 100% !important;
height: auto !important;
margin: 0 auto !important;
object-fit: cover;
object-position: center center;
}

.container {
width: 100% !important;
max-width: 100% !important;
padding-left: 0 !important;
padding-right: 0 !important;
margin: 0 !important;
}

.prev,
.next {
z-index: 10;
}
}



/* ===== picture fixing in mobile size ===== */
@media (max-width: 768px) {
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
}


@media (max-width: 768px) {
.grid img {
width: 100%;
height: 120px;
object-fit: cover;
border-radius: 10px;
}
}


@media (max-width: 768px) {
.section {
padding: 1.5rem 1rem;
}
}