/*
Theme Name: Benjamin Weu Grading
Author: Benjamin
Version: 1.0
*/

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  padding-top: 0px;
}


/* ===== Portfolio Grid ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 2rem;
}

/* Tablets / kleinere Laptops → 2 Bilder */
@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* NUR echte Mobile / Hochformat → 1 Bild */
@media (max-width: 600px), (max-aspect-ratio: 3/4) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Portfolio Item Bilder ===== */
.portfolio-item img {
  width: 100%;
  height: auto; /* Höhe passt sich automatisch an */
  object-fit: cover;
  display: block;
}

.portfolio-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item h2 {
  mix-blend-mode: difference;
}

.portfolio-item:hover .portfolio-title {
  opacity: 1;
  transform: translate(-50%, 0);
}

.portfolio-single img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.portfolio-single h1 {
  text-align: center;
  margin: 3rem 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 20;
  width: 100%;
  padding: 1.5rem 2rem;
  z-index: 100;
}

.site-title {
  position: relative;
}

.site-title a {
  position: relative;
  font-family: 'Bebas Neue';
  font-size: 1.99rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  z-index: 3;
}
/* 🔴 Chromatic Split – roter Versatz */
.site-title a::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;

  transform: translateX(0.3px);
  color: rgba(180, 50, 50, 0.45);
  filter: blur(1.5px);

  mix-blend-mode: normal; /* wirkt nur auf helle Bereiche */
  opacity: 0.85;

  z-index: -1;
  pointer-events: none;
}

/* 🟠 sehr dezenter Bloom */
.site-title a::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;

  color: rgba(191, 123, 36, 0.35);
  filter: blur(10px);
  opacity: 0.65;

  mix-blend-mode: screen;
  z-index: -2;
  pointer-events: none;
}

.site-subtitle {
  margin-top: 0.2rem;

  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: #ffffff;
  opacity: 0.6;

  text-align: left;
}
/* 🔴 Chromatic Split – roter Versatz */
.site-subtitle a::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;

  transform: translateX(0.3px);
  color: rgba(180, 50, 50, 0.45);
  filter: blur(1.5px);

  mix-blend-mode: normal; /* wirkt nur auf helle Bereiche */
  opacity: 0.85;

  z-index: -1;
  pointer-events: none;
}

/* 🟠 sehr dezenter Bloom */
.site-subtitle a::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;

  color: rgba(191, 123, 36, 0.35);
  filter: blur(10px);
  opacity: 0.65;

  mix-blend-mode: screen;
  z-index: -2;
  pointer-events: none;
}

/* Titel + Subheadline schwebend über dem Bild */
.portfolio-header {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  max-width: 90%;
}

/* Titel */
.portfolio-single-title {
  margin: 0;
}

/* Subheadline */
.portfolio-single-subtitle {
  margin-top: 0.1rem;
}
@media (max-width: 768px) {
  .portfolio-header {
    bottom: 15px;
  }

  .portfolio-single-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }
}
.portfolio-single-title {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .portfolio-single-title {
    white-space: normal;
  }
}


/* ===== Footer-Container ===== */
.site-footer {
  display: flex;
  flex-direction: column;       /* Elemente untereinander */
  align-items: center;          /* horizontal zentriert */
  justify-content: center;      /* vertikal zentriert bei hoher Footer-Höhe */
  padding: 3rem 2rem;
  text-align: center;
  background: transparent;             /* optional, falls Footer schwarz */
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
}

/* ===== Footer-Menü ===== */
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;      /* horizontal zentrieren */
  gap: 1.5rem;                    /* Abstand zwischen den Links */
}

.site-footer li {
  display: inline-block;
}

.site-footer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.site-footer a:hover {
  opacity: 1;
  transform: scale(1.05);      /* leichter Hover-Effekt */
}

/* ===== Optional: kleiner Zusatztext unter Menü ===== */
.site-footer .footer-text {
  margin-top: 1rem;
  font-size: 1.25rem;
  opacity: 0.6;
}


