/* FKK Point v3 — home.css
   Home-spezifische Feinjustierung. Grund-Komponenten liegen in theme.css. */

.home-sections > .section:first-of-type{ padding-top: clamp(3.5rem, 7vw, 6rem); }

/* Aktionen-Sektion: helle Marmor-Fläche mit feiner Gold-Kante oben */
.section--offers{
  background:
    linear-gradient(180deg, rgba(162,128,58,.10), transparent 26%),
    var(--paper-2);
}

/* Home-Galerie */
#gallery-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
#gallery-grid .gallery-item,#gallery-grid .tile{ position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
#gallery-grid img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
#gallery-grid .gallery-item:hover img,#gallery-grid .tile:hover img{ transform: scale(1.06); }
@media (min-width: 981px){
  #gallery-grid .gallery-item:first-child,#gallery-grid .tile:first-child{ grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
}
@media (max-width: 980px){ #gallery-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ #gallery-grid{ grid-template-columns: 1fr; } }

/* Angebote mobil einspaltig (nicht 2) */
@media (max-width: 820px){ #offers-grid{ grid-template-columns: 1fr; } }
