/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #070711;
  color: #fff;
  overflow-x: hidden;
}

/* BACKGROUND */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    radial-gradient(circle at 20% 20%, rgba(72,255,156,0.15), transparent),
    radial-gradient(circle at 80% 10%, rgba(107,63,160,0.25), transparent),
    linear-gradient(#05050b, #101022);
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 30px;
  position: relative;
  z-index: 1000;
}

.logo {
  font-weight: bold;
}

.logo span {
  color: #48ff9c;
}

.logo-img {
	height: 300px;
	object-fit: contain;
}

@media (max-width: 600px) {
	.logo-img {
		width: 140px;
	}
}

/* NAV */
nav {
  display: flex;
  gap: 30px;
margin-top: 35px;	
}

nav a {
  position: relative;
  color: #48ff9c;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 5px 0;
  transition: 0.3s;
}

nav a:hover {
  text-shadow: 0 0 15px #00ffff;
}

nav a:hover::after {
  width: 100%;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #48ff9c;
  transition: 0.3s;
}

/* HERO */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 110px 30px 60px;
  position: relative;
  overflow: hidden;
}

/* TEXT */
.hero-content {
  max-width: 700px;
}

/* EYEBROW */
.eyebrow {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 20px;
}

.eye-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #48ff9c;
  border-radius: 50%;
  margin-right: 8px;
}

/* TITLE */
h1 {
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.9;
  margin-bottom: 20px;
}

/* SHIMMER TEXT */
.gradient-text {
  background: linear-gradient(
    90deg,
    #ffffff,
    #48ff9c,
    #1fe6d0,
    #a77cff,
    #ffffff
  );
  background-size: 300%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  from {
    background-position: 0%;
  }
  to {
    background-position: 300%;
  }
}

/* TEXT */
.hero p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(90deg, #48ff9c, #1fe6d0);
  color: #000;
}

.btn-secondary {
  border: 1px solid #48ff9c;
  color: #48ff9c;
}

.btn:hover {
  transform: translateY(-3px);
}

/* RIGHT SIDE */
.sigil-stage {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.crown-sigil {
  position: absolute;
  inset: 40px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 40%, rgba(72,255,156,0.2), transparent 40%);
}

/* CARD */
.crest-card {
  position: absolute;
  bottom: 50px;
  right: 50px;

  padding: 20px;
  border-radius: 20px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.crest-card h2 {
  margin-bottom: 10px;
}

/* CONTENT SECTION */
.content-section-index {
  padding: 150px 30px;
}

.content-section-prices {
  width: min(1180px, calc(100% - 40px));
  margin: 60px auto 120px;
}

.content-label {
  color: #48ff9c;
  margin-bottom: 10px;
}

.content-section h2 {
  margin-bottom: 20px;
}

.content-panel {
  margin-top: 20px;
}

.service-item {
  margin-bottom: 10px;
}

.service-item span {
  color: #48ff9c;
  font-weight: bold;
  text-shadow: 0 0 10px #48ff9c;
}

.service-list li {
  margin-left: 15px;
}

.extra-note {
  margin-top: 25px;
  line-height: 1.6;
  font-weight: bold;
}

.ticker {
  overflow: hidden;
  margin: 80px 0;
  padding: 10px 0;

  border-top: 3px solid rgba(72,255,156,0.4);
  border-bottom: 3px solid rgba(72,255,156,0.4);

  box-shadow:
    0 -1px 10px rgba(72,255,156,0.2),
    0 1px 10px rgba(72,255,156,0.2);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.ticker-group {
  display: flex;
  gap: 40px;
  margin-right: 40px;
}


.ticker span {
  white-space: nowrap;
  color: #48ff9c;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

/* WORK */
.work {
  padding: 100px 30px;
}

.section-title {
  text-align: center;
}

.gallery {
  display: flex;
  gap: 20px;
}

.piece {
  flex: 1;
  padding: 40px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
}

.piece:hover {
  transform: translateY(-5px);
}

/* CONTACT */
.contact {
  padding: 100px 30px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 25px;
}

.footer {
  padding: 30px;
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;

  color: #777;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer a {
  color: #777;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #48ff9c;
  text-shadow: 0 0 10px #48ff9c;
}

.divider {
  opacity: 0.5;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery {
    flex-direction: column;
  }

  nav {
    gap: 15px;
  }

  nav a {
    font-size: 1rem;
  }
}

/* === QUICK LINKS CARDS === */

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.quick-card {
  position: relative;
  padding: 40px;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(72,255,156,0.2);

  transition: 0.3s;
  overflow: hidden;
}

/* Glow Effekt */
.quick-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72,255,156,0.25), transparent 70%);
}