.portfolio-item {
  position: relative;
  display: block;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


.portfolio-title {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 10px);

  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: white;
  background: none;

  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;

  z-index: 10;
  
  max-width: 80%;
    text-align: center;
    white-space: normal;
    line-height: 1.1;
  
  /* 🔴 Chromatic Split – roter Versatz */
  .portfolio-title :before {
    content: attr(data-text);
    position: absolute;
    inset: 0;

    transform: translateX(0.4px);
    color: rgba(180, 50, 50, 0.45);
    filter: blur(1.5px);

    mix-blend-mode: normal; /* wirkt nur auf helle Bereiche */
    opacity: 0.95;

    z-index: -1;
    pointer-events: none;
  }

  /* 🟠 sehr dezenter Bloom */
  .portfolio-title :after {
    content: attr(data-text);
    position: absolute;
    inset: 0;

    color: rgba(191, 123, 36, 0.35);
    filter: blur(10px);
    opacity: 0.85;

    mix-blend-mode: screen;
    z-index: -2;
    pointer-events: none;
  }
}

.portfolio-single-subtitle {
  margin-top: 0.6rem;
  text-align: center;

  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  opacity: 0.55;
}



/* ===== STARTSEITE HINTERGRUND ===== */
.home-page {
  position: relative;       /* für z-index */
  min-height: 100vh;
  width: 100%;
  background-image: url('images/home-bg.jpg'); /* Pfad zu deinem Bild */
  background-size: cover;   /* füllt die Fläche */
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;               /* ganz hinten */
}

/* Grid-Content darüber */
.home-page .portfolio-grid {
  position: relative;       /* über dem Hintergrund */
  z-index: 1;
}

.front-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url('images/home-bg.jpg'); /* dein Bild */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 90px; /* wie bei anderen Pages */
}



/* ===== Custom Cursor ===== */

/* Standardcursor komplett ausblenden */
* {
  cursor: none !important;  /* alle Elemente */
}

/* Custom Cursor */
.custom-cursor {
  width: 15px;          /* Standardgröße */
  height: 15px;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, transform 0.1s ease;
  z-index: 9999;

  /* Eigenes Bild als Cursor */
  background: url('images/cursor.png') no-repeat center center;
  background-size: contain;
}

/* Hover über Portfolio-Bilder */
.portfolio-item:hover ~ .custom-cursor,
.portfolio-item:hover + .custom-cursor {
  width: 17px;  /* größer beim Hover */
  height: 17px;
}


.cookie-banner {
  display: none; /* zunächst versteckt */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000; /* schwarz wie dein Portfolio */
  color: #fff;
  padding: 15px 10px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

.cookie-banner a {
  color: #006276;
  text-decoration: none;
  margin: 0 0.5rem;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-banner button#accept-cookies {
  margin-left: 1rem;
  padding: 5px 12px;
  background: #bf7b24;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s ease;
}

.cookie-banner button#accept-cookies:hover {
  background: #ffa500;
}
.cookie-banner {
  z-index: 10000;
}

.cookie-banner:hover ~ .custom-cursor {
  opacity: 0;
}



.page-content {
  max-width: 680px;
  margin: 14vh auto 20vh;
  padding: 0 2rem;
}

.page-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3rem;
 
 /* Zentrierung */
   text-align: center;
}

.page-content p,
.page-content li {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}

.page-content a {
  color: #bf7b24;
  text-decoration: none;
}

.page-content a:hover {
  opacity: 1;
}



/* Desktop und Mobile: Bilder behalten Seitenverhältnis */
.portfolio-featured img,
.portfolio-additional img {
  width: 100%;         /* Bild immer volle Breite */
  height: auto;        /* Höhe passt sich automatisch an */
  max-width: 100%;     /* kein Überschreiten */
  object-fit: contain; /* Bild bleibt proportional, wird nicht beschnitten */
  display: block;
}

