@font-face {
  font-family: "Nobulina-Inktrap";
  src: url("Fonts/Nobulina-Inktrap.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}


/*############################################################
################### Font-Tomorrow ############################
##############################################################*/
@font-face {
  font-family: "Tomorrow";
  src: url("Fonts/Tomorrow/Tomorrow-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tomorrow";
  src: url("Fonts/Tomorrow/Tomorrow-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tomorrow";
  src: url("Fonts/Tomorrow/Tomorrow-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tomorrow";
  src: url("Fonts/Tomorrow/Tomorrow-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



/*############################################################
####################### Font-Lato ############################
##############################################################*/

/* Thin 100 */
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato/Lato-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Light 300 */
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato/Lato-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular 400 */
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold 700 */
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato/Lato-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Italic 400 */
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato/Lato-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}



body{
    margin: 0;
}

/*+++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++
 
red #fa4646
blue  #1400a0

 ++++++++++++++++++++++++++++++++++
 ++++++++++++++++++++++++++++++++++*/

/*#### Trailer #####*/

#trailer, #trailer-mobile {
  position: fixed; /* Video bleibt immer hinter dem Inhalt */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Video hinter allen Elementen */
}

#trailer {
  display: block;
}
#trailer-mobile {
  display: none;
}


/* Mobile: ab kleiner Bildschirmgröße umschalten */
@media (max-width: 768px) {
  #trailer {
    display: none;
  }
  #trailer-mobile {
    display: block;
  }
}

/* damit Inhalt nicht über dem video liegt */
.overlay-content {
  position: relative;
  z-index: 2;
   padding-top: 100vh; /* 100% der Viewport-Höhe */
  padding-left: 20px;
  padding-right: 20px;
}


.titel h1 {
  margin: 0;
  width: 100%;
  padding: 10% 10% 0% 10%;
  font-family: "Nobulina-Inktrap", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  text-align: left;
  background-color: white;
  color: #1400a0;
  position: relative;
  z-index: 4;
}


@media (max-width: 768px) {
  .titel {
    padding-top: 10vh;
  }
}

/* Keyframes */
@keyframes text-appear {
  from {
    opacity: 0;
    transform: translate(0, 8rem);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}


header {
  position: relative; /* Referenz für absolute Positionierung */
}

/*############################################################
##################-Startseite Projekte-#######################
##############################################################*/
* {
  box-sizing: border-box;
}

/* Allgemeine Projekte Sections */
.projects {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 10%;
  padding-bottom: 0%;
  background-color: white;
}

.project {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.project img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project:hover img {
  transform: scale(1.03);
}

#skateriot {
  transition: transform 0.3s ease;
}

#skateriot:hover {
  transform: scale(1.03);
}

.projects-below {
  padding: 5% 10%; 
  padding-bottom: 0%;
  background-color: white;
  display: flex;
  justify-content: flex-start; 
}

.projects-below .project {
  max-width: 70%; 
}

.projects-below .project img {
  width: 100%;
  height: auto;
  display: block;
}

/* Info-Box */
.info {
  margin-top: 10px;
}

.category {
  font-size: 0.9rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #555;
  display: block;
  margin-bottom: 5px;
}

.info h2 {
  font-size: 1.2rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

/* #########################################
---------------- Button --------------------
############################################*/
.btn {
  background-color: #1400a0 !important;
  font-family: "Lato", sans-serif;
  border: none !important;
  color: white !important;
  font-size: 1rem;
  padding: 15px 40px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.btn:hover,
.btn:focus {
  background-color: #0022ff !important;
  transform: scale(1.02);
}

/* =========================================
   Button unter "Print Lives on"
   ========================================= */
.button-container {
  width: 100%;
  text-align: left;
  background-color: white;
  padding: 60px 10%;
  padding-top: 0;
}

/* =========================================
   Button über dem Carousel (Urban Art)
   ========================================= */
.carousel-overlay-btn {
  position: absolute;
  bottom: 30px;
  left: 10%; /* bündig mit .button-container */
  z-index: 10;
  text-align: left;
}

/* =========================================
   Responsive Anpassungen
   ========================================= */
@media (max-width: 768px) {
  .button-container {
    text-align: center;
    width: 100%;
    padding: 0%;
    padding-bottom: 5%;
  }

  .carousel-overlay-btn {
    left: 0;
    width: 100%;
    text-align: center;
    bottom: -50px;
  }

  .btn {
    width: 100%;
    padding: 15px 0;
  }
}

/*----------------------------------------------
------------------------------------------------
-------------- Klick Unterseite-----------------
------------------------------------------------
------------------------------------------------*/

.row {
  padding: 100px 10% 
}

.gallery-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.gallery-img {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
  height: auto;
}

.gallery-container:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.3s ease;
}

.gallery-container:hover .gallery-overlay {
  opacity: 1;
}

.gallery-text {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px;
}

/*----------------------------------------------
------------------------------------------------
-------------- Lack Unterseite-----------------
------------------------------------------------
------------------------------------------------*/



.card {
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden;
  background-color: white;
  transition: transform 0.3s ease;
}

.card-img-top {
  border-radius: 0 !important;
  transition: transform 0.4s ease;
  cursor: pointer;
}

/* Hover-Effekt */
.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Schatten leicht, aber dezent */
.card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Titel und Text */
.card-body {
  padding: 1.5rem;
  background: white;
}

.card-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #1400a0;
}

.card-text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #333;
}
  

    /* Responsive: auf kleinen Screens nur 1 Bild pro Reihe */
    @media (max-width: 768px) {
      .gallery {
        grid-template-columns: 1fr;
      }
    }





