/* ================= GLOBAL ================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, Arial, sans-serif;
  background: #0f2a5f;
  color: #F4B400;
  text-align: center;
  padding-top: 0;   /* Platz für fixe Navigation */
}

/* ================= NAVIGATION ================= */

.main-nav {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 42, 95, 0.95);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.6rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  text-align: left;   /* überschreibt body:center */
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f4b400;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(244,180,0,0.15);
  color: #f4b400;
}

.nav-links a:visited {
  color: #ffffff;
}

/* Mobile Navigation */
@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
  }
}

/* ================= HERO ================= */

.hero {
  background: url('../assets/images/hero.jpg') center / cover;
  min-height: 14vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-content {
  background: rgba(0,0,0,.55);
  padding: 2.5rem;
  border-radius: 15px;
  max-width: 920px;
}

/* ================= BUTTONS ================= */

.btn {
  background: #f4b400;
  border: none;
  padding: .9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
}

/* ================= SECTIONS ================= */

.about,
.contact,
.instagram {
  background: #0f2a5f;
  color: #F4B400;
  padding: 3rem 1.5rem;
}

/* ================= GALLERY ================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  padding: 2rem;
}

.gallery-item {
  position: relative;
  background: linear-gradient(145deg, #1e4fa3, #0f2a5f);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.45);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: transparent;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Glow Effekt */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(
    circle at top left,
    rgba(244,180,0,0.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Mobile Galerie */
@media (max-width: 900px) {
  .ccu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ccu-grid {
    grid-template-columns: 1fr;
  }
}

  .gallery-item {
    padding: 14px;
  }

  .gallery-item img {
    height: 200px;
  }
}

/* ================= FORM ================= */

form {
  max-width: 420px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  text-align: left;
}

form input,
form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
}

form input {
  height: 48px;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form input:focus,
form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(244,180,0,0.6);
}
/* ================= NAVIGATION FIX ================= */

.main-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex !important;
  flex-direction: row !important;
  list-style: none;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:visited {
  color: #ffffff !important;
}

/* ================= NAVIGATION HARD RESET ================= */

nav.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #0b1f3a, #143b6f);
  padding: 0.8rem 1.6rem;
  z-index: 9999;
}

/* Logo */
.main-nav .nav-logo {
  color: #f4b400;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* UL */
.main-nav ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LI */
.main-nav li {
  display: inline-flex;
}

/* Links */
.main-nav a,
.main-nav a:visited {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(244,180,0,0.2);
  color: #f4b400;
}

/* Platz unter fixer Navigation */
body {
  padding-top: 72px;
}
/* ================= LAYOUT COMPACT ================= */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
@media (min-width: 1200px) {
  .hero {
    min-height: 60vh;
  }
}
section {
  padding: 3rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
}
/* ================= NAV LOGO ================= */

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  height: 136px;          /* Größe anpassen möglich */
  width: auto;
}

.nav-logo-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f4b400;
  font-size: 1.05rem;
}
/* ================= CREATOR SLIDER FINAL ================= */

.creator-strip {
  background: linear-gradient(180deg, #0b1f3a, #143b6f);
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.section-title {
  color: #f4b400;
  margin-bottom: 1.5rem;
}

/* Slider */
.creator-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1.5rem 2rem 2.5rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  justify-content: center;
}

/* Card */
.creator-card {
  scroll-snap-align: center;
  min-width: 260px;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Glow Hover */
.creator-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 0 22px rgba(244,180,0,.55),
    0 14px 36px rgba(0,0,0,.55);
}

/* Active Card */
.creator-card.active {
  transform: scale(1.06);
  box-shadow:
    0 0 28px rgba(244,180,0,.75),
    0 18px 42px rgba(0,0,0,.65);
  z-index: 2;
}

/* Image */
.creator-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: radial-gradient(circle at top, #1d3c72, #081426);
  padding: 1rem;
}

/* Info */
.creator-info {
  padding: 1.1rem 1.2rem 1.4rem;
  text-align: center;
}

.creator-info strong {
  color: #f4b400;
  letter-spacing: .05em;
}

.creator-info p {
  font-size: 0.85rem;
  opacity: 0.85;
}
/* ============ CREATOR ROW LAYOUT ============ */

.creator-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 60px 8%;
}

