/* =============================================
   WeWereYoung.eu - Lokaler Klon
   Basiert auf Divi Theme + Custom Styles
   ============================================= */

@font-face {
  font-family: "Phonk";
  font-display: swap;
  src: url("../fonts/Phonk-RegularDEMO.otf") format("opentype");
  /* Nur sichere ASCII-Zeichen — Demo-Font zeigt FREE DEMO bei allem ausserhalb */
  unicode-range: U+0020-007E;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Sonderzeichen-Fallback: Outfit statt Phonk-Demo */
.sf { font-family: 'Outfit', Helvetica, Arial, sans-serif !important; }

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Outfit', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: #ce2f2f; text-decoration: none; }
a:hover { color: #f72c2c; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 0.5em;
}

p { margin-bottom: 1em; }

/* ---- Container ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#main-header {
  background-color: #020202;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 66px;
  transition: height 0.3s ease, background 0.3s ease;
}

#main-header.scrolled {
  height: 50px;
  background-color: rgba(2,2,2,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.et_menu_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Split-header: logo center, nav both sides */
.logo_container {
  display: flex;
  align-items: center;
}

.logo_container a {
  display: flex;
  align-items: center;
}

#logo {
  height: 44px;
  width: auto;
}

#main-header.scrolled #logo {
  height: 32px;
}

#et-top-navigation {
  display: flex;
  align-items: center;
}

#top-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

#top-menu li a {
  color: #ffffff;
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

#top-menu li a:hover,
#top-menu li.current a {
  color: #f72c2c;
}

/* ── Hamburger Button ── */
.mobile_menu_bar {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
  position: relative;
}
.mobile_menu_bar span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.76,0,.24,1), opacity .25s ease, width .3s ease;
  transform-origin: center;
}
/* X-State */
.mobile_menu_bar.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile_menu_bar.is-open span:nth-child(2) { opacity: 0; width: 0; }
.mobile_menu_bar.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#et_mobile_nav_menu { display: none; }

/* ── Mobile Fullscreen Overlay ── */
.et_mobile_menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 40px 80px;
  list-style: none;
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .5s cubic-bezier(.76,0,.24,1);
  pointer-events: none;
}
.et_mobile_menu::before {
  content: '';
  position: absolute;
  left: 40px; top: 30%; bottom: 30%;
  width: 1px;
  background: #ce2f2f;
  opacity: .4;
}
.et_mobile_menu.open {
  clip-path: inset(0 0 0% 0);
  pointer-events: all;
}
.et_mobile_menu li a {
  display: block;
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: clamp(2.4rem, 9vw, 4.5rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  padding-left: 28px;
  text-decoration: none;
  transition: color .3s ease, transform .3s ease, opacity .3s ease;
  transform: translateX(-16px);
  opacity: 0;
}
.et_mobile_menu.open li a {
  color: #fff;
  transform: translateX(0);
  opacity: 1;
}
.et_mobile_menu li:nth-child(1) a { transition-delay: .12s; }
.et_mobile_menu li:nth-child(2) a { transition-delay: .18s; }
.et_mobile_menu li:nth-child(3) a { transition-delay: .24s; }
.et_mobile_menu li:nth-child(4) a { transition-delay: .30s; }
.et_mobile_menu li:nth-child(5) a { transition-delay: .36s; }
.et_mobile_menu li a:hover { color: #ce2f2f; }

/* =============================================
   MAIN CONTENT AREA
   ============================================= */
#et-main-area {
  margin-top: 66px;
}

#main-content {
  background-color: #262626;
}

/* =============================================
   SECTIONS
   ============================================= */
.et_pb_section {
  position: relative;
  background-color: #000;
}

