/* Erstellt mit Gemini am 13.09.2026 */

/* ==================== BASE STYLES ==================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==================== HERO HEADER ==================== */
.hero-header {
  width: 100%;
  border-bottom: 2px solid #111111;
  background-color: #000000;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== MAIN CONTENT & GRID ==================== */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  width: 100%;
}

.category-banner {
  text-align: center;
  margin-bottom: 30px;
}

.category-banner h2 {
  color: #ff6600;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Responsive Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.grid-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  background: #111111;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}

/* Garantiert exaktes 3:2 Format auf JEDEM Gerät */
.grid-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.grid-card:hover img {
  opacity: 0.9;
}

div.grid-card:hover {
  transform: none;
  box-shadow: none;
  cursor: default;
}

.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 102, 0, 0.85);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Infobox im gleichen 3:2 Format wie die Bilder */
.grid-info-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0a0a0a;
  border: 1px dashed #ff6600;
  border-radius: 4px;
  padding: 15px;
  color: #ff6600;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.4;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}

/* ==================== BUTTONS & FOOTER ==================== */
.contact-section {
  text-align: center;
  margin: 30px 0;
}

.btn-contact {
  display: inline-block;
  background: #ff6600;
  color: #000000;
  padding: 10px 40px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.btn-contact:hover {
  background: #ffffff;
}

.site-footer {
  margin-top: auto;
  background: #080808;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
  border-top: 1px solid #1a1a1a;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer a {
  color: #ff6600; /* in Akzentfarbe */
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.disclaimer {
  font-size: 0.75rem;
  color: #666666;
  max-width: 800px;
  margin: 15px auto !important;
}

.footer-address {
  margin: 15px 0;
  color: #eeeeee;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}