/* Layout Komplette Seite*/
/* Allgemeine */
/* architects-daughter-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Architects Daughter';
  font-style: normal;
  font-weight: 400;
  src: url('/00_fonts/architects-daughter-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/00_fonts/architects-daughter-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/00_fonts/architects-daughter-v18-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/00_fonts/architects-daughter-v18-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/00_fonts/architects-daughter-v18-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/00_fonts/architects-daughter-v18-latin-regular.svg#ArchitectsDaughter') format('svg'); /* Legacy iOS */
}
/*body {
    padding-top: 30px;
	font-family: Architects Daughter;
  	font-size: 1.6rem;
	border-bottom: 1px solid #888;
 }
*/

html, body {
    margin: 0;
    padding: 0;
	padding-top: 30px;
	font-family: Architects Daughter;
  	font-size: 1.2rem;
	border-bottom: 1px solid #888;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Nur horizontal verhindern */
    overflow-y: auto;   /* Vertikal scrollen erlauben */
}

#equalizerCanvas {
    width: 100%;
    height: 90px;
    background: #FDFCFC;
    margin-top: 10px;
    border-radius: 10px;
    border: 2px solid limegreen; /* Nur Musikplayer Canvas hat eine Linie */
}

#mouseNebel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    touch-action: none; /* <- GANZ WICHTIG auf Mobile! */
    border: none;
}

#colorSwitcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#colorSwitcher button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

#colorSwitcher button:hover {
    background: rgba(255, 255, 255, 1);
}

.limegreen {
	color: limegreen;
}

#products,
#about {
	padding-top: 100px;
}

.navbar,
.carousel {
	border-bottom: 1px solid #888;
}

/* Navigation */

.nav-link {
	cursor: pointer;
}

.nav-link.active {
	color: limegreen !important;
}

.nav-link:hover,
.nav-link.active {
	color: limegreen !important;
}

.icon-link:active svg,
.icon-link:hover svg {
	color: limegreen;
}
.nav-link {
  transition: color 0.3s ease;
}

/* Abstand unter der Navbar */
nav {
    background-color: #333;
    padding: 10px;
    text-align: center;
    margin-bottom: 30px; /* Abstand unter der Navbar hinzu */
}

/* Abstand oben zu der Navbar im Body */
nav + div {
    margin-top: 50px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.navbar button {
    padding: 10px 15px;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.navbar button:hover {
    background-color: #ff5733;
}

/* Buttons zum Wechseln */
/* Menue-Wrapper */
.gallery-menu {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

/* Standard ist der Button ausgeblendet */
.menu-toggle {
    display: none;
    background-color: #333;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 18px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background-color: #555;
}

.switch-buttons {
	flex-wrap: wrap;
    text-align: center;
    margin: 20px auto;
	display: flex;
	justify-content: center; /* Zentriert die Buttons horizontal */
    gap: 20px; /* Abstand zwischen den Buttons */
}

.switch-buttons button {
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border-radius: 10px;
	border: 1px solid #FDFDFD; /* Borderline */
	transition: background 0.3s ease;
}

.switch-buttons button:hover {
    background-color: limegreen;
}

.switch-buttons.show {
        display: flex; /* Buttons werden eingeblendet */
}

/* Galerie-Layout */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 10px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* Bild-Container */
.image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Bilder */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform-origin: center;
}

/* Kein Springen: Bild bleibt zentriert */
.image-container:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Border-Animation */
.border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 3px solid transparent;
    pointer-events: none;
    opacity: 0;
}

/* Border wird sichtbar beim Hover */
.image-container:hover .border-animation {
    opacity: 1;
    animation: borderAnimation 1.5s linear infinite;
}

/* Keyframes fuer die laufende Border */
@keyframes borderAnimation {
    0% { border-color: limegreen transparent transparent transparent; }
    25% { border-color: transparent limegreen transparent transparent; }
    50% { border-color: transparent transparent limegreen transparent; }
    75% { border-color: transparent transparent transparent limegreen; }
    100% { border-color: limegreen transparent transparent transparent; }
}

/* Vollbild-Stil */
/* Infotext bei Hover */

.fullscreen-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1020;
}

