/* ==============================================
   GLOBAL & VARIABLES
   ============================================== */

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

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

a, button {
  font: inherit;
}

:root {
  --red: #E52038;
  --dark: #2E0D11;
  --darker: #1a0609;
  --pink: #FBDADE;
  --cream: #f5eeef;
  --gray: #9a8a8c;
  --red2: #c41830;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Red Hat Display', system-ui, sans-serif;
  font-size: 16px;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  max-width: 100vw;
}

/* ==============================================
   NAVIGATION
   ============================================== */

nav {
  background: #2E0D11;
  border-bottom: 1px solid rgba(229, 32, 56, 0.18);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: 84px;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 1001;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: var(--cream);
  transition: 0.3s;
}

@media (max-width: 1200px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s;
    z-index: 1002;
    display: none;
  }

  .nav-links.active {
    display: flex;
    left: 0;
    z-index: 1002;
  }

  .burger-menu {
    display: flex;
  }

  .nav-link {
    margin: 1rem 0;
    font-size: 1.2rem;
  }
}

.nav-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}

.nav-logo a {
  display: block;
}

.logo-anim-wrap {
  width: auto;
  height: auto;
  max-height: 42px;
  perspective: 10px;
}

.logo-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

.logo-img {
  display: block;
  max-height: 42px;
  width: auto;
}

@keyframes logoFloat {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg) scale(1);
  }
  25% {
    transform: rotateY(22deg) rotateX(6deg) scale(1.05);
  }
  50% {
    transform: rotateY(-18deg) rotateX(-4deg) scale(0.97);
  }
  75% {
    transform: rotateY(10deg) rotateX(3deg) scale(1.02);
  }
}

.nav-brand {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--cream);
  text-transform: uppercase;
}

.nav-brand span {
  color: rgba(245, 238, 239, 0.5);
}

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-link {
  padding: 10px 18px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: rgba(245, 238, 239, 0.65);
  border: none;
  background: none;
  font-family: 'Red Hat Display', sans-serif;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--cream);
  background: rgba(229, 32, 56, 0.1);
}

.nav-link.active {
  color: var(--cream);
  background: rgba(229, 32, 56, 0.18);
}

.nav-link.cta {
  background: var(--red);
  color: #FBDADE;
  font-weight: 700;
}

.nav-link.cta:hover {
  background: #ff2a45;
}

/* ==============================================
   PAGE LAYOUT
   ============================================== */

.page {
  display: none;
}

.page.visible {
  display: block;
}

/* ==============================================
   HERO SECTION
   ============================================== */

.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(229, 32, 56, 0.04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(229, 32, 56, 0.04) 80px);
}



@keyframes glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.12);
  }
}

.hero-big-logo {
  position: relative;
  margin-bottom: 2.5rem;
  width: 110px;
  height: auto;
  perspective: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-big-logo-inner {
  width: 110px;
  transform-style: preserve-3d;
  animation: heroBig 9s ease-in-out infinite;
}

@keyframes heroBig {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  20% {
    transform: rotateY(30deg) rotateX(8deg);
  }
  45% {
    transform: rotateY(-25deg) rotateX(-6deg);
  }
  70% {
    transform: rotateY(15deg) rotateX(4deg);
  }
  90% {
    transform: rotateY(-8deg) rotateX(-2deg);
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 32, 56, 0.14);
  border: 1px solid rgba(229, 32, 56, 0.32);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff8090;
  margin-bottom: 1.5rem;
  position: relative;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4060;
  animation: pd 1.4s infinite;
}

@keyframes pd {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -1px;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: rgba(245, 238, 239, 0.6);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2rem;
  position: relative;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  flex-direction: column;   /* 👈 DAS ist der Key */
  align-items: center;
  gap: 12px;
}

.btn {
  padding: 18px 40px;
  border-radius: 7px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Red Hat Display', sans-serif;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-r {
  background: var(--red);
  color: #FBDADE;
  border: none;
}

.btn-r:hover {
  background: #ff2a45;
  transform: translateY(-1px);
}

.btn-o {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 238, 239, 0.28);
}

.btn-o:hover {
  border-color: rgba(245, 238, 239, 0.6);
}

.hero-stats {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(229, 32, 56, 0.18);
  border-top: 2px solid var(--red);
  border-radius: 14px;
  min-width: 110px;
  transition: background 0.2s, border-color 0.2s;
}

