/* Grunddesign */

 body{

    margin:0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }


  

a {
color: #fff;
}
.EQUschrift {
	color: darkorange;
}
h2 {
font-size: 1.8rem;
  margin-bottom: 10px;
  text-shadow: 0 0 1px darkorange, 0 0 1px darkorange, 0 0 1px darkorange;
}
}
/* Headerbild */
.header-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Leistungen */
.leistungen-container {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
	gap: 50px;
	margin: 0;
    /* margin-top: 80px; */
}
.leistung-item, .studio-item {
	background-color: #111;
	padding: 20px;
	border-radius: 10px;
	transition: transform 0.3s, box-shadow 0.3s;
	/* border-color: #ff0000; */
	border: 2px solid darkorange;
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
	padding-bottom: 50px;
    margin-top: 35px;
}

.leistung-item:hover {
	transform: scale(1.05);
}

.leistung-item h3 {
    color: darkorange;
    margin-bottom: 10px;
}
.leistung-item p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.leistung-preis {
    font-weight: bold;
    color: darkorange;
    font-size: 1.1rem;
}

.info-link {
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
}

.info-link:hover {
	color: darkorange;
	text-decoration: none;
	transition: all 0.3s ease;
}

/* Overlay abdunkeln */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    z-index: 999;
}
.EQImage {
	max-width: 50%;
	/* margin-top: 40%; */
	border-radius: 10px;
	border: 2px solid darkorange;
	/* justify-content: left; */
	/* display: grid; */
}
/* Sliding Container */

#info-container {
	position: fixed;
	top: 110px;
	right: -1500px;
	width: 800px;
	height: 80%;
	background: #111;
	color: #fff;
	box-shadow: -5px 0 20px rgba(0,0,0,0.5);
	z-index: 1000;
	transition: right 0.5s ease;
	overflow-y: auto;
	padding: 30px;
	display: flex;
	flex-direction: column;
	border: 2px solid darkorange;
	border-radius: 10px;
}

/* Container sichtbar */
#info-container.active {
    right: 50%;
    transform: translateX(50%);
}

/* Close Button */
#info-close {
	align-self: flex-end;
	font-size: 50px;
	cursor: pointer;
	margin-bottom: 0;
	color: darkorange;
	border-radius: 50%;
	border: 2px solid;
	width: 50px;
	height: 50px;
	inline-height: 30px;
	line-height: 50px;
	position: absolute;
	display: grid;
	justify-content: center;
}

/* Trigger Links */
.info-triggers a {
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	transition: 0.3s;
}

.info-triggers a:hover {
     text-decoration: underline; 
}

main {
	padding-left: 10px;
	padding-right: 10px;
    margin-top: 50px;
}

li {
	padding-left: 20px;
	padding-bottom: 0;
}

.newsletter-widget {
    position: fixed;
    top: 60%;
    right: 0;
    transform: translateY(-50%);
    width: auto; /* nur so breit wie Icon initial */
    overflow: visible; /* Formular darf herausfahren */
    z-index: 9999;
}

/* Icon sichtbar, kleine Größe */
.newsletter-widget .newsletter-icon {
    background: darkorange;
    color: #111;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    display: none;
}

/* Formular initial ausgeblendet, rechts vom Icon */
.newsletter-widget .newsletter-form {
    position: absolute;
    top: 0;
    right: 0; /* direkt neben Icon */
    width: 250px;
    background: darkorange;
    border-radius: 8px 0 0 8px;
    padding: 15px;
    transform: translateX(100%); /* komplett rechts versteckt */
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 1;
    display: none;
}

/* Hover über Widget Icon oder Formular: Formular fährt heraus */
.newsletter-widget:hover .newsletter-form {
    transform: translateX(0);
}

/* Formular Input & Button */
.newsletter-widget input[type="email"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    width: 100%;
    font-size: 0.95rem;
}

.newsletter-widget button {
    padding: 10px;
    background: #111;
    color: darkorange;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.newsletter-widget button:hover {
    background: #333;
    color: #fff;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .newsletter-widget .newsletter-form {
        width: 200px;
        right: 45px;
    }
}