@media (max-width: 1100px) {
  .creator-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .creator-row {
    grid-template-columns: 1fr;
  }
}

/* ============ CARD STYLE ============ */

.creator-card {
  text-decoration: none;
  color: white;
  text-align: center;
  background: linear-gradient(160deg, #0a1f3d, #08162c);
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.creator-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.creator-card h3 {
  margin-top: 16px;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #ffd24d;
}

.creator-card p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ============ FLIP EFFECT ============ */

.flip-wrapper {
  perspective: 1200px;
  width: 100%;
  height: 260px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(.4,.0,.2,1);
}

.creator-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* Both sides */
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Images */
.flip-front img,
.flip-back img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.5));
}

/* Back side */
.flip-back {
  transform: rotateY(180deg);
}

/* Subtle zoom */
.creator-card:hover img {
  transform: scale(1.05);
}
.creator-card:hover .image-flip {
  filter: brightness(1.1);
}
/* SOCIAL SECTION */
.social-section {
  width: 100%;
  margin-top: 80px;
  padding: 60px 20px;
  text-align: center;

  background: linear-gradient(145deg, #0b1f3a, #102f5e);
  border-radius: 24px;
}

.social-section h2 {
  color: #ffd24d;
  font-size: 2rem;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.social-icons a:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.social-icons img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
/* ================= TILE GRID ================= */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

/* Kachel */
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  text-decoration: none;
  color: white;
  border-radius: 18px;
  background: #0b1f3a;
  transition: transform .3s ease, box-shadow .3s ease;
}

.tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

/* Bild */
.tile img {
  position: absolute;
  inset: 0;
  width: 10%;
  height: 10%;
  object-fit: cover;
}

/* Text Overlay */
.tile span {
  position: relative;
  z-index: 2;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 0.9rem;
}

.tile-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.tile {
  padding: 16px 14px;
  min-height: 200px;
}

.tile img {
  width: 46px;
}

.tile a {
  color: #ffcc33;
  text-decoration: none;
  font-weight: 500;
}

.tile a:hover {
  text-decoration: underline;
}
<main class="page-wrapper">

  <section class="hero hero-small">
    ...
  </section>

  <section class="ccu-section">
    ...
  </section>

</main>
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.ccu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {

  nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    text-align: center;
  }

  nav a {
    font-size: 16px;
    padding: 10px 0;
  }

  .nav-logo {
    grid-column: span 2;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .creator-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.creator-card {
  aspect-ratio: 3 / 4;
}

.creator-card img {
  object-fit: cover;
}
@media (max-width: 768px) {
  body {
    outline: 5px solid red;
  }
}
@media (max-width: 768px) {

  .creator-grid,
  .creator-container,
  .creators {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
  }

}
@media (max-width: 768px) {

  * {
    max-width: 100%;
  }

  section,
  .container,
  .content {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

}
@media (max-width: 768px) {

  nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
    padding: 16px;
  }

  nav a {
    font-size: 16px;
    padding: 8px 0;
  }

  .nav-logo {
    grid-column: span 2;
    text-align: center;
  }

}
@media (max-width: 768px) {

  .creator-card img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }

}
@media (max-width: 768px) {

	@media (max-width: 768px) {

  .burger {
    display: block;
    font-size: 2rem;
    color: #f5c35a;
    cursor: pointer;
    padding: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(180deg, #020b2d, #04154a);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

}
@media (max-width: 768px) {

  .creator-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
  }

  .creator-card {
    width: 100%;
    margin: 0 auto;
  }

}
@media (max-width: 768px) {

  img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

}
@media (max-width: 768px) {

  .hero {
    padding: 2rem 1rem;
    min-height: auto;
  }

  h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  p {
    font-size: 1rem;
    text-align: center;
  }

}
.creator-card img {
  content-visibility: auto;
}