.hero-stats > div:hover {
  background: rgba(229, 32, 56, 0.08);
  border-color: rgba(229, 32, 56, 0.45);
}

.stat-n {
  font-size: 2rem;
  font-weight: 900;
  color: #FBDADE;
  line-height: 1;
}

.stat-l {
  font-size: 12px;
  color: #FBDADE;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  font-weight: 600;
}

/* ==============================================
   SECTION LAYOUT & TYPOGRAPHY
   ============================================== */

.section-wrap {
  padding: 5rem 8rem;
  max-width: 1800px;
  margin: 0 auto;
}

.stag {
  display: inline-block;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 28px;
  color: rgba(245,238,239,0.6);
  line-height: 1.5;
}

.section-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  margin-top: 0.45em;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.tag-card {
  border: 1px solid rgba(229, 32, 56, 0.28);
  border-radius: 8px;
  padding: 1.6rem 1.8rem;
  background: rgba(229, 32, 56, 0.04);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FBDADE;
  letter-spacing: 0.3px;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1.3;
}

.tag-card span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FBDADE;
  margin-bottom: 0.4rem;
}

.tag-card:hover {
  background: rgba(229, 32, 56, 0.09);
  border-color: rgba(229, 32, 56, 0.5);
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
}

h2 em {
  color: var(--red);
  font-style: normal;
}

/* ==============================================
   CARDS & GRIDS
   ============================================== */

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 2.5rem;
}

.grid3.large-cards .card {
  min-height: 280px;
  padding: 2rem;
}

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

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(229, 32, 56, 0.16);
  border-radius: 14px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(229, 32, 56, 0.38);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(229, 32, 56, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.card p {
  font-size: 14px;
  color: rgba(245, 238, 239, 0.58);
  line-height: 1.7;
}

.badge {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(229, 32, 56, 0.14);
  color: #ff8090;
  font-size: 11px;
  font-weight: 700;
}

/* ==============================================
   UTILITIES
   ============================================== */

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 32, 56, 0.25), transparent);
}

.dark-bg {
  background: var(--darker);
}

.split2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 2.5rem;
}

.aside-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12rem;
  align-items: stretch;
}

.aside-layout > div:not(.aside-title) {
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
  border-left: 2px solid rgba(229, 32, 56, 0.25);
}

.aside-title {
  position: relative;
  padding: 2.5rem;
  border: 1px solid rgba(229, 32, 56, 0.25);
  border-radius: 3px;
  background: rgba(229, 32, 56, 0.025);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aside-title::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  box-shadow: -3px -3px 12px rgba(229, 32, 56, 0.5);
  animation: cornerPulse 4s ease-in-out infinite;
}

.aside-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  box-shadow: 3px 3px 12px rgba(229, 32, 56, 0.5);
  animation: cornerPulse 4s ease-in-out infinite 2s;
}

@keyframes cornerPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.aside-title .stag {
  display: block;
  margin-bottom: 3rem;
}

.aside-title h2 {
  font-size: 2.8rem;
  line-height: 1.06;
  margin-top: 0;
  margin-bottom: 0;
}

.aside-layout-reverse {
  grid-template-columns: 2fr 1fr;
}

.aside-layout-reverse .aside-title {
  text-align: right;
}

.aside-layout-reverse > div:not(.aside-title) {
  padding-left: 0;
  border-left: none;
  padding-right: 2rem;
  border-right: 2px solid rgba(229, 32, 56, 0.25);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0,1fr) 1px minmax(0,1fr);
  gap: 1.75rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.section-split > .section-divider {
  width: 100%;
  background: rgba(229, 32, 56, 0.18);
}

.section-split > div {
  min-width: 0;
}

.section-split .section-text {
  padding-right: 1rem;
}

.section-split .section-visual {
  padding-left: 1rem;
}

@media (max-width: 860px) {
  .section-split {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    background-size: 32px 32px;
  }

  .section-split > .section-divider {
    display: none;
  }
}

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