.site-footer {
	background: #000;
	color: #fff;
	/* padding: 2rem 1rem; */
	text-align: center;
	/* margin-top: 20px; */
}

.team-section {
	padding: 60px 20px;
	color: #fff;
	text-align: left;
	padding-bottom: 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: darkorange;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.team-card {
	background: #111;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
	max-width: 300px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 2px solid darkorange;
}

.team-card img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 15px;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid darkorange;
}

.team-card:hover {
	transform: scale(1.05);
}

.team-card h3 {
    margin: 10px 0;
    font-size: 1.3rem;
    color: darkorange;
}
audio {
	background: #000;
	border: 1px solid darkorange;
	border-radius: 10px;
}
.team-card p {
    font-size: 0.95rem;
    margin: 5px 0;
    color: #ddd;
}

.team-card .bemerkungen {
    font-style: italic;
    margin-top: 10px;
}

.referenzen-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 Spalten */
    gap: 40px;
    justify-items: center;
    padding: 20px;
    margin-top: 50px;
}

/* Karten */
.referenz-card {
	background: #111;
	border: 2px solid darkorange;
	border-radius: 10px;
	width: 85%;
	padding: 15px;
	text-align: left;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.referenz-card:hover {
	transform: scale(1.05);
}

.referenz-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.referenz-card h4 {
    color: #ff8c1a;;
    margin: 5px 0;
}

.referenz-card p {
    font-size: 0.9rem;
    line-height: 1.2;
}

.load-more-btn {
	display: block;
	margin: 30px auto;
	padding: 10px 25px;
	background-color: darkorange;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	/* font-size: 1rem; */
	margin-bottom: 0;
	margin-top: 50px;
	font-weight: normal;
    transition: all 0.6s ease;
}

.load-more-btn:hover {
    background-color: #ff8c1a;
    color: #000
}

/* Responsiv: auf kleineren Bildschirmen weniger Spalten */
@media (max-width: 1200px) {
    .referenzen-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .referenzen-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .referenzen-container {
        grid-template-columns: 1fr;
    }
}

.site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer p {
	margin-bottom: 1rem;
	font-size: 16px;
	font-weight: normal;
}

.site-footer .social-icons a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s, filter 0.3s;
}

.site-footer .social-icons a img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1); /* weiße Icons */
}

.site-footer .social-icons a:hover img {
    transform: scale(1.2);
    filter: brightness(1) sepia(1) hue-rotate(20deg) saturate(5); /* leicht orange Effekt */
}

/* Responsive */
@media (max-width: 600px) {
    .site-footer .social-icons a {
        margin: 0 6px;
    }
    .site-footer .social-icons a img {
        width: 25px;
        height: 25px;
    }
    #info-container {
	position: fixed;
	top: 145px;
	right: -1500px;
	width: 370px;
	height: 65%;
	background: #111;
	color: #fff;
	box-shadow: -5px 0 20px rgba(0,0,0,0.5);
	z-index: 1000;
	transition: right 0.5s ease;
	overflow-y: auto;
	padding: 30px;
	display: flex;
	flex-direction: column;
	border: 2px solid darkorange;
	border-radius: 10px;
}
.Button-Cookie {
	line-height: 28px;
}
}

/* Header */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #000;
    padding: 15px 30px;
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 2px solid darkorange;
    background: #000;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

/* Logo + Studio-Text Container */
.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Abstand zwischen Logo und Text */
    
}

/* Logo Bild */
.Logo_Studio {
    height: 60px; /* anpassen nach Bedarf */
    width: auto;
    display: block;
    border-radius: 50%;
    border: 2px solid darkorange;
}

/* Studio Schriftzug */
.StudioText {
	font-size: 2rem;
	font-weight: bold;
	color: darkorange;
	margin: 0;
	text-shadow: 0 1px #fff, 0 0 1px #fff, 0 0 3px #fff;
}

/* Responsiv */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .logo {
        justify-content: center;
    }

    .StudioText {
        font-size: 1.2rem;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: darkorange;
    padding: 0 30px;
}

