/* ==========================================================================
   BASIS-STYLESHEET (Grid/Layout) für den Skill html-zu-joomla-akeeba
   Diese Datei liefert das GETESTETE, korrekte Layout-Gerüst (Spalten, Hero,
   Header, Footer, Nav, Galerie/Lightbox). Farben + Hero-Bilder pro Projekt
   über die CSS-Variablen bzw. .hero-<seite>-Klassen anpassen.

   WARUM ES DIESE DATEI GIBT — drei Fehler, die ohne sie immer wieder passieren:
   1) box-sizing: Joomla/Template setzen KEIN globales border-box. Spalten mit
      width:33.3333% + Padding sprengen dann die Reihe -> Boxen brechen um.
      => Spalten brauchen explizit box-sizing:border-box.
   2) Spezifität: Eine Basisregel wie `.section .col{width:100%}` (0,2,0) ist
      spezifischer als `.col-50` (0,1,0) und gewinnt -> Mehrspalter greifen nie,
      alles stapelt volle Breite (Bilder werden riesig).
      => Spalten-Utilities gleich spezifisch scopen: `.section .col-50` usw.
   3) Full-Width per width:100vw + negative Margins erzeugt einen horizontalen
      Scrollbalken (100vw enthält die Scrollbar-Breite).
      => Sektionen einfach als normale Block-Elemente voll breit laufen lassen.
   ========================================================================== */

:root{
  --text:#474747; --heading:#383838; --accent:#ae0000; --btn:#e71919;
  --footer:#484848; --light:#f7f7f7; --border:#e2e2e2; --maxw:1140px;
}

/* Layoutbereiche + Spalten IMMER border-box (Fix 1) */
.section, .section *, .hero, .hero-inner, .footer-inner, .footer-inner *,
.header-row, .brand-inner, .row-cols, [class*="col-"]{ box-sizing:border-box; }

.hero,.section,.footer-inner,.brand-inner{ font-family:'Poppins',Arial,sans-serif; color:var(--text); }
.section img,.hero img,.footer-inner img,.brand-inner img{ max-width:100%; height:auto; }

.section h1,.section h2,.section h3,.hero h1,.hero h2{ font-family:'Poppins',Arial,sans-serif; margin:0 0 10px; line-height:1.25; }
.section h1,.hero h1{ font-size:40px; font-weight:400; text-transform:uppercase; color:var(--heading); padding-bottom:10px; }
.section h2{ font-size:34px; font-weight:400; color:var(--heading); }
.section h3{ font-size:20px; font-weight:400; color:var(--accent); }
.section h4{ font-size:19px; font-weight:600; color:var(--heading); margin-top:22px; }
.section p{ margin:0 0 16px; } .section a{ color:var(--accent); }
.section ul,.section ol{ margin:0 0 16px; padding-left:22px; } .section li{ margin-bottom:6px; }

/* Sektionen: voll breit OHNE 100vw-Trick (Fix 3). #container ist bereits 100% breit. */
.section{ padding:55px 0; }
.section > .row-cols{ max-width:var(--maxw); margin:0 auto; padding:0 20px; display:flex; flex-wrap:wrap; align-items:flex-start; }
.section .col{ padding:0 15px; margin-bottom:24px; width:100%; }   /* mobile default: 1 Spalte */
.text-center{ text-align:center; }