/* ==============================================
   FEATURE LIST
   ============================================== */

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.fi {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.fi-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(229, 32, 56, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fi h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 3px;
}

.fi p {
  font-size: 14px;
  color: rgba(245, 238, 239, 0.58);
  line-height: 1.65;
}

/* ==============================================
   INFO BOX
   ============================================== */

.info-box {
  background: rgba(229, 32, 56, 0.07);
  border: 1px solid rgba(229, 32, 56, 0.2);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ib-row {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  
}

.ib-label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff8090;
  margin-bottom: 5px;
}

.ib-val {
  font-size: 20px;
  color: rgba(245, 238, 239, 0.7);
  line-height: 1.6;
}

.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.chip {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 16px;
  color: rgba(245, 238, 239, 0.7);
}

/* ==============================================
   ABOUT SECTION
   ============================================== */

.about-text p {
  font-size: 20px;
  color: rgba(245, 238, 239, 0.64);
  line-height: 1.85;
  margin-bottom: 1rem;
}



.about-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--pink);
}

.chk {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 9px;
  font-size: 20px;
  color: rgba(245, 238, 239, 0.68);
}

.chk-mark {
  color: var(--red);
  font-weight: 900;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==============================================
   CTA & BANNER
   ============================================== */

.cta-banner {
  background: rgba(229, 32, 56, 0.08);
  border: 1px solid rgba(229, 32, 56, 0.22);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.cta-banner h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.7rem;
}

.cta-banner p {
  color: rgba(245, 238, 239, 0.60);
  max-width: 460px;
  margin: 0 auto 1.5rem;
  font-size: 15px;
  line-height: 1.8;
}

/* ==============================================
   STEPS BOX
   ============================================== */

.steps-box {
  background: rgba(229, 32, 56, 0.07);
  border: 1px solid rgba(229, 32, 56, 0.18);
  border-radius: 14px;
  padding: 1.75rem;
  margin-top: 2rem;
}

.steps-box h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1rem;
}

.step-row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.step-num {
  background: var(--red);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-row p {
  font-size: 14px;
  color: rgba(245, 238, 239, 0.72);
  line-height: 1.7;
}

/* ==============================================
   SOCIAL GRID
   ============================================== */

.soc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 2rem;
}

.soc-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 30px;
}

.soc-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.soc-card p {
  font-size: 20px;
  color: rgba(245, 238, 239, 0.45);
  line-height: 1.6;
}

.soc-em {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 9px;
}

/* ==============================================
   PAGE HERO
   ============================================== */

.page-hero {
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

.page-hero .hero-grid,
.page-hero .hero-glow {
  position: absolute;
}



/* ==============================================
   BOOKING PAGE
   ============================================== */

.bk-page {
  padding: 5rem 2rem;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.cs-box {
  background: rgba(229, 32, 56, 0.07);
  border: 1px dashed rgba(229, 32, 56, 0.36);
  border-radius: 18px;
  padding: 3.5rem 2rem;
  margin-top: 3rem;
}

.cs-box h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.9rem;
}

.cs-box p {
  color: rgba(245, 238, 239, 0.58);
  max-width: 420px;
  margin: 0 auto 2rem;
  font-size: 15px;
  line-height: 1.75;
}

.notify-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.n-in {
  padding: 12px 18px;
  border-radius: 7px;
  border: 1px solid rgba(229, 32, 56, 0.36);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  font-size: 14px;
  width: 245px;
  outline: none;
  font-family: 'Red Hat Display', sans-serif;
}

.n-in::placeholder {
  color: rgba(245, 238, 239, 0.28);
}

.n-in:focus {
  border-color: var(--red);
}

/* ==============================================
   TIMELINE
   ============================================== */

.tl {
  max-width: 460px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.tl-row {
  display: flex;
  gap: 17px;
  align-items: flex-start;
}

.tl-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-d {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(229, 32, 56, 0.25);
  flex-shrink: 0;
  margin-top: 3px;
}

.tl-d.done {
  background: #4a7a1a;
}

.tl-d.now {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(229, 32, 56, 0.22);
}

.tl-ln {
  width: 2px;
  height: 36px;
  background: rgba(229, 32, 56, 0.18);
}

.tl-b {
  padding-bottom: 10px;
}

.tl-b h5 {
  font-size: 13px;
  font-weight: 700;
}

.tl-b p {
  font-size: 13px;
  color: rgba(245, 238, 239, 0.45);
  margin-top: 2px;
}

/* ==============================================
   ADDRESS BOX
   ============================================== */

.addr-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(229, 32, 56, 0.16);
  border-radius: 14px;
  padding: 1.75rem;
  margin-top: 2.5rem;
  text-align: left;
}

.addr-box h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1rem;
}

.addr-r {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(245, 238, 239, 0.66);
}

/* ==============================================
   FOOTER
   ============================================== */