.fullscreen-content {
    position: relative;
    display: flex;
    justify-content: flex-start; /* statt center */
    align-items: center;
    flex-direction: column;
    max-width: 90%;
    max-height: 90%;
    margin-top: 60px; /* Bild etwas nach unten */
    margin-inline: auto;
}

#fullscreen-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain; /* Verhindert Verzerrung */
    border: 2px solid limegreen; /* Rahmen */
    border-radius: 10px;
    display: block;
	margin: auto;
	pointer-events: auto; /* sicherstellen, dass es interagierbar bleibt */
    touch-action: pinch-zoom;
}

/* Schliessen-Button */
.close-btn {
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: clamp(20px, 3vw, 30px);
    color: white;
    cursor: pointer;
    z-index: 1030;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 8px;
    border-radius: 5px;
    transition: background 0.3s;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Pfeile */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: black;
    padding: 10px;
    font-size: clamp(16px, 3vw, 32px);
    cursor: pointer;
    border-radius: 50%;
    z-index: 1020;
    width: clamp(30px, 5vw, 50px);
    height: clamp(30px, 5vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.6);
}

.left-arrow {
    left: 5%;
}

.right-arrow {
    right: 5%;
}

@keyframes zoomFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fullscreen-content {
    animation: zoomFadeIn 0.4s ease-out;
}

/* Musikplaer */

.spacer {
    height: 50px; /* Abstand nach unten */
    width: 100%;
}

canvas {
    width: 100%;
    height: 90px;
    background: #FDFCFC;
    margin-top: 10px;
    border-radius: 10px;
	border: 2px solid limegreen;; /* Borderline */
}

.music-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #1c1c1c;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.player-info {
    margin-bottom: 15px;
    font-size: 2.5rem;
    text-align: center;

    /* ðŸŒˆ Farbverlauf */
	background: linear-gradient(90deg, #ff00cc, #3333ff, #ff00cc);
    background-size: 200% auto;

    /* âœ¨ Schimmer-Animation */
    animation: shimmer 4s linear infinite;

    /* ðŸŽ¨ Text als Verlauf anzeigen */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    /* ðŸ’¡ Glow-Effekt */
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

/* Schimmer-Effekt */
@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 15px; /* Abstand zwischen Buttons */
    margin: 15px 0;
}

.player-controls button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 14px;
    font-size: 1.3rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.player-controls button:hover {
    background-color: #555;
}

/* Footer */
footer {
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative; /* Falls die Seite wenig Inhalt hat */
    width: 100%;
    margin-top: 10px; /* Abstand zwischen Content und Footer */
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
	color: limegreen;
}

footer .counter-box {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 10px;
}

/* Pinnwand*/

.pinnwand-container {
    margin-top: 100px; /* Abstand zur Navbar */
    text-align: center; /* Zentrierte H2-Ueberschrift */
}

.pinnwand-titel {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

#pinnwand-form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Eingabefelder mittig */
}

.form-group {
    width: 100%;
    max-width: 600px; /* Begrenzung der Breite */
    text-align: left; /* Label links */
    margin-bottom: 15px;
}

.form-group label {
    font-size: 1.2rem;
    color: #fff;
    display: block; /* Volle Breite fuer saubere Links-Ausrichtung */
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
}

.form-group textarea {
    height: 100px;
}

  h3 {
    margin-bottom: 20px;
	color: limegreen;
}

/*Pinwandeintraege*/
.kommentare-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, auto));
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

