/* Grundlayout */
.distillery-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    //font-family: "Georgia", serif;
    color: #3a2f22;
}

/* Überschrift */
.distillery-name {
    text-align: center;
    font-size: 3rem;
    color: #8c6b2f; /* dunkles Goldbraun */
    margin-bottom: 10px;
}

.distillery-intro {
    text-align: center;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #4a3b2a;
    line-height: 1.5rem;
}

/* Kartenabschnitte */
.distillery-card {
    background: #f7f3e6; /* warmes Sandbeige */
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    border: 1px solid #e0d6c4;
}

/* Meta-Bereich */
.distillery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.distillery-logo img {
    max-width: 200px;
    margin-top: 100px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.distillery-info {
    flex: 1;
    min-width: 260px;
    font-size: 1.2rem;
}

.distillery-info p {
    margin: 8px 0;
}

.closed-cell {
  background-color: #ddd;      /* etwas dunkler */
  color: #000;                 /* gut lesbar */
  vertical-align: middle;      /* mittig über die 3 Zeilen */
  text-align: center;          /* horizontal zentriert */
  font-weight: bold;           /* betont */
  padding: 8px 0;              /* etwas Luft */
}

#map {
    width: 75%;
    margin: 0 auto;
    height: 400px;
    border-radius: 10px;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.15), 0 4px 14px rgba(0,0,0,0.12);
    overflow: hidden;
}


.coords {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #5a4a38;
    text-align: center;
}

/* Abfüllungen */
.distillery-bottlings h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #7a5c2b;
}

.bottling-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

/* Jede Kachel: figure als Grid-Item */
.bottling-gallery figure {
    margin: 0;
    padding: 8px;
    border-radius: 20px;
    background: #f7f3e6;
    border: 1px solid #d8cbb8;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.bottling-gallery figure img {
    width: auto;
    height: 300px;
    object-fit: contain; /* zeigt das ganze Bild */
    border-radius: 16px;
    display: block;
}

.bottling-gallery figure figcaption {
    width: 100%;
    margin-top: 8px;
    text-align: center;
}




.distillery-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  //font-family: Georgia, serif;
}

.distillery-table th {
  text-align: left;
  padding: 6px 12px;
  color: #5a3a24;
  font-weight: bold;
  white-space: nowrap;
}

.distillery-table td {
  padding: 6px 12px;
  color: #333;
}

.distillery-table tr:nth-child(even) {
  background: #f7f4ef;
}


.distillery-funfact {
    background-color: #fff9d6;   /* warmes, freundliches Gelb */
    border-left: 4px solid #e0c15a; /* whisky-gold Akzent */
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 1.0rem;
    line-height: 1.6;
}



/* -----------------------------------------
   MOBILE-OPTIMIERUNG (max-width: 700px)
----------------------------------------- */
@media (max-width: 700px) {

  .distillery-name {
    font-size: 2.2rem;
    margin-bottom: 6px;
  }

  .distillery-intro {
    font-size: 0.75rem;
    padding: 0 10px;
    line-height: 1.1rem;
  }

  /* Meta-Bereich: Logo + Infos untereinander */
  .distillery-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .distillery-logo img {
    max-width: 140px;
    margin-top: 20px;
  }

  .distillery-info {
    font-size: 1rem;
    min-width: unset;
  }

  /* Karte vollbreit */
  #map {
    width: 100%;
    height: 300px;
    margin: 20px 0;
  }

  .coords {
    text-align: center;
    font-size: 0.9rem;
  }

  /* Bottlings kompakter */
  .bottling-gallery {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
  }

  .bottling-gallery figure img {
    height: 220px;
  }

  /* Tabellen lesbarer */
  .distillery-table th,
  .distillery-table td {
    padding: 4px 8px;
    font-size: 0.9rem;
  }

  .distillery-table {
    font-size: 0.9rem;
  }

  /* Fun-Fact Box */
  .distillery-funfact {
    font-size: 1rem;
    padding: 12px 16px;
  }
}