footer {
  background: var(--darker);
  border-top: 1px solid rgba(229, 32, 56, 0.18);
  padding: 4rem 5rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1800px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(229, 32, 56, 0.1);
}

.foot-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 1rem;
}

.foot-brand-name {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
}

.foot-brand-sub {
  font-size: 13px;
  color: rgba(245, 238, 239, 0.35);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.footer-col-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: rgba(245, 238, 239, 0.45);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: 1800px;
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
}

footer p, .footer-bottom p {
  color: rgba(245, 238, 239, 0.2);
  font-size: 12px;
  line-height: 1.7;
}
/* ==============================================
   MAP / ANREISE
   ============================================== */

.map-box {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(229, 32, 56, 0.2);
  background: rgba(255,255,255,0.04);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 860px) {
  .nav {
    padding: 0 1rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }

  .section-wrap {
    padding: 3.5rem 1.5rem;
  }

  .cta-banner {
    padding: 2rem;
  }

  .card {
    padding: 1.5rem;
  }

  .btn {
    width: auto;
  }

  .notify-row {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem;
    height: auto;
  }

  .nav-links {
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 13px;
    padding: 10px 12px;
  }

  .hero {
    min-height: auto;
    padding: 3rem 1.2rem;
  }

  .hero-tag {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero-sub {
    max-width: 100%;
  }

  .section-wrap {
    padding: 2.5rem 1.2rem;
  }

  .split2,
  .grid3,
  .soc-grid {
    grid-template-columns: 1fr;
  }

  .split2 {
    gap: 1.5rem;
  }

  .aside-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-split {
    padding: 1.5rem;
  }

  .cta-banner {
    padding: 1.75rem;
  }

  .feat-list {
    gap: 32px;
  }

  .fi {
    gap: 12px;
  }

  .info-box {
    padding: 1.5rem;
  }

  .n-in {
    width: 100%;
    max-width: 100%;
  }

  .notify-row {
    flex-direction: column;
    align-items: stretch;
  }

  .foot-logo-wrap {
    margin-bottom: 18px;
  }

  footer {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.5rem 1rem;
    height: auto;
  }

  .nav-links {
    gap: 0.25rem;
  }

  .nav-link {
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .hero-tag {
    font-size: 10px;
    padding: 4px 12px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .section-lead {
    font-size: 20px;
   
    
  }

  .hero-btns {
    margin-bottom: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 16px;
  }

  .hero-stats {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .hero-stats > div {
    padding: 1rem 1.25rem;
    min-width: 90px;
  }

  .stat-n {
    font-size: 1.6rem;
  }

  .stat-l {
    font-size: 10px;
  }

  .section-wrap {
    padding: 2rem 1rem;
  }

  .stag {
    font-size: 20px;
    margin-bottom: 0.5rem;
  }

  h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
  }

  .grid3 {
    gap: 12px;
  }

  .card {
    padding: 1.25rem;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }

  .split2 {
    gap: 1rem;
  }

  .map-box {
    height: 250px;
  }

  .cta-banner {
    padding: 1.5rem;
  }

  .cta-banner h3 {
    font-size: 1.2rem;
  }

  .cta-banner p {
    font-size: 14px;
  }

  .steps-box {
    padding: 1.5rem;
  }

  .step-row p {
    font-size: 13px;
  }

  .soc-grid {
    gap: 10px;
  }

  .soc-card {
    padding: 1.2rem;
    font-size: 28px;
  }

  .soc-card h4 {
    font-size: 16px;
  }

  .soc-card p {
    font-size: 13px;
  }

  .about-text p {
    font-size: 18px;
    line-height: 1.7;
  }

  footer {
    padding: 1.5rem 1rem;
  }

  .foot-logo-wrap {
    margin-bottom: 10px;
  }

  footer p {
    font-size: 12px;
  }
}
.social-icons {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-right: 25px;
}

/* Link Wrapper */
.social-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  vertical-align: bottom;
}

/* Icon */
.social-link img {
  width: 45px;
  height: 45px;
  opacity: 0.8;
  transition: all 0.25s ease;
 
 
}

.social-link.instagram img {
  width: 60px;
  height: 40px;
}

/* Underline */
.social-link span {
  width: 0%;
  height: 1px;
  background: var(--red);
  transition: width 0.25s ease;
}

/* Navbar social icons */
.nav-social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 0.5rem;
}

.nav-social .social-link img {
  width: 32px;
  height: 32px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-social .social-link img:hover {
  opacity: 1;
}

.nav-social .social-link.instagram img {
  width: 44px;
  height: 30px;
}

@media (max-width: 1200px) {
  .nav-social {
    display: none;
  }
}

/* Hero social icons */
.hero-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 1.4rem;
  position: relative;
  z-index: 1;
}

.hero-social .social-link img {
  width: 48px;
  height: 48px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.hero-social .social-link img:hover {
  opacity: 1;
}

.hero-social .social-link.instagram img {
  width: 64px;
  height: 44px;
}

/* Footer social icons */
.foot-social {
  display: flex;
  gap: 14px;
  margin-top: 1rem;
  align-items: center;
}

.foot-social .social-link img {
  width: 38px;
  height: 38px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.foot-social .social-link img:hover {
  opacity: 1;
}

.foot-social .social-link.instagram img {
  width: 52px;
  height: 35px;
}

/* ==============================================
   ANNOUNCEMENT BAR
   ============================================== */

.announcement-bar {
  display: block !important;
  width: 100%;
  box-sizing: border-box;
  background: #E52038 !important;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FBDADE !important;
  letter-spacing: 0.4px;
  text-decoration: none !important;
  transition: background 0.2s;
}

.announcement-bar:hover {
  background: #c41830 !important;
  color: #FBDADE !important;
}

/* ==============================================
   PARTNER CAROUSEL
   ============================================== */

.partner-track-wrap {
  overflow: hidden;
  padding: 0 0 4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.partner-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: partnerScroll 65s linear infinite;
}

.partner-track:hover {
  animation-play-state: paused;
}

@keyframes partnerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo-card {
  width: 360px;
  height: 170px;
  background: #2E0D11;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-logo-card img {
  max-width: 285px;
  max-height: 125px;
  object-fit: contain;
}

/* ==============================================
   SCROLL REVEAL ANIMATIONS
   ============================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="left"] {
  transform: translateX(-56px);
}

[data-reveal="right"] {
  transform: translateX(56px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }

/* ==============================================
   BACK TO TOP BUTTON
   ============================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  background: var(--dark);
  border: 1px solid rgba(229, 32, 56, 0.4);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: border-color 0.2s, background 0.2s;
}

.back-to-top:hover {
  border-color: var(--red);
  background: rgba(229, 32, 56, 0.1);
}

/* ==============================================
   MOBILE FIXES — FOOTER & INDEX LAYOUT
   ============================================== */

@media (max-width: 720px) {
  /* Footer: single column */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* aside-layout: remove left border when stacked, add subtle top line */
  .aside-layout > div:not(.aside-title) {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(229, 32, 56, 0.2);
    padding-top: 1.5rem;
  }

  /* aside-title: no forced height when stacked */
  .aside-title {
    min-height: unset;
    padding: 1.6rem;
  }

  .aside-title .stag {
    margin-bottom: 1rem;
  }

  .aside-title h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* tag-grid */
  .tag-grid {
    gap: 0.75rem;
    margin-bottom: 1.2rem;
  }

  .tag-card {
    font-size: 1.05rem;
    padding: 1.1rem 1.3rem;
  }

  /* hero social icons */
  .hero-social .social-link img {
    width: 64px;
    height: 64px;
  }

  .hero-social .social-link.instagram img {
    width: 82px;
    height: 56px;
  }

  /* footer social icons */
  .foot-social .social-link img {
    width: 52px;
    height: 52px;
  }

  .foot-social .social-link.instagram img {
    width: 68px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  /* Footer */
  .footer-inner {
    gap: 1.5rem;
  }

  /* tag cards */
  .tag-card {
    font-size: 0.95rem;
    padding: 0.9rem 1.1rem;
  }

  /* hero social icons */
  .hero-social {
    gap: 14px;
    margin-top: 1rem;
  }

  .hero-social .social-link img {
    width: 58px;
    height: 58px;
  }

  .hero-social .social-link.instagram img {
    width: 74px;
    height: 50px;
  }

  /* footer social icons */
  .foot-social .social-link img {
    width: 46px;
    height: 46px;
  }

  .foot-social .social-link.instagram img {
    width: 60px;
    height: 41px;
  }

  /* back-to-top button smaller on very small screens */
  .back-to-top {
    width: 52px;
    height: 52px;
    bottom: 1.2rem;
    right: 1.2rem;
  }
}

