@charset "UTF-8";
  body {
   background: #fff;
	font-family: "Open Sans", Arial, sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.8;
	color: #ffffff;
  }
  h1 {
    text-align: center;
    color: #b22222;
  }
  
  .galerie-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }
  figure {
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    background: white;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  figure:hover {
    transform: scale(1.05);
  }
  figure img {
    width: 100%;
    height: auto;
    display: block;
  }
  figcaption {
    padding: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
  }
  address.local-info {
    margin-top: 3rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #333;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
    text-align: center;
  }
  address a {
    color: #b22222;
    text-decoration: none;
  }
  address a:hover {
    text-decoration: underline;
  }

  /* Modal Styles */
  #modalOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right:0; bottom:0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  #modalOverlay.active {
    display: flex;
  }
  #modalContent {
    max-width: 90%;
    max-height: 90%;
    position: relative;
  }
  #modalContent img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 12px #000;
  }
  #modalCaption {
    margin-top: 0.5rem;
    color: white;
    text-align: center;
    font-size: 1rem;
  }
  #modalClose {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #b22222;
    color: white;
    border: none;
    font-size: 1.4rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
  }
  #modalClose:hover {
    background: #800000;
  }