/* Hero Bereich */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #ff8c00, #1a1a1a);
    color: #fff;
    padding: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: darkorange;
    color: #121212;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #ffae42;
}
/* Lightbox Overlay */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    overflow: hidden;
}
/* Inputs & Textarea */
.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border-radius: 8px;
    border: 2px solid #333;
    background: #000;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: darkorange;
    background: #222;
}

/* Alerts */
.alert {
    max-width: 600px;
    margin: 1rem auto;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}

.alert.success {
    background: darkorange;
    color: #111;
}

.alert.error {
    background: #800000;
    color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
    .contact-form {
        padding: 20px;
        gap: 12px;
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
    font-size: 0.95rem;
    }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    animation: zoomFromBack 0.5s ease;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform, opacity;
    border: 2px solid darkorange;
}

/* Bild zoomt von "hinten" herein */
@keyframes zoomFromBack {
    from {
        transform: perspective(1000px) translateZ(-600px) scale(0.5);
        opacity: 0;
    }
    to {
        transform: perspective(1000px) translateZ(0) scale(1);
        opacity: 1;
    }
}


.contact-form {
    padding: 20px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    resize: vertical;
    border: 2px solid darkorange;
}

.contact-form button {
	background: darkorange;
	color: #fff;
	padding: 12px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: normal;
	/* font-size: 1rem; */
	transition: 0.3s;
	max-width: 180px;
	padding: 8px 12px;
}

.contact-form button:hover {
	background: darkorange;
	background-color: #ff9900;
	color: #111;
}

.HeaderBild {
    position: relative;
    height: 700px; /* Höhe des Headers */
    overflow: hidden;
}

.HeaderBild .header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild skaliert schön */
    z-index: -1;
    transition: transform 0.1s linear, opacity 0.1s linear;
}

/* Close Button */
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: darkorange;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.lightbox .close:hover {
    color: #fff;
}

.slide { 
    display: none; 
    position: relative; 
    width: 100%; 
    height: 700px; /* Einheitliche Höhe */
}

.slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Bild wird zugeschnitten */
}

#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,1.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid darkorange;
  border-radius: 50%;
  width: 60px; height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.Impressum {
	display: flex;
	justify-content: center;
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
	background-color: #000;
	color: #fff;
	margin-bottom: 50px;
}

.Impressum a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.Impressum a:hover {
    color: darkorange;
}

/* Scroll-to-Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px; /* Rechts unten */
  z-index: 1002;
  background-color: darkorange;
  color: #fff; /* Schwarzer Pfeil */
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.3s;
  transform: translateY(100px);
  opacity: 0;
  text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000;
}

/* Hover-Effekt */
#scrollTopBtn:hover {
  background-color: #ff8c1a;
  transform: translateY(0) scale(1.1);
}

/* Glow bei Hover */
#scrollTopBtn::after {
  content: '';
  position: absolute;
  top: -5px; left: -5px; right: -5px; bottom: -5px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255,140,26,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
#scrollTopBtn:hover::after { opacity: 1; }



.newsletter-section {
    margin-top: 25px !important;
	text-align: center;
	padding: 40px 20px;
	border: 2px solid darkorange;
	max-width: 1156px;
	margin: 50px auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	border-radius: 10px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 1s ease-out, transform 1s ease-out;
	margin-bottom: 35px;
	margin-top: 0px;
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
    background: #111;
}
/* Klasse, die beim Scrollen hinzugefügt wird */
.newsletter-visible {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-section p {
	font-size: 16px;
	margin-bottom: 20px;
	color: #ddd;
	font-weight: normal;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
	padding: 12px 15px;
	width: 280px;
	max-width: 90%;
	font-size: 1rem;
	border-radius: 5px;
	border: none;
	font-size: 1rem;
	resize: vertical;
	border: 2px solid darkorange;
	background: #000;
	outline: none;
    color: #fff;
}

.BewertungText {
	font-size: 18px;
	margin-bottom: 20px;
	font-style: italic;
}

.newsletter-form button {
   background: darkorange;
   text-decoration: none;
  color: #fff;
  font-weight: normal;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.6s ease;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: darkorange;
  color: #000;
  
}


/* Zoom Animation */
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Headerbild */
.header-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}
span {
    color: #fff;
}
/* Galerie */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 50px;
	margin-bottom: 50px;
}