/*###########################################
################# Kontakt ###################
#########################################*/

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  padding: 40px;
  border-radius: 8px;
  color: #1400a0;
}

.contact-header h1{
  font-family: "Nobulina-Inktrap", sans-serif;
  font-size: clamp(5rem, 15vw, 8rem); /* passt sich Viewport an */
  text-align: center;
  margin: 80px 0 40px 0;
  line-height: 1.05;
  max-width: none;
  color: #1400a0;
}

/* Wrapper, der die gesamte Gruppe zentriert */
.contact-center-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

/* Bild + Infos nebeneinander */
.contact-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: nowrap;
}

/* Bild */
.contact-image-col {
  text-align: center;
}

.contact-image {
  width: 100%;
  max-width: 180px; /* halb so groß */
  border-radius: 6px;
}

/* Kontaktinfos rechts */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
}

.contact-icon {
  width: 28px;
  height: 28px;
  opacity: 0.8;
}

/* Kontaktformular */
.contact-form {
  margin-top: 50px;
  width: 100%;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 18px;
  resize: vertical;
  font-family: "Lato", sans-serif;
}

.contact-form input[type=submit] {
  width: 100%;
  background-color: #1400a0;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: "Tomorrow", sans-serif;
}

.contact-form input[type=submit]:hover {
  background-color: #0022ff;
}

.meinkontakt {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #1400a0;
}

/* Responsive */
@media (max-width: 768px) {

  .contact-flex {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .contact-info {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }
}

/* ############################################################
##########################  FAQ-Block  ########################
############################################################# */
#faq {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

#faq h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1400a0;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 12px;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  color: #333; /* Standardtextfarbe */
}

/* Hover-Effekt */
.faq-item:hover {
  background-color: #1400a0;
  color: #ffffff;
}

/* Hover-Textfarbe für summary und p */
.faq-item:hover summary,
.faq-item:hover p {
  color: #ffffff;
}

/* Sobald das details-Element geöffnet ist */
.faq-item[open] {
  background-color: #1400a0; /* Blau */
  color: #ffffff; /* Weißer Text */
}

/* Textfarbe für geöffnete Box */
.faq-item[open] summary,
.faq-item[open] p {
  color: #ffffff;
}


/* ############################################################
##########################  über mich  ########################
############################################################# */


/* About-Me Container */
.about-container {
  padding: 10vw;
  display: flex;
  align-items: flex-start;
  gap: 20px; /* Abstand zwischen Bild und Text */
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
}

/* Bild */
.about-image {
  flex: 1 1 250px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 0px;
}

.about-image .caption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
}

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

.about-text h2 {
  font-family: "Nobulina-Inktrap", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: #1400a0;
}

.about-text p {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .about-text {
    flex: 1 1 100%;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

/* ############################################################
##########################  impressum  ########################
############################################################# */

/* Container für das Impressum */
.impressum-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
  font-family: "Lato", sans-serif;
  color: #1400a0;
  line-height: 1.6;
}

.impressum-header {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 2rem);
  color: #1400a0;
  margin-bottom: 40px;
  text-align: left;
}

/* Paragraphen */
#impressum p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Starke Hervorhebungen */
#impressum p strong {
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .impressum-header {
    font-size: clamp(2rem, 5vw, 4rem);
    text-align: left;
  }

  #impressum p {
    font-size: 1rem;
    text-align: left;
  }
}



/* ############################################################
##########################  DSGVO  ########################
############################################################# */

.dsgvo-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
  font-family: "Lato", sans-serif;
  color: #1400a0;
  line-height: 1.6;
}