/* Hover */
.quick-card:hover {
  transform: translateY(-6px);
  border-color: rgba(72,255,156,0.5);
  box-shadow: 0 0 30px rgba(72,255,156,0.15);
}

/* Text */
.quick-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.quick-card p {
  color: #ccc;
}

/* Mobile */
@media (max-width: 900px) {
  .quick-grid {
    grid-template-columns: 1fr;
  }
}

/* === STATUS CARD === */

/* Wrapper für beide Karten */
.status-wrapper {
  display: flex;	
  margin-right: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

/* bestehende Karte leicht anpassen */
.status-card {
  padding: 25px 35px;
  border-radius: 20px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(72,255,156,0.2);

  box-shadow:
    0 0 25px rgba(72,255,156,0.08),
    inset 0 0 30px rgba(107,63,160,0.15);

  width: 300px;
}

.status-card h2 {
  margin-bottom: 10px;
}

/* TEXT */
.status {
  font-size: 1.3rem;
  font-weight: bold;
}

/* OPEN (grün) */
.status.open {
  color: #48ff9c;
  text-shadow: 0 0 15px #48ff9c;
}

/* CLOSED (rot) */
.status.closed {
  color: #ff4b4b;
  text-shadow: 0 0 15px #ff4b4b;
}

/* === INFO CARDS === */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  padding: 20px;
  border-radius: 15px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(72,255,156,0.15);

  transition: 0.3s;
}



.info-card h3 {
  margin-bottom: 8px;
}

.info-card p {
  color: #ccc;
}

/* === SOCIALS - DIFFERENT STYLE === */

.socials {
  padding: 100px 30px;
  text-align: center;
}

.socials h2 {
  margin-bottom: 40px;
}

.quick-links h2 {
	margin-bottom: 40px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.social-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;

  background: rgba(72,255,156,0.06);
  border: 1px solid rgba(72,255,156,0.28);

  box-shadow:
    inset 0 0 22px rgba(72,255,156,0.08),
    0 0 18px rgba(72,255,156,0.06);

  transition: 0.3s ease;
}

.social-card::before {
  content: "✦";
  display: block;
  color: #48ff9c;
  font-size: 1.4rem;
  margin-bottom: 8px;
  text-shadow: 0 0 14px #48ff9c;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(72,255,156,0.65);
  background: rgba(72,255,156,0.1);
  box-shadow:
    0 0 28px rgba(72,255,156,0.18),
    inset 0 0 28px rgba(167,124,255,0.12);
}

.social-card h3 {
  margin-bottom: 8px;
}

.social-card p {
  color: #48ff9c;
}





.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 90px auto 50px;
}

.page-hero p {
  max-width: 760px;
  color: #ccc;
  line-height: 1.7;
  font-size: 1.1rem;
}

.price-section {
  width: min(1180px, calc(100% - 40px));
  margin: 60px auto 120px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(72,255,156,0.18);
  box-shadow: inset 0 0 40px rgba(107,63,160,0.13);
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72,255,156,0.25), transparent 65%);
}

.price-card.featured {
  border-color: rgba(72,255,156,0.45);
  box-shadow:
    0 0 35px rgba(72,255,156,0.12),
    inset 0 0 50px rgba(107,63,160,0.18);
}