.kommentar-box {
    position: relative;
    /*background: linear-gradient(135deg, #ffffff, #e0f0ff);*/
	background: linear-gradient(135deg, #fdfdfd, #d0e4f5);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(0, 255, 120, 0.1);
    transition: all 0.3s ease;
    color: #f1f1f1;
    max-width: 550px;
    margin: 0 auto; /* zentriert die Box innerhalb des Grid-Elements */
}

.kommentar-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 255, 120, 0.35);
}

.icon-user {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #00ff88;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.icon-user:hover {
    opacity: 1;
    text-shadow: 0 0 8px #00ff88;
    transform: scale(1.1);
}

.kommentar-box .kommentar-name {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #7CFC00;
}

.kommentar-box .kommentar-zeit {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.kommentar-box .kommentar-bewertung {
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.kommentar-box .kommentar-text {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.4;
}

.emoji-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 5px 0;
  justify-content: start;
}

.emoji-bar .emoji {
  cursor: pointer;
  font-size: 24px;
  transition: transform 0.2s;
}

.emoji-bar .emoji:hover {
  cursor: pointer;
  font-size: 24px;
  transform: scale(1.2);
  filter: brightness(1.2);
}

.emoji {
  cursor: pointer !important;
}

/* User-Icon links oben */
.kommentar-box::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.3rem;
    opacity: 0.6;
}

.kommentar-box::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f007"; /* Unicode für user-solid */
}

/* Kontaktformular*/

.kontakt-wrapper {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

#kontaktForm label {
    display: block;
    margin: 10px 0 5px;
	color: #fff;
}

#kontaktForm input,
#kontaktForm textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid limegreen;
    border-radius: 5px;
    background: #FFFFFF;
    color: limegreen;
}

.absenden-button {
    display: block;
	background: #007bff;
	margin: 20px auto; /* Zentriert den Button */
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 20px;
    margin-top: 10px;
    border-radius: 10px;
	border: 1px solid #FDFDFD; /* Duenne Borderline */
}

.absenden-button:hover {
    background: limegreen;
}

.styled-button {
    border: 2px solid limegreen; /* Duenne Linie */
}

/* ReCAPTCHA zentrieren */
.recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.g-recaptcha {
    transform: scale(1);
    transform-origin: center;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center; /* Zentriert die Icons */
    margin-top: 20px;
}

.social-icon {
    font-size: 30px; /* Groesse der Icons */
    color: #ffffff; /* Farbe (anpassen) */
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2); /* Vergroeert Icon beim Hover */
    color: #ffcc00; /* Farbe aendern (z. B. Gelb) */
}