.gallery-item {
	position: relative;
	border-radius: 8px;
	transition: transform 0.3s ease;
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 0 auto;
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}


.gallery-item:hover {
	transform: scale(1.05);
	cursor: pointer;
}

.gallery-item img {
	width: 100%;
	/* height: 100%; */
	display: block;
	object-fit: cover;
	border-radius: 8px;
	border: 2px solid darkorange;
}

.welcome-text {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.6);
    border-left: 5px solid darkorange;
    border-radius: 12px;
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    text-align: justify;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
    
    /* Hintergrund-Glühen Animation */
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.8) 50%, rgba(0,0,0,0.7) 100%);
    background-size: 200% 200%;
    animation: glow 6s ease-in-out infinite;
}

/* Glow-Animation */
@keyframes glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Scroll-Fade-In */
.welcome-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hervorhebung bestimmter Wörter */
.welcome-text strong {
    color: darkorange;
    font-weight: bold;
}

/* Responsive Anpassung */
@media (max-width: 600px) {
    .welcome-text {
        padding: 20px 15px;
        font-size: 1rem;
        border-left-width: 3px;
    }
}

.info-triggers a:hover {
	text-decoration: underline;
	color: darkorange;
}

.RegieText {
  margin: 0;
  color: #fff;
  line-height: 1.7;
  text-align: left;
}

/* Optional: spezielle Hervorhebung für Begriffe wie Talkback */
.RegieText .highlight {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent-weak);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  margin-left: 6px;
  font-size: .95em;
  vertical-align: middle;
  border: 1px solid rgba(255,136,0,0.12);
}


/* Overlay */
.cookie-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.98);
  z-index: 999;
  display: none;
}

/* Cookie Banner mittig */
.cookie-banner {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-30%, -30%) scale(0.9);
  background: #111;
  color: #fff;
  border: 3px solid darkorange;
  border-radius: 10px;
  box-shadow: 0 0 15px rgb(228, 72, 24);
  display: none;
  z-index: 1000;
  font-family: Arial, sans-serif;
  max-width: 600px;
  width: 90%;
  opacity: 0;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

.Button-Cookie {
	padding: 8px 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: normal;
	/* border: 1px solid; */
	background: darkorange;
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;
    ine-height: 18px;
}

.Button-Cookie:hover {
    color: #111;
}

.cookie-content {
  padding: 20px;
}
.cookie-content h3 { color: darkorange; margin-top: 0; }
.cookie-options { margin: 15px 0; display: flex; flex-direction: column; gap: 8px; }
.cookie-buttons { display: flex; gap: 10px; justify-content: flex-end; }
.cookie-buttons button {
  padding: 8px 16px;
  border: none; border-radius: 6px;
  cursor: pointer; font-weight: normal;
}
#accept-selected { background: darkorange; color: #fff; }
#accept-all { background: green; color: #fff; }
#accept-selected:hover { background: darkorange; color: #111; }
#accept-all:hover { background: green; color: #111; }

/* Reopen Icon - Cookie Banner */
.cookie-reopen {
	position: fixed;
	bottom: 20px;
	left: 20px;
	background: darkorange;
	color: #fff;
	padding: 12px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
	z-index: 1001;
	width: 30px;
	height: 30px;
	line-height: 25px;
	text-align: center;
	display: grid;
	text-shadow: 0 0 1px #000, 0 0 1px #000, 0 0 1px #000;
}

/* Hover Effekt mit Glow */
.cookie-reopen:hover {
  background-color: #ff8c1a;

}