/* Buttons */
.btn{ display:inline-block; cursor:pointer; font-family:'Poppins',Arial,sans-serif; font-size:20px; padding:15px 30px; border-radius:0; text-decoration:none; transition:.2s; border:2px solid var(--btn); }
.btn-default{ color:#333; background:transparent; }
.btn-default:hover{ background:var(--btn); color:#fff; text-decoration:none; }

/* Hero – voll breit als Block, position:relative nur fürs Overlay (Fix 3) */
.hero{ position:relative; min-height:520px; display:flex; align-items:center; justify-content:center; background-size:cover; background-position:center; color:#333; }
.hero::after{ content:""; position:absolute; inset:0; background:rgba(255,255,255,.30); }
.hero-inner{ position:relative; z-index:2; max-width:640px; text-align:center; background:rgba(255,255,255,.30); padding:38px 30px; margin:0 20px; }
.hero-kicker{ display:block; font-size:18px; font-weight:300; color:#1890d7; margin-bottom:14px; }
.hero h1,.hero h2{ color:#333; text-transform:uppercase; font-size:36px; line-height:1.2; margin-bottom:18px; }
.hero p{ font-size:18px; font-weight:300; color:#282828; margin-bottom:26px; }
/* Pro Seite: .hero-<alias>{ background-image:url('/images/…') } */

/* Team / Person */
.person-img{ width:100%; aspect-ratio:1/1; object-fit:cover; margin-bottom:14px; background:#eee; }
.person-name{ font-size:20px; font-weight:600; color:var(--heading); margin:6px 0 2px; }
.person-pos{ font-size:15px; color:#777; margin-bottom:10px; }
.person ul{ font-size:15px; line-height:1.5; }

/* Galerie + Lightbox */
.gal-title{ min-height:52px; }
.gal-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:8px; }
.gal-grid.single{ grid-template-columns:1fr; }
.gal-grid img{ width:100%; aspect-ratio:4/3; object-fit:cover; cursor:pointer; transition:.25s; background:#eee; }
.gal-grid img:hover{ opacity:.85; transform:scale(1.02); }
.baehr-lightbox{ position:fixed; inset:0; background:rgba(0,0,0,.9); display:none; align-items:center; justify-content:center; z-index:2000; }
.baehr-lightbox.open{ display:flex; }
.baehr-lightbox img{ max-width:90vw; max-height:86vh; }
.baehr-lightbox button{ position:absolute; color:#fff; background:rgba(0,0,0,.4); border:0; font-size:34px; cursor:pointer; padding:6px 16px; line-height:1; }
.baehr-lightbox .lb-close{ top:18px; right:22px; } .baehr-lightbox .lb-prev{ left:18px; top:50%; transform:translateY(-50%); } .baehr-lightbox .lb-next{ right:18px; top:50%; transform:translateY(-50%); }

/* Kontakt-Blurbs + Maps */
.blurb{ padding:10px 0; } .blurb .b-icon{ font-size:30px; color:var(--accent); margin-bottom:12px; } .blurb h3{ margin-bottom:8px; }
.gmap-container{ width:100%; min-height:450px; } .gmap-container iframe{ width:100%; height:450px; border:0; display:block; }

/* Header-Modul (mo_header) */
.brand-inner{ max-width:var(--maxw); margin:0 auto; padding:14px 20px; }
.brand{ display:flex; align-items:center; gap:16px; color:#000; text-decoration:none; }
.brand-logo{ width:64px; height:auto; flex:none; }
.brand-title{ font-size:26px; font-weight:800; text-transform:uppercase; color:#000; line-height:1.1; }
.brand-sub{ display:block; font-size:13px; font-weight:300; color:#333; line-height:1.35; margin-top:4px; }

/* Footer-Modul (mo_footer) */
.footer-inner{ background:var(--footer); color:#fff; padding:45px 0 0; }
.footer-inner .row-cols{ max-width:var(--maxw); margin:0 auto; padding:0 20px; display:flex; flex-wrap:wrap; }
.footer-inner .col{ padding:0 15px; width:100%; margin-bottom:10px; }
.footer-inner h2{ font-size:20px; font-weight:400; color:#fff; padding:15px 0; line-height:1.4; text-transform:none; }
.footer-inner p,.footer-inner li{ color:#fff; font-size:16px; } .footer-inner a{ color:#fff; } .footer-inner a:hover{ color:#ddd; }
.footer-bottom{ border-top:1px solid #5c5c5c; margin-top:20px; padding:16px 20px; font-size:14px; color:#ccc; text-align:center; } .footer-bottom a{ color:#fff; }

/* To-Top + Cookie (per JS) */
.baehr-totop{ position:fixed; right:22px; bottom:22px; width:46px; height:46px; border:0; border-radius:3px; background:var(--accent); color:#fff; font-size:20px; cursor:pointer; opacity:0; pointer-events:none; transition:.3s; z-index:150; }
.baehr-totop.show{ opacity:1; pointer-events:auto; }
.baehr-cookie{ position:fixed; left:0; right:0; bottom:0; background:#333; color:#fff; padding:16px 20px; z-index:1500; display:none; gap:16px; align-items:center; justify-content:center; flex-wrap:wrap; font-size:15px; }
.baehr-cookie.show{ display:flex; } .baehr-cookie a{ color:#fff; text-decoration:underline; }
.baehr-cookie .btn{ font-size:15px; padding:8px 18px; } .baehr-cookie .btn-red{ background:var(--btn); color:#fff; border-color:var(--btn); }

/* Template-Wrapper (index.php: header/nav/footer) */
#container{ width:100%; }
.site-header{ background:#fff; border-bottom:1px solid var(--border); position:sticky; top:0; z-index:100; }
.header-row{ max-width:var(--maxw); margin:0 auto; padding:8px 20px; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px; }
.header-row .brand-inner{ max-width:none; margin:0; padding:6px 0; }
.site-nav ul{ list-style:none; display:flex; flex-wrap:wrap; gap:4px; margin:0; padding:0; } .site-nav li{ margin:0; }
.site-nav a{ display:block; padding:10px 16px; color:#333; font-size:20px; font-weight:300; text-decoration:none; border-bottom:3px solid transparent; transition:.2s; }
.site-nav a:hover,.site-nav .current > a,.site-nav .active > a{ color:var(--accent); border-bottom-color:var(--accent); }
.site-footer{ width:100%; }

/* ===== Spalten-Utilities: gleich spezifisch wie .section .col (Fix 2) ===== */
@media (min-width:769px){
  .section .col-50,.footer-inner .col-50{ width:50%; }
  .section .col-33,.footer-inner .col-33{ width:33.3333%; }
  .section .col-25{ width:25%; }
  .col-vcenter{ align-self:center; }
}
@media (min-width:769px) and (max-width:1000px){
  .section .col-25{ width:50%; }
}
@media (max-width:768px){
  .section h1,.hero h1,.hero h2{ font-size:30px; line-height:1.25; }
  .brand-title{ font-size:20px; } .brand-sub{ font-size:12px; }
  .header-row{ justify-content:center; text-align:center; }
  .site-nav ul{ justify-content:center; } .site-nav a{ font-size:17px; padding:8px 12px; }
}

/* ==========================================================================
   LANDHAUS FELSENGARTEN – Projekt-Anpassungen
   WICHTIG: Utilities gleich/hoeher spezifisch scopen als die Basisregeln
   (.section a hat (0,2,0) und wuerde .btn-red (0,1,0) sonst ueberschreiben).
   ========================================================================== */
:root{
  --text:#333333; --heading:#1d1d1d; --accent:#7b1113; --btn:#7b1518;
  --footer:#3a322c; --light:#e9e9e9; --border:#e2e2e2; --maxw:1210px;
  --serif:'Playfair Display',Georgia,serif;
}

/* Kein Standard-Rand um die Seite (sonst weisser 8px-Rahmen) */
html,body{ margin:0; padding:0; }
html{ overflow-x:hidden; }
body{ font-family:'Poppins',Arial,sans-serif; color:var(--text); }
*,*::before,*::after{ box-sizing:border-box; }
#container{ width:100%; overflow-x:hidden; }
.item-page,.com-content-article,.content-item{ margin:0; padding:0; }
.item-page > .page-header,.com-content-article__body > .page-header{ display:none; }

/* Ueberschriften im Landhaus-Stil */
.section h1,.section h2{ font-family:var(--serif); font-style:italic; font-weight:800; color:var(--accent); text-transform:none; padding-bottom:0; }
.section h1{ font-size:40px; } .section h2{ font-size:38px; }
.section h3.sub-dark{ font-family:var(--serif); font-style:normal; font-weight:700; color:var(--heading); font-size:22px; margin:14px 0 22px; }
.section h4{ font-family:'Poppins',Arial,sans-serif; font-weight:700; font-size:18px; color:var(--heading); margin:30px 0 12px; }
.section h5{ font-family:'Poppins',Arial,sans-serif; font-weight:600; font-size:16px; color:var(--heading); margin:22px 0 10px; }
.section .intro-title{ text-align:center; }
.section-grey{ background:var(--light); } .section-grey2{ background:#f4f4f4; }
.section{ padding:80px 0; }

/* --- Buttons: MUSS spezifischer sein als ".section a" (Fix Textfarbe) --- */
.section a.btn,.section a.btn-red,.footer-inner a.btn,a.btn.btn-red,.section button.btn{
  display:inline-block; background:var(--btn); color:#fff; border:2px solid var(--btn);
  font-family:var(--serif); font-weight:600; font-size:17px; padding:13px 34px;
  border-radius:3px; text-decoration:none; cursor:pointer; transition:.2s;
}
.section a.btn:hover,.section a.btn-red:hover,a.btn.btn-red:hover,.section button.btn:hover{
  background:#8f1a1e; border-color:#8f1a1e; color:#fff; text-decoration:none;
}
.section a.btn-serif,.section button.btn-serif{ font-style:italic; }
.section button.btn-full{ width:100%; }
.section .intro-buttons{ display:flex; justify-content:center; gap:120px; flex-wrap:wrap; margin-top:32px; }

/* Hero */
.hero{ min-height:430px; color:#fff; background-color:#e9e9e9; }
.hero::after{ background:transparent; }
.hero-sub{ min-height:320px; }
.hero-home{ min-height:580px; } .hero-home::after{ background:rgba(20,10,8,.45); }
.hero .hero-box{ position:absolute; z-index:2; top:38%; left:0; max-width:540px; background:rgba(123,17,19,.92); padding:26px 40px 26px 28px; text-align:left; margin:0; }
.hero .hero-box h1{ font-family:var(--serif); font-style:normal; font-weight:700; font-size:26px; color:#fff; text-transform:none; line-height:1.35; margin:0; padding:0; }
.hero-startseite{ background-image:url('/images/start.jpg'); }
.hero-restaurant{ background-image:url('/images/AdobeStock_322720260.jpeg'); }
.hero-hotel{ background-image:url('/images/bilder_241022/titel4.png'); }
.hero-preisliste{ background-image:url('/images/image00012.jpeg'); }
.hero-rezensionen{ background-image:url('/images/AdobeStock_399702166.jpeg'); }
.hero-kontakt{ background-image:url('/images/bilder_241022/start1.png'); }

/* Karten (Startseite) */
.section .cards-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:40px; }
.section a.card{ position:relative; display:block; height:300px; overflow:hidden; background-size:cover; background-position:center; text-decoration:none; }
.section a.card::after{ content:""; position:absolute; inset:0; background:rgba(255,255,255,.55); transition:.3s; }
.section a.card:hover::after{ background:rgba(255,255,255,.15); }
.section .card-label{ position:absolute; right:16px; bottom:10px; z-index:2; font-family:'Poppins',Arial,sans-serif; font-weight:700; font-size:26px; color:var(--accent); text-shadow:0 1px 6px rgba(255,255,255,.6); }
.card-hotel{ background-image:url('/images/bilder_241022/start1.png'); }
.card-restaurant{ background-image:url('/images/bilder_241022/restaurant04.png'); }
.card-kegelbahn{ background-image:url('/images/bilder_241022/kegelbahn.png'); }
.card-biergarten{ background-image:url('/images/AdobeStock_399702166.jpeg'); }

/* Galerien / Bildreihen */
.section .gal-2,.section .gal-3{ display:grid; gap:26px; margin:26px 0; }
.section .gal-2{ grid-template-columns:1fr 1fr; }
.section .gal-3{ grid-template-columns:repeat(3,1fr); }
.section .gal-uneven{ grid-template-columns:45fr 52fr; gap:34px; }
.section .gal-2 img,.section .gal-3 img{ width:100%; height:100%; object-fit:cover; box-shadow:0 6px 18px rgba(0,0,0,.15); }
.section .img-shadow{ box-shadow:0 8px 22px rgba(0,0,0,.18); }
.section .img-wide{ width:100%; margin-bottom:40px; }
.section .col-divider{ border-left:1px solid #d9d9d9; }

/* Strich-Liste */
.section ul.dash-list{ list-style:none; padding-left:0; margin:6px 0 20px; }
.section ul.dash-list li{ position:relative; padding-left:34px; margin-bottom:12px; }
.section ul.dash-list li::before{ content:""; position:absolute; left:0; top:11px; width:20px; height:3px; background:var(--accent); border-radius:2px; }

/* 360-Grad-Panoramen */
.section .pano-grid{ display:grid; gap:34px; margin-top:34px; }
.section .pano-2{ grid-template-columns:1fr 1fr; }
.section .pano-3{ grid-template-columns:repeat(3,1fr); }
.section .pano-embed{ width:100%; height:500px; background:#222; box-shadow:0 8px 22px rgba(0,0,0,.18); }
.section .pano-embed iframe{ width:100%; height:100%; border:0; display:block; }
.section .pano-wide{ margin-top:34px; }

/* Preisliste */
.section h1.price-title{ font-family:'Poppins',Arial,sans-serif; font-style:normal; font-weight:400; color:#e04a4a; font-size:30px; text-align:center; padding-bottom:16px; position:relative; }
.section h1.price-title::after{ content:""; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:190px; height:3px; background:#e04a4a; }
.section .price-split{ margin-top:50px; align-items:stretch; }
.section .price-split .col{ margin-bottom:0; padding:0; }
.section .price-img img{ width:100%; height:100%; object-fit:cover; }
.section .price-content{ background:#f4f4f4; padding:34px 24px; }
.section table.price-table{ width:100%; border-collapse:separate; border-spacing:0 6px; margin-top:10px; }
.section table.price-table td{ background:#fff; padding:9px 16px; font-size:15.5px; }
.section table.price-table td:last-child{ text-align:right; white-space:nowrap; }

/* Rezensionen */
.section .reviews-sub{ color:#555; font-size:17px; margin-bottom:40px; }
.section .review-card{ background:#fff; box-shadow:0 10px 30px rgba(0,0,0,.12); padding:38px 34px; display:flex; gap:26px; height:100%; }
.section .review-icon{ font-size:58px; font-weight:700; line-height:1; color:#1d1d1d; flex:none; }
.section h3.review-name{ font-family:var(--serif); font-style:italic; font-weight:700; color:var(--accent); font-size:17px; margin-bottom:18px; }
.section .review-text p{ font-size:14px; color:#555; margin-bottom:12px; }

/* Kontakt */
.section.contact-intro{ padding-bottom:0; }
.section .contact-logo{ height:74px; width:auto; }
.section h3.contact-owner{ font-family:'Poppins',Arial,sans-serif; font-weight:400; color:var(--accent); font-size:24px; }
.section .contact-line{ display:flex; gap:14px; margin-bottom:26px; padding:0; }
.section .contact-line .b-icon{ font-size:20px; color:var(--accent); padding-top:4px; margin-bottom:0; }
.section .contact-line h3{ font-family:var(--serif); font-weight:700; font-size:19px; color:var(--heading); margin-bottom:6px; }
.section .contact-form-card{ background:#fff; box-shadow:0 10px 30px rgba(0,0,0,.12); padding:40px 36px; }
.section .sr-only{ position:absolute; left:-9999px; }
.section .form-group{ display:block; margin-bottom:22px; }
.section .form-group input,.section .form-group textarea{ width:100%; font-family:'Poppins',Arial,sans-serif; font-size:15px; color:#333; padding:16px 18px; border:1px solid #d9dde3; border-radius:4px; background:#fff; }
.section .form-group input:focus,.section .form-group textarea:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px rgba(123,17,19,.08); }
.section .form-group textarea{ min-height:150px; resize:vertical; }
.section .form-error{ display:none; color:#c0392b; font-size:13px; margin-top:6px; }
.section .form-group.has-error .form-error{ display:block; }
.section .form-group.has-error input,.section .form-group.has-error textarea{ border-color:#c0392b; }
.section .form-success{ display:none; background:#e8f5e9; color:#256029; border:1px solid #b7dfb9; border-radius:4px; padding:14px 18px; margin-bottom:20px; }
.section .form-success.visible{ display:block; }
.section.map-section{ padding-bottom:80px; }
.section .map-frame{ border:6px solid var(--accent); max-width:920px; margin:0 auto; }
.section .map-frame .gmap-container{ min-height:420px; } .section .map-frame .gmap-container iframe{ height:420px; }

/* Impressum / Datenschutz */
.section .legal-content p,.section .legal-content li{ color:#555; }

/* Header / Navigation */
.brand-logo{ height:72px; width:auto; }
.site-nav ul{ list-style:none; }
.site-nav a{ font-size:16px; font-weight:600; color:#1d1d1d; border-bottom:none; font-family:'Poppins',Arial,sans-serif; }
.site-nav a:hover,.site-nav .current > a,.site-nav .active > a{ color:var(--accent); border-bottom:none; }
.nav-toggle{ display:none; background:none; border:0; width:44px; height:44px; cursor:pointer; }
.nav-toggle span{ display:block; width:26px; height:3px; background:var(--accent); margin:5px auto; border-radius:2px; transition:.2s; }

/* Footer */
.footer-inner{ padding-top:70px; }
.footer-inner h2{ font-family:var(--serif); font-style:normal; font-weight:700; font-size:21px; color:#fff; }
.footer-inner p,.footer-inner li{ color:#cfc9c4; font-size:15px; }
.footer-inner a{ color:#cfc9c4; } .footer-inner a:hover{ color:#fff; }
.footer-inner ul.footer-links{ list-style:none; padding-left:0; margin:0; }
.footer-inner .social-fb{ font-size:22px; }
.footer-bottom{ border-top:none; color:#8f8880; font-size:12.5px; }
.footer-bottom p{ margin:0 0 6px; }
.agency-branding{ text-align:center; padding:20px; }
.agency-branding p{ color:#cfc9c4; font-size:13px; }
.agency-branding i{ color:red; }

/* To-Top */
.baehr-totop{ background:#b0413e; border-radius:4px; }
.baehr-totop:hover{ background:var(--accent); }

/* Spalten-Erweiterung + Responsive */
@media (min-width:769px){
  .section .col-66{ width:66.6666%; }
}
@media (max-width:768px){
  .section h1,.section h2{ font-size:30px; }
  .section .cards-grid,.section .gal-2,.section .gal-3,.section .gal-uneven,.section .pano-2,.section .pano-3{ grid-template-columns:1fr; }
  .section a.card{ height:230px; }
  .section .col-divider{ border-left:none; }
  .section .intro-buttons{ gap:24px; }
  .section .pano-embed{ height:340px; }
  .hero-home{ min-height:420px; }
  .hero .hero-box{ max-width:86%; padding:20px 22px; }
  .hero .hero-box h1{ font-size:20px; }
  .section .review-card{ flex-direction:column; gap:14px; padding:28px 22px; }
  .nav-toggle{ display:block; }
  .site-nav{ display:none; width:100%; }
  .site-nav.open{ display:block; }
  .header-row{ justify-content:space-between; }
}