.kontaktbilder {
  margin-top: 30px;  /* Abstand nach oben */
  margin-bottom: 30px;
  align-items: center;  /* Vertikal mittig, falls mal Höhenunterschiede */
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.bildbox {
  text-align: center;
}

.bildbox img {
  width: 180px;
  border-radius: 12px;
  border: 4px solid limegreen;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.bildbox img:hover {
  transform: scale(1.05);
}

.bildtext {
  margin-top: 10px;
  font-size: 1.05rem;
  color: #F1F1F1;
}

/* Portfolio */

.portfolio {
    max-width: 1100px; /* gewuenschte Breite */
    width: 90%; /* Damit es sich an kleinere Bildschirme anpasst */
    margin: 0 auto; /* Zentriert das Portfolio */
}

h2 {
    text-align: center;
    margin-bottom: 20px;
	color: limegreen;
}

.accordion-item {
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 15px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.accordion-header:hover {
    background-color: #383838;
}

.accordion-content.active {
    display: block !important; /* Nur aktive Inhalte sichtbar */
}

.accordion-content {	
	display: none !important; /* Standard versteckt */
	display: flex !important;
    flex-direction: column !important;
	max-height: 0;
	grid-template-columns: repeat(auto-fit, minmax(800px, auto)); /* Flexible Spalten */
    gap: 20px; /* Abstand zwischen den Spalten */
	background-color: #1e1e1e;
    padding: 0 15px;
	overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.software-item {
	display: flex;
    align-items: center; /* Alle Elemente in einer Reihe mittig ausrichten */
    gap: 15px; /* Abstand zwischen den Elementen */
    text-align: left; /* Text links */
    padding: 10px 0;
    border-bottom: 1px solid #444;
	flex-wrap: wrap; /* Elemente umbrechen */
}

.accordion-content.active {
    max-height: 1000px; /* Setze eine ausreichend grosse Zahl */
    overflow-y: auto;  /* Falls Inhalt groesser wird, scrollbar machen */
}

.software-item:last-child {
    border-bottom: none;
}

.software-item img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
	margin-left: 30px;
}

.software-item p {
    margin: 0;
    font-size: 25px;
	min-width: 120px; /* Feste Breite fuer konsistente Ausrichtung */
}

.software-item span {
	flex: 1; /* Nimmt restlichen Platz ein */
  	margin-left: 40px;  /* Abstand nach rechts */
    width: 100%; /* Stellt sicher, dass alles gleich ausgerichtet ist */
	text-align: left;
    font-size: 25px; /* Standard-Schriftgroesse */
	color: #bbb;
}

.highlight {
    color: limegreen;
    font-weight: bold;
    /*animation: blink 2s infinite; *//* Blinkt alle 1 Sekunde */
    animation: move 2s infinite alternate; /* Bewegung */
}

#impressum .container,
#datenschutzerklaerung .container{
    background-color: #222; /* Dunkler Hintergrund */
    color: white; /* Textfarbe fuer Kontrast */
    border: 1px solid limegreen; /* Blauer Rand */
    border-radius: 20px; /* Noch staerker abgerundet */
}

#calendar {
    max-width: 900px;
    margin: auto;
    background: white;
    border-radius: 12px;
    padding: 10px;
    font-size: 14px;
  }
  .fc .fc-toolbar-title {
    font-size: 1.2rem;
  }
  .fc .fc-button {
    font-size: 0.9rem;
    padding: 4px 8px;
  }
  .fc .fc-timegrid-axis-cushion {
    font-size: 12px;
  }
  .fc .fc-daygrid-day-number {
    font-size: 12px;
  }
  .fc .fc-event-title {
    font-size: 0.85rem;
  }
  .fc .fc-event-time, .fc .fc-event-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fc .fc-toolbar.fc-header-toolbar {
    flex-wrap: wrap;
    gap: 10px;
  }
  .fc .fc-daygrid-event-dot {
    background-color: #666;
  }
  .fc .fc-daygrid-event .fc-event-title,
  .fc .fc-timegrid-event .fc-event-title {
    color: white;
  }
  .fc .fc-event {
    background-color: #888;
    border: none;
  }
  .fc .fc-toolbar-chunk .fc-button-group {
    flex-wrap: wrap;
  }
  @media (max-width: 600px) {
    #calendar {
      font-size: 12px;
    }
    .fc .fc-toolbar-title {
      font-size: 1rem;
    }
    .fc .fc-button {
      font-size: 0.75rem;
    }
    .fc .fc-event-title {
      font-size: 0.75rem;
    }
  }

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes move {
    from { transform: translateX(0); }
    to { transform: translateX(20px); }
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;  /* Button wird angezeigt */
    }

    .switch-buttons {
        display: none;  /* Buttons sind versteckt */
        flex-direction: column;
        gap: 5px;
        position: absolute;
        background: #222;
        width: 100%;
        left: 0;
        top: 100%;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        padding: 10px 0;
        z-index: 10;
    }

    .switch-buttons.show {
        display: flex; /* Buttons werden eingeblendet */
    }
}

/* Responsive Anpassung fuer kleinere Bildschirme */
@media (max-width: 768px) {
    .close-btn {
        top: -10px;   /* Weniger Abstand auf kleinen Screens */
        right: -10px;
        font-size: 20px;
        padding: 6px 8px;
    }
}

@media (max-width: 600px) {
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: center;
  }
}