/* Titel über dem ersten Bild */
.portfolio-single-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10;
}

/* Responsive für Mobile */
@media (max-width: 768px) {
  .portfolio-single-title {
    font-size: 1.5rem;
    bottom: 10px;
  }
}





/* ============================= */
/* ===== ABOUT PAGE ==== */
/* ============================= */

/* Vollflächiger Hintergrund – KEINE Begrenzung */
.about-page {
  position: relative;
  min-height: 100vh;
  width: 100%;

  background-image: url('images/about-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  padding-top: 120px;
}

/* Inhalt zentriert + sichere Ränder */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  flex-wrap: wrap;

  position: relative;
  z-index: 1;
}

/* Text */
.about-text {
  flex: 1 1 500px;
}

.about-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-text p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* Bilder */
.about-photo {
  flex: 1 1 600px;
}

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

/* ============================= */
/* ===== MOBILE FIX (iPhone) === */
/* ============================= */

@media (max-width: 600px) {
  .about-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    gap: 2.5rem;
  }
}

/* ============================= */
/* ===== SAFARI / iOS FIX ====== */
/* ============================= */

body {
  overflow-x: hidden;
}

/* ============================= */
/* ===== OTHERWORK PAGE ==== */
/* ============================= */

/* Vollflächiger Hintergrund – KEINE Begrenzung */
.otherwork-page {
  position: relative;
  min-height: 100vh;
  width: 100%;

  background-image: url('images/otherwork-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  padding-top: 120px;
}

/* Inhalt zentriert + sichere Ränder */
.otherwork-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  flex-wrap: wrap;

  position: relative;
  z-index: 1;
}

/* Text */
.otherwork-text {
  flex: 1 1 500px;
}

.otherwork-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.otherwork-text p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* Bilder */
.otherwork-photo {
  flex: 1 1 600px;
}

.otherwork-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ============================= */
/* ===== MOBILE FIX (iPhone) === */
/* ============================= */

@media (max-width: 600px) {
  .otherwork-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    gap: 2.5rem;
  }
}

/* ============================= */
/* ===== SAFARI / iOS FIX ====== */
/* ============================= */

body {
  overflow-x: hidden;
}


/* ================================ */
/* ===== CONTACT PAGE ===== */
/* ================================ */

.contact-page {
  position: relative;
  min-height: 100vh;
  width: 100%;

  background-image: url('images/contact-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  padding-top: 120px;
}

/* Inhalt zentriert + sichere Ränder */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  position: relative;
  z-index: 1;
}

/* Headline */
.contact-container h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

/* Text */
.contact-container p,
.contact-container li {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Mail */
.contact-mail a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  display: inline-block;
  margin: 2rem 0 3rem;
}

/* Socials */
.contact-socials {
  list-style: none;
  padding: 0;
}

.contact-socials li {
  margin-bottom: 1rem;
}

.contact-socials a {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.7;
}

.contact-socials a:hover {
  opacity: 1;
}

/* ============================= */
/* ===== MOBILE FIX (iPhone) === */
/* ============================= */

@media (max-width: 600px) {
  .contact-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ============================= */
/* ===== SAFARI / iOS FIX ====== */
/* ============================= */

body {
  overflow-x: hidden;
}

/* ================================ */
/* ===== LINKS PAGE ===== */
/* ================================ */

.links-page {
  position: relative;
  min-height: 100vh;
  width: 100%;

  background-image: url('images/contact-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  padding-top: 120px;
}

/* Inhalt zentriert + sichere Ränder */
.links-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  position: relative;
  z-index: 1;
}

/* Headline */
.links-container h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

/* Text */
.links-container p,
.links-container li {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* ============================= */
/* ===== MOBILE FIX (iPhone) === */
/* ============================= */

@media (max-width: 600px) {
  .links-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ============================= */
/* ===== SAFARI / iOS FIX ====== */
/* ============================= */

body {
  overflow-x: hidden;
}







.seo-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