.price-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #48ff9c, #1fe6d0);
  color: #05050b;
  font-weight: 800;
}

.price-card h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.price-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 22px;
}

.price-card ul {
  list-style: none;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}


.price-card li span {
  flex: 1;
}

.price-card li strong {
  color: #48ff9c;
  font-weight: bold;
  text-shadow: 0 0 10px #48ff9c;
}

.service-item 
@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}





/* === PORTFOLIO PAGE === */

.portfolio-section {
  width: min(1180px, calc(100% - 40px));
  margin: 60px auto 120px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-item {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(72,255,156,0.18);
  background: rgba(0,0,0,0.35);
}

.portfolio-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(7,7,17,0.85)
  );
}

.portfolio-item div {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
}

.portfolio-item h2 {
  font-size: 1.7rem;
}

.portfolio-item p {
  color: #48ff9c;
}

.portfolio-item:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

@media (max-width: 800px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}





/* === TOS PAGE === */

.tos-section {
  width: min(900px, calc(100% - 40px));
  margin: 60px auto 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tos-block {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(72,255,156,0.15);
  position: relative;
  cursor: pointer;
}

.tos-block h2 {
  margin-bottom: 10px;
  color: #48ff9c;
}

.tos-block p {
  color: #ccc;
  line-height: 1.6;
}

.tos-block ul {
  margin-top: 15px;
  padding-left: 20px;
}

.tos-block li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #ccc;
  padding-left: 20px;
  transition: 0,2s;
}

.tos-block li::marker {
  color: #48ff9c;
}

.tos-block:hover {
  border-color: rgba(72,255,156,0.4);
  box-shadow:
    0 0 25px rgba(72,255,156,0.15),
    inset 0 0 30px rgba(107,63,160,0.2);
}

/* Basis (falls noch nicht vorhanden) */
.tos-block {
  cursor: pointer;
  transition: 0.3s ease;
}

/* ✨ Hover Effekt */
.tos-block:hover {
  transform: translateY(-5px);
  border-color: rgba(72,255,156,0.4);

  box-shadow:
    0 0 25px rgba(72,255,156,0.15),
    inset 0 0 30px rgba(107,63,160,0.2);
}

/* 🔥 Aktiver Zustand (aufgeklappt) */
.tos-block[open] {
  border-color: rgba(72,255,156,0.6);

  box-shadow:
    0 0 35px rgba(72,255,156,0.25),
    inset 0 0 40px rgba(107,63,160,0.25);
}

/* 🔥 Summary (Header) bekommt auch Feedback */
.tos-block summary {
  transition: 0.2s;
  list-style: none;
}

.tos-block:hover summary {
  text-shadow: 0 0 10px rgba(72,255,156,0.6);
}