.et_pb_section.dark-bg { background-color: #000000; }
.et_pb_section.grey-bg { background-color: #262626; }

.et_pb_row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 27px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Column widths */
.col-full   { flex: 0 0 100%; max-width: 100%; }
.col-half   { flex: 0 0 calc(50% - 10px); max-width: calc(50% - 10px); }
.col-third  { flex: 0 0 calc(33.333% - 14px); max-width: calc(33.333% - 14px); }
.col-quarter{ flex: 0 0 calc(25% - 15px); max-width: calc(25% - 15px); }

/* =============================================
   HERO / FULLWIDTH VIDEO SECTION (Homepage)
   ============================================= */
.hero-video-section {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-section video {
  width: 224%;
  height: 224%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(2.24) scaleY(2.24);
  object-fit: cover;
  pointer-events: none;
}

.hero-video-section .video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(206,47,47,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.hero-play-btn:hover {
  background: #f72c2c;
  transform: scale(1.08);
}

.hero-play-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  margin-left: 4px;
}

/* Fullwidth video player */
.fullwidth-video {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.fullwidth-video video,
.fullwidth-video iframe {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   FULLWIDTH HEADER (Seitenheader / Banner)
   ============================================= */
.page-header {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: #000;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.page-header .header-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 30px;
}

.page-header h1 {
  font-family: 'Outfit', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section {
  background-color: #000;
  padding: 80px 0;
}

.about-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text h1 {
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: #ce2f2f;
  font-weight: 400;
  margin-bottom: 30px;
}

.about-text p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =============================================
   CLIENTS / LOGOS ROW
   ============================================= */
.clients-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.clients-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.clients-grid img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.clients-grid img:hover { opacity: 1; }

/* =============================================
   WORK PAGE - Portfolio Grid
   ============================================= */
.work-section {
  background-color: #000;
  padding: 60px 0;
}

.work-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.work-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
  display: block;
}

.work-item:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

.work-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(206, 47, 47, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-item:hover .overlay { opacity: 1; }

.work-item .play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(206,47,47,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-item .play-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 4px;
}

.work-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* =============================================
   RENT PAGE
   ============================================= */
.rent-section {
  background-color: #000;
  padding: 80px 0;
}

.rent-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.rent-item h3 {
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 16px;
}

.rent-item p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* =============================================
   NEWS PAGE
   ============================================= */
.news-section {
  background-color: #000;
  padding: 80px 0;
}

.news-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.news-card {
  background: #1a1a1a;
  overflow: hidden;
  transition: transform 0.3s;
}

.news-card:hover { transform: translateY(-4px); }

.news-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.news-card-body {
  padding: 24px;
}

.news-card-body h2 {
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}

.news-card-body p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.7;
}

.news-card-body .read-more {
  display: inline-block;
  margin-top: 16px;
  color: #ce2f2f;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   KONTAKT PAGE
   ============================================= */
.kontakt-section {
  background-color: #000;
  padding: 100px 0;
}

.kontakt-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.kontakt-inner h1 {
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 40px;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt-form input,
.kontakt-form textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  border-color: #ce2f2f;
}

.kontakt-form textarea {
  min-height: 160px;
  resize: vertical;
}

.kontakt-info {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.kontakt-info-item {
  text-align: center;
}

.kontakt-info-item h4 {
  font-family: 'Phonk', sans-serif;
  font-size: 1rem;
  color: #ce2f2f;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kontakt-info-item p, .kontakt-info-item a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* =============================================
   BUTTONS
   ============================================= */
.et_pb_button, .btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 2px solid #ce2f2f;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.et_pb_button:hover, .btn:hover {
  background: #ce2f2f;
  color: #fff;
}

.btn-red {
  background: #ce2f2f;
  color: #fff;
}

.btn-red:hover {
  background: #f72c2c;
  border-color: #f72c2c;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  position: relative;
  background-color: #ce2f2f;
  padding: 100px 30px;
  text-align: center;
  overflow: hidden;
}

.cta-section h1 {
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* =============================================
   FOOTER
   ============================================= */
#main-footer {
  background-color: #000000;
  color: #ffffff;
  padding-top: 200px;
  padding-bottom: 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.footer-address {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.6;
}

.footer-contact-mobile {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

.footer-contact-mobile a { color: #fff; }

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  max-width: 220px;
}

.footer-links {
  text-align: center;
}

.footer-links h1 {
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: 17px;
  color: #ff3233;
  text-transform: uppercase;
  line-height: 2.5;
}

.footer-links h1 a {
  color: #ff3233;
  text-decoration: none;
}

.footer-links h1 a:hover { color: #fff; }

.footer-contact-desktop {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.6;
  text-align: right;
}

.footer-contact-desktop a { color: #fff; }

.footer-bottom {
  text-align: center;
  padding: 20px 30px;
  border-top: 1px solid #1a1a1a;
  color: #555;
  font-size: 13px;
}

/* =============================================
   POST SLIDER (About page)
   ============================================= */
.post-slider-section {
  background-color: #000;
  padding: 0;
  overflow: hidden;
}

.slide {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.slide-image {
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  padding: 60px 40px;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content h2 {
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 16px;
}

.slide-content p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* =============================================
   IMPRESSUM / DATENSCHUTZ
   ============================================= */
.legal-section {
  background-color: #000;
  padding: 100px 0;
}

.legal-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

.legal-inner h1 {
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  color: #ce2f2f;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.legal-inner h2 {
  font-family: 'Phonk', Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin: 30px 0 12px;
  text-transform: uppercase;
}

.legal-inner p, .legal-inner li {
  color: #aaa;
  line-height: 1.9;
  margin-bottom: 8px;
}

.legal-inner ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-inner a { color: #ce2f2f; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 980px) {
  #top-menu { display: none; }
  .mobile_menu_bar { display: flex; }
  #et_mobile_nav_menu { display: block; }

  .about-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .rent-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-contact-desktop { text-align: center; display: none; }
  .slide { grid-template-columns: 1fr; }
  .kontakt-info { gap: 30px; }
}

@media (max-width: 767px) {
  .et_pb_section { padding: 0; }
  .work-grid { grid-template-columns: 1fr; }
  .hero-video-section { min-height: 60vh; }
  #main-footer { padding-top: 60px; }
  .footer-contact-desktop { display: none; }
  .page-header { min-height: 35vh; }
  .about-text h1 { font-size: 2rem; }
  .cta-section { padding: 60px 20px; }
  .kontakt-inner h1 { font-size: 2rem; }
}