.cookie-reopen::after {
  content: '';
  position: absolute;
  top: -5px; left: -5px; right: -5px; bottom: -5px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255,140,26,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.cookie-reopen:hover::after {
  opacity: 1;
}

/* Animationen */
@keyframes zoomIn {
  from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  to   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
@keyframes zoomOut {
  from { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  to   { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
}


.header-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.about-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #1a1a1a;
    border-left: 5px solid darkorange;
    border-radius: 8px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.about-section h2 {
    color: darkorange;
    margin-bottom: 0.5rem;
}

.slider-container {
	position: relative;
	max-width: 100%;
	margin: auto;
	overflow: hidden;
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
	border-bottom: 2px solid darkorange;
  
}

.slide { display: none; position: relative; width: 100%; }

.slide-content {
	position: absolute;
	bottom: 50%;
	left: 10%;
	color: #fff;
	background-color: rgba(0,0,0,0.7);
	padding: 20px;
	border-radius: 8px;
	max-width: 70%;
	border: 2px solid darkorange;
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.slide-content a { 
    display: inline-block; 
    padding: 10px 20px; 
    background-color: darkorange; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: normal;
    font-size: 14px;
}

.slide-content a:hover {
	background: darkorange;
	color: #000;
	transition: all 0.6s ease;
}

.slide-content h2 { 
    color: #fff; 
    margin-bottom: 10px; 
    text-shadow: 0 0 0px #000, 0 0 1px #000, 0 0 1px #000; 
}

.slide-content h1 { 
    color: darkorange; 
    margin-bottom: 10px; 
    text-shadow: 0 0 0px #000, 0 0 1px #000, 0 0 1px #000;
}
.slide-content p { 
    margin-bottom: 10px; 
}

.prev, .next {
    cursor: pointer; 
    position: absolute; 
    top: 55%; 
    padding: 16px; 
    color: darkorange;
    font-weight: bold; 
    font-size: 24px; 
    border-radius: 10px; 
    user-select: none;
    background-color: rgba(0,0,0,0.3); 
    transition: 0.1s;
    border: 1px solid darkorange;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.prev:hover, .next:hover { 
    background-color: rgba(0,0,0,0.6);
    transform: scale(1.2);
}

.prev { 
    left: 50px; 
} 

.next { 
    right: 50px;
}

.slider-dots { 
    text-align: center; 
    position: absolute; 
    bottom: 15px; 
    width: 100%; 
}

.slider-dots span {
	cursor: pointer;
	height: 12px;
	width: 12px;
	margin: 0 5px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: 0.3s;
	border: 1px solid #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.slider-dots .active { 
    background-color: darkorange; 
}

.fade { 
    animation-name: fade; 
    animation-duration: 1s; 
}

@keyframes fade { 
    from {opacity: .1} to {opacity: 1} 
}

/* Content */
.content {
	max-width: 1200px;
	margin: auto;
	margin-top: 50px;
}

/* Footer */
footer {
    text-align: center;
    padding: 0;
    background-color: #1a1a1a;
    font-size: 0.9rem;
}

.success-message {
    background-color: #2e7d32;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.error-message {
    background-color: #c62828;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kontakt-form input,
.kontakt-form textarea {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
    outline: none;
    border-color: darkorange;
}

.bewertung-form {
  background: #111;
  color: #fff;
  border: 2px solid darkorange;
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
}

.bewertung-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

.bewertung-form input[type="text"] {
  width: 90%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #444;
  background: #222;
  color: #fff;
}

.sterne-auswahl {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 10px 0;
}

.sterne-auswahl input {
  display: none;
}

.sterne-auswahl label {
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s, color 0.3s;
}

.sterne-auswahl input:checked ~ label {
  color: gold;
}

.bewertung-form button {
  margin-top: 15px;
  padding: 10px 20px;
  background: darkorange;
  border: none;
  border-radius: 6px;
  color: #111;
  font-weight: bold;
  cursor: pointer;
}

.bewertung-form button:hover {
  background: #ff8c1a;
}

.bewertungen-liste {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  gap: 20px;
}

.bewertung-item {
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
	border: 2px solid darkorange;
	padding: 15px;
	border-radius: 8px;
	padding-top: 25PX;
	margin-bottom: 40px;
    background: #111;
}

.bewertung-item strong {
  color: darkorange;
  font-size: 1.2rem;
}

.bewertung-item .sterne {
	font-size: 1.5rem;
	color: darkorange;
}
.datenschutz-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #000;
    border: 2px solid darkorange;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.datenschutz-container h2 {
    color: darkorange;
    margin-top: 20px;
    margin-bottom: 10px;
}

.datenschutz-container a {
    color: darkorange;
    text-decoration: none;
}

.datenschutz-container a:hover {
    text-decoration: underline;
}

.impressum-container {
	max-width: 1200px;
	/* margin: 40px auto; */
	padding: 20px;
	background: #111;
	border: 2px solid darkorange;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.5);
	font-family: Arial, sans-serif;
	line-height: 1.6;
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
	margin-top: 35px;
	margin-bottom: 20px;
}

.impressum-container h2 {
    color: darkorange;
    margin-top: 20px;
    margin-bottom: 10px;
}

.impressum-container a {
    color: darkorange;
    text-decoration: none;
}

.impressum-container a:hover {
    text-decoration: underline;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;

}

.content h1, .content h2 {
   color: darkorange;
    margin-bottom: 20px;
}

.content p {
    /* line-height: 1.9; */
    margin-bottom: 25px;
}

.studio-intro, .studio-rooms, .studio-equipment, .studio-services, .studio-inspiration, .studio-invitation {
    margin-bottom: 50px;
}













/* Hier Mobil rein */

@media (max-width: 768px) {
    .content {
        padding: 30px 15px;
        
    }
    .site-footer {

	padding-left: 15px;
	padding-right: 15px;
    }
    .prev, .next {
		display: none;
	}
.slider-container {
	position: relative;
	max-width: 100%;
	margin: auto;
	overflow: hidden;
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
	border-bottom: 2px solid darkorange;
	height: 50%;
}
.slide img {
	width: 100%;
	height: 65%;
	object-fit: cover;
}
}











.pagination {
    margin-top: 0;
    margin-bottom: 50px;
    text-align: center;
}

.pagination a {
	display: inline-block;
	margin: 0 5px;
	padding: 8px 12px;
	background: darkorange;
	border-radius: 5px;
	text-decoration: none;
	transition: 0.3s;
	cursor: pointer;
	height: 25px;
	line-height: 25px;
}

.pagination a:hover {
    background: darkorange;
    color: #111;
}

.pagination a.active {
    background: darkorange;
    font-weight: bold;
}

.newsletter-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: darkorange;
	font-weight: normal;
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	width: 180px;
	height: 25px;
	line-height: 25px;
}

.newsletter-button:hover {
    background-color: #ff9900;
    color: #111;
}
/* Grundstil für Navbar */
.navbar {
    background-color: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1000;
}

.navbar .menu-toggle {
    display: none;
    font-size: 35px;
    color: darkorange;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    margin-top: 0;
}

.nav-links li a {
    text-decoration: none;
    font-weight: normal;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.6s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: darkorange;
    color: #111;
}

/* Responsiv: Tablet */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0;
    }
}

/* Mobile Menü */
@media (max-width: 1380px) {
    .navbar {
        flex-wrap: wrap;
        padding: 10px;
        position: relative;
    }

    .navbar .menu-toggle {
        display: block;
        z-index: 1001; /* Toggle immer oben halten */
    }

.nav-links {
	position: fixed;
	top: 110px;
	right: 0;
	width: 70%;
	max-width: 320px;
	flex-direction: column;
	background-color: #111;
	border-left: 2px solid darkorange;
	margin: 0;
	padding-top: 0;
	z-index: 1000;
	transform: translateX(100%);
	transition: transform 0.4s ease-in-out;
	border-radius: 0 0 0 20px;
	border-bottom: 2px solid darkorange;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
    border-top: 2px solid darkorange;
        /* Animation */
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    
}

.nav-links li {
        text-align: center;
        width: 100%;
        margin: 10px 0;
    }

.nav-links li a {
        display: block;
        width: 78%;
        padding: 15px;
        font-size: 18px;
    }

.nav-links.show {
        transform: translateX(0); 
    }
}