/* Optional: Smooth Opening Gefühl */
.tos-block[open] p,
.tos-block[open] ul {
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
	
	

/* === IMPRESSUM PAGE === */

.impressum-section {
  width: min(900px, calc(100% - 40px));
  margin: 60px auto 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.impressum-block {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(72,255,156,0.15);
}

.impressum-block h2 {
  margin-bottom: 10px;
  color: #48ff9c;
}

.impressum-block a {
	color: #48ff9c;
	text-decoration: none;
	transition: 0.3s;
}

.impressum-block a:hover {
	color: #a77cff;
	text-shadow: 0 0 10 #a77cff;
}

.impressum-block p {
  color: #ccc;
  line-height: 1.6;
}

.price-card ul {
  width: 100%;
}

.price-card li {
  width: 100%;
}

.price-card li span {
  flex: 1;
}

.price-card li strong {
  min-width: 60px;
  text-align: right;
}

/* === PRIVACY PAGE TWEAKS === */

.impressum-section {
  max-width: 900px;
  margin: 60px auto 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.impressum-block {
  padding: 30px;
  border-radius: 20px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(72,255,156,0.15);

  backdrop-filter: blur(10px);
}

.impressum-block:hover {
  transform: translateY(-4px);
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(72,255,156,0.15);
}

.impressum-block h2 {
  margin-bottom: 12px;
  color: #48ff9c;
}

.impressum-block p {
  color: #ccc;
  line-height: 1.7;
}

.tos-block summary {
  cursor: pointer;
  list-style: none;
  color: #48ff9c;
  font-size: 1.4rem;
  font-weight: bold;
}

.tos-block summary::-webkit-details-marker {
  display: none;
}

.tos-block summary::after {
  content: "+";
  float: right;
  color: #48ff9c;
  font-size: 1.6rem;
}

.tos-block[open] summary::after {
  content: "–";
}

.tos-block p {
  margin-top: 18px;
}

/* === CLEAN LEGAL STYLE (Privacy / Impressum) === */

.impressum-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.impressum-block {
  padding: 32px;
  border-radius: 20px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(72,255,156,0.15);

  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

/* Hauptüberschrift */
.impressum-block h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #48ff9c;
}

/* Subheadline */
.impressum-block h3 {
  font-size: 1.05rem;
  margin-top: 22px;
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 600;
}

/* Text */
.impressum-block p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #cfcfcf;
  margin-bottom: 14px;
}

/* LISTEN */
.impressum-block ul {
  margin: 12px 0 18px 18px;
}

.impressum-block li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #cfcfcf;
}

/* Bullet Farbe */
.impressum-block li::marker {
  color: #48ff9c;
}

/* Strong hervorheben */
.impressum-block strong {
  color: #ffffff;
}

/* Links */
.impressum-block a {
  color: #48ff9c;
  text-decoration: none;
}

.impressum-block a:hover {
  text-shadow: 0 0 8px #48ff9c;
}

/* EXTRA: mehr Luft bei Abschnitten */
.impressum-block p + ul {
  margin-top: 6px;
}

.queue-link {
  color: #48ff9c;
  text-decoration: none;
  font-weight: bold;
}

.queue-link:hover {
  text-shadow: 0 0 10px #48ff9c;
}






/* =========================================
   MOBILE OPTIMIZATION
========================================= */

@media (max-width: 768px) {

  /* HEADER */
  header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
  }

  nav a {
    font-size: 1rem;
  }

  /* LOGO */
  .logo-img {
    width: 180px;
    height: auto;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    align-items: flex-start;

    min-height: auto;

    padding: 40px 20px 80px;
  }

  .hero-content {
    width: 100%;
    z-index: 2;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
    line-height: 0.9;
  }

  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }

  /* BUTTONS */
  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* STATUS CARDS */
  .status-wrapper {
    width: 100%;
    margin: 40px 0 0;
    align-items: stretch;
  }

  .status-card {
    width: 100%;
  }

  /* RUNNER */
  .bg-runner {
    width: 130vw;

    right: -35%;
    bottom: -5%;

    opacity: 0.08;
  }

  /* INFO GRID */
  .info-grid {
    grid-template-columns: 1fr;
  }

  /* QUICK LINKS */
  .quick-grid {
    grid-template-columns: 1fr;
  }

  /* SOCIALS */
  .social-grid {
    grid-template-columns: 1fr;
  }

  /* PRICE GRID */
  .price-grid {
    grid-template-columns: 1fr;
  }

  /* PORTFOLIO */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* TITLES */
  .section-title,
  .socials h2,
  .contact h2 {
    text-align: center;
  }

  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}

.impressum-block a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.logo-link {
  position: relative;
  z-index: 9999;
  display: inline-block;
}

.bg-runner {
  pointer-events: none;
}

/* === PORTFOLIO IMAGE FOCUS POSITIONS === */

.focus-top {
  object-position: center top;
}

.focus-bottom {
  object-position: center bottom;
}

.focus-left {
  object-position: left center;
}

.focus-right {
  object-position: right center;
}

/* PRECISE POSITIONS */

.focus-dino {
  object-position: top 20%;
}

.focus-darkwolf {
  object-position: center 20%;
}

.focus-reflection {
  object-position: center 26%;
}