@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira+Stencil+One&display=swap');

:root {
  --blau: #2C5AA0;
  --gold: #FF6B35;
  --hellgrau: #F8F9FA;
  --weiß: #fff;
  --grün: #4CAF50;
  --rot: #D32F2F;
  --text: #222;
  --font-main: 'Inter', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--hellgrau);
  color: var(--text);
  min-height: 100vh;
}

/* Alle Links orange machen */
a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--blau);
}

header {
  width: 100% !important;
  max-width: none;
  padding: 0 20px;
  background: var(--weiß);
  box-shadow: 0 2px 8px rgba(44,90,160,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
}
.logo-main {
  font-family: 'Saira Stencil One', sans-serif;
  font-size: 6rem;
  color: #2C5AA0;
  margin-bottom: 0.5rem;
  text-align: center;
}
.logo-sub {
  font-family: var(--font-main);
  font-size: 2rem;
  color: var(--blau);
  letter-spacing: 0.18em;
  margin-top: -1rem;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .logo-main { font-size: 3.5rem; }
  .logo-sub { font-size: 1.5rem; }
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--blau);
}

.hero {
  padding: 2rem 2rem 1.5rem 2rem;
  min-height: 60vh;
  background-image: url('images/boote-reflexion-hintergrund.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 90, 160, 0.75);
  z-index: 1;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta {
  background: var(--gold);
  color: var(--blau) !important;
  padding: 12px 30px; /* Mehr Innenrand links/rechts */
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(44,90,160,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.cta:hover {
  background: var(--blau);
  color: var(--gold);
  transform: translateY(-2px) scale(1.04);
}

/* Header-Button verbesserter Hover-Effekt */
header .cta,
.hero .cta {
  background: #FF6B35 !important;
  color: white !important;
  border: 2px solid #FF6B35;
  padding: 12px 30px;
  min-width: 150px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
}

header .cta:hover,
.hero .cta:hover {
  background: white !important;
  color: #2C5AA0 !important;
  border: 2px solid #2C5AA0 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem !important;
}

h2 {
  color: var(--blau);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  font-size: 2rem;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .galerie-grid {
    grid-template-columns: 1fr;
  }
}
.galerie-item {
  background: var(--weiß);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(44,90,160,0.07);
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.galerie-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: var(--hellgrau);
  display: block;
}
.galerie-item span {
  display: block;
  padding: 1rem 0 0.7rem 0;
  font-weight: 500;
  font-size: 1.1rem;
}
.galerie-item:hover {
  box-shadow: 0 8px 32px rgba(44,90,160,0.18);
  transform: translateY(-4px) scale(1.03);
}
.galerie-item:hover img {
  transform: scale(1.06);
}

.status-punkt {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
  box-shadow: 0 0 6px rgba(0,0,0,0.10);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
.status-verfuegbar {
  background: var(--grün);
}
.status-verkauft {
  background: var(--rot);
}

.status.sold {
  background: var(--rot);
  color: var(--weiß);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.kunstwerk-detail {
  background: var(--weiß);
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(44,90,160,0.10);
  padding: 2rem;
  margin-bottom: 2rem;
}
.kunstwerk-bilder {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.kunstwerk-bilder img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  background: var(--hellgrau);
  border-radius: 0.7rem;
  box-shadow: 0 2px 8px rgba(44,90,160,0.08);
  cursor: zoom-in;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 1rem;
  display: block;
}
.kunstwerk-bilder img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(44,90,160,0.18);
}
.kunstwerk-beschreibung {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.kunstwerk-beschreibung ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

form {
  background: var(--hellgrau);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(44,90,160,0.05);
  max-width: 400px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form label {
  font-weight: 500;
  margin-bottom: 0.2rem;
}
form input, form textarea {
  border: 1px solid #d0d4da;
  border-radius: 0.5rem;
  padding: 0.7rem;
  font-size: 1rem;
  font-family: var(--font-main);
  background: var(--weiß);
  transition: border 0.2s;
}
form input:focus, form textarea:focus {
  border: 1.5px solid var(--blau);
  outline: none;
}
form button {
  background: var(--blau);
  color: var(--weiß);
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
form button:hover {
  background: var(--gold);
  color: var(--blau);
  transform: translateY(-2px) scale(1.04);
}

.mehr-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--blau);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}
.mehr-link:hover {
  color: var(--gold);
}

.portrait {
  width: 180px;
  border-radius: 50%;
  margin-top: 1rem;
  box-shadow: 0 2px 12px rgba(44,90,160,0.10);
}

/* Footer im Inspiration-Stil */
.inspiration-style-footer {
  background: #F8F9FA;
  border: 2px solid #2C5AA0;
  border-left: 4px solid #2C5AA0;
  border-radius: 15px;
  padding: 30px;
  margin: 50px 20px 20px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.contact-button {
  background: #2C5AA0;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-button:hover {
  background: #1e4080;
}

.social-link {
  color: #2C5AA0;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link:hover {
  background: rgba(44,90,160,0.1);
}

.instagram:hover {
  background: rgba(225,48,108,0.1);
  color: #E1306C;
}

.facebook:hover {
  background: rgba(24,119,242,0.1);
  color: #1877F2;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

/* Info-Box Stil für Startseite */
.info-box {
  background: #F8F9FA;
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 4px solid #2C5AA0;
  margin-bottom: 2rem;
}

.info-box h2 {
  color: #2C5AA0 !important;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.info-box p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* Social Media Links in info-box */
.info-box .social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.info-box .social-links a {
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.info-box .social-links a:hover {
  background: rgba(0,0,0,0.05);
}

@media (max-width: 600px) {
  .info-box .social-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* Alter Footer für Kompatibilität */
footer {
  background: var(--weiß);
  color: #888;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  font-size: 1rem;
  border-top: 1px solid #e0e3e8;
  margin-top: 3rem;
}

/* Sanfte Fade-In Animation */
.galerie-item, .kunstwerk-detail, .hero, form {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease forwards;
}
.galerie-item:nth-child(1) { animation-delay: 0.1s; }
.galerie-item:nth-child(2) { animation-delay: 0.2s; }
.galerie-item:nth-child(3) { animation-delay: 0.3s; }
.galerie-item:nth-child(4) { animation-delay: 0.4s; }
.galerie-item:nth-child(5) { animation-delay: 0.5s; }
.galerie-item:nth-child(6) { animation-delay: 0.6s; }
.galerie-item:nth-child(7) { animation-delay: 0.7s; }
.galerie-item:nth-child(8) { animation-delay: 0.8s; }
.galerie-item:nth-child(9) { animation-delay: 0.9s; }
.galerie-item:nth-child(10) { animation-delay: 1.0s; }
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Utility */
.hidden { display: none !important; }

/* Smooth Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  background: #e0e3e8;
}
::-webkit-scrollbar-thumb {
  background: var(--blau);
  border-radius: 6px;
}

#schema-logo {
  font-family: 'Saira Stencil One', sans-serif;
  font-size: 4.5rem;
  color: #FF6B35;
  text-align: center;
  background: none !important;
}

.logo-main {
  text-align: center;
}

section {
  padding: 1rem 0;
  margin: 0 auto;
}
#weg-zur-kunst, #bildungsprojekte, #ueber-mich {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  main {
    padding: 0 1rem;
  }
  .hero {
    min-height: 50vh;
    background-attachment: scroll;
  }
  #schema-logo {
    font-size: 3.5rem;
  }
}

.kategorie-kachel img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 1rem;
}

/* Zweite Kategorie-Kachel: Unteres Drittel anzeigen */
.kategorie-kachel:nth-child(2) img {
  object-position: bottom;
}

.kategorie-kachel {
  position: relative;
  transition: transform 0.3s;
}

.kategorien-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .kategorien-grid {
    grid-template-columns: 1fr;
  }
}

.galerie-kachel {
  position: relative;
  display: block;
  height: 300px;
  border-radius: 1rem;
  overflow: hidden;
}

.galerie-kachel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kachel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 90, 160, 0.9);
  color: white;
  padding: 1.5rem;
}

.kunstwerk-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  padding: 1rem 0;
}

.nav-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #FF6B35;
  color: white !important;
  text-decoration: none;
  border-radius: 50%;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  margin: 0 1rem;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: #FF8A65;
}

.nav-btn.prev::after { content: "\2039"; }
.nav-btn.next::after { content: "\203A"; }
.nav-btn.up::after { content: "\2191"; }

@media (max-width: 768px) {
  .kunstwerk-navigation {
    flex-direction: column;
    align-items: center;
  }
  .nav-btn {
    width: 100%;
    text-align: center;
    margin: 0.25rem 0;
  }
}

.breadcrumb {
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: #FF6B35;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: bold;
}

.breadcrumb a:hover {
  color: #FF8A65;
  text-decoration: underline;
}

/* Auftragsmalerei Hero */
.hero-auftrag {
  background: linear-gradient(90deg, #2C5AA0 60%, #FF6B35 100%);
  color: #fff;
  padding: 3rem 2rem 2rem 2rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  margin-bottom: 2rem;
}
.hero-auftrag h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-auftrag .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cta.whatsapp {
  background: #25D366;
  color: #fff !important;
  font-weight: bold;
  border: none;
  box-shadow: 0 2px 8px rgba(37,211,102,0.15);
  font-size: 1.1rem;
}
.cta.whatsapp:hover {
  background: #128C7E;
}
.cta.formular {
  background: #FF6B35;
  color: #fff !important;
  font-weight: bold;
  border: none;
  font-size: 1.1rem;
}
.cta.formular:hover {
  background: #FF8A65;
}

/* Prozess-Grid */
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}
.prozess-schritt {
  background: #fff;
  color: #2C5AA0;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(44,90,160,0.07);
  padding: 2rem 1rem 1.5rem 1rem;
  text-align: center;
  position: relative;
}
.schritt-nummer {
  width: 38px;
  height: 38px;
  background: #FF6B35;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(255,107,53,0.15);
}

/* Preis-Grid */
.preis-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0 1rem 0;
  flex-wrap: wrap;
}
.preis-karte {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(44,90,160,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  min-width: 180px;
  max-width: 220px;
  flex: 1 1 180px;
  border: 2px solid transparent;
  transition: border 0.2s;
}
.preis-karte.featured {
  border: 2px solid #FF6B35;
  background: #FFF5F0;
}
.preis-karte h3 {
  color: #2C5AA0;
  margin-bottom: 0.5rem;
}
.preis-karte .preis {
  font-size: 1.5rem;
  color: #FF6B35;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.preis-hinweis {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .prozess-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .prozess-grid {
    grid-template-columns: 1fr;
  }
  .preis-grid {
    flex-direction: column;
    align-items: center;
  }
  .hero-auftrag {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 0.7rem;
  }
}

/* Social Media Footer */
.social-media {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e3e8;
}

.social-link {
  display: inline-block;
  margin: 0 1rem;
  color: #FF6B35 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #2C5AA0 !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .social-link {
    display: block;
    margin: 0.5rem 0;
  }
}

/* --- Modal/Lightbox für Kunstwerk-Zoom --- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}
.modal-content {
  position: relative;
  background: none;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.modal-content img {
  max-width: 80vw;
  max-height: 70vh;
  border-radius: 0.7rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  background: #fff;
}
.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  text-shadow: 0 2px 8px #000;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FF6B35;
  color: #fff;
  border: none;
  font-size: 2.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.modal-nav.prev { left: 1rem; }
.modal-nav.next { right: 1rem; }
.modal-nav:hover { background: #e55a2b; }
.image-counter {
  color: #fff;
  margin-top: 1rem;
  font-size: 1.1rem;
  text-shadow: 0 2px 8px #000;
}
@media (max-width: 600px) {
  .modal-content img { max-width: 98vw; max-height: 60vh; }
  .modal-content { max-width: 98vw; }
}

.hero-image[src*="blauer-mythos"] {
  object-position: center bottom;
}

/* Zoom-Navigation für Kunstwerk-Einzelseiten */
.zoom-navigation {
  position: fixed;
  top: 50%;
  z-index: 1001;
  color: #FF6B35;
  font-size: 30px;
  background: rgba(0,0,0,0.7);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.zoom-prev {
  left: 30px; /* Außerhalb des Bildes */
}

.zoom-next {
  right: 30px; /* Außerhalb des Bildes */
}

.zoom-navigation:hover {
  background: #FF6B35;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .zoom-navigation {
    width: 40px;
    height: 40px;
    font-size: 24px;
    padding: 8px 12px;
  }
  
  .zoom-prev {
    left: 15px;
  }
  
  .zoom-next {
    right: 15px;
  }
}

/* Erfolgsmeldungen für Formulare */
.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.success-message.auto {
  background: #fff3cd;
  color: #856404;
  border-color: #ffeaa7;
}

 