/* root */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Stack+Sans+Notch:wght@200..700&display=swap');
:root {
    /*Hauptfarben*/
    /*--akzent: #ffb6c1;*/
    --akzent: #ebae63;
    --bg: #faf6f2;
    --bg2: #ffffff;
    --überschriften: #1a1a1a;
    --button_text: #1a1a1a;
    --hover_farbe: #f29bab;
    --body_text: #2d2d2d;
    --input: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    scroll-behavior: smooth;
    background-color: var(--bg2);
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100dvw
}

.about {
    margin: 0 0 25px 0;
    padding: 25px 10px 5px 10px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    position: relative;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/bannerBild.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) blur(1px); /* Abdunkeln + Unschärfe */
    z-index: -1;
    height: 100dvh;
}

p {
    color: var(--body_text);
}

.skills {
    background-color: var(--bg);
    width: 100%;
    height: auto;
    padding: 50px 5%;
    display: flex;
    justify-content: space-evenly;
}
.skills-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
}

.skills-box img {
    margin-bottom: 10px;
}

.content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.light {
    background-color:var(--bg2);
}

.dark {
    background-color: var(--bg);
}

.navigation {
    display: flex;
    justify-content: left;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: var(--akzent);
    backdrop-filter: blur(0.5);
    z-index: 9999;
}


/* Navigation Layout */
.nav-container {
    position: fixed;
    display: inline-block;
    background-image: linear-gradient(var(--akzent), var(--akzent));
    width: 100%;
    text-align: left;

}

/* Icon */
.menuicon img {
    width: 40px;
    height: auto;
    cursor: pointer;
    display: block;
}

/* Dropdown-Liste */
.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 54px;             /* Abstand unter dem Icon */
    left: 0;
    background: var(--akzent);
    min-width: 150px;
    display: none;
    z-index: 20;
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.submenu li a:hover {
    background: var(--bg2);
}

/* Dropdown öffnen bei Hover (Desktop) */
.nav-container:hover .submenu {
    display: block;
}

/* Dropdown öffnen bei Touch/Klick (Mobile) */
.nav-container:focus-within .submenu {
    display: block;
}

/* Wichtig: der a-Tag muss fokussierbar sein */
.menuicon {
    display: inline-block;
    outline: none;
}

/* Für größere Bildschirme: Menü dauerhaft sichtbar */


.story  {
    width: 90%;
    height: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.skill, .greeting{
    background-color: var(--bg);
    width: 90%;
    height: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button_gold, #submit {
   /* background-image: linear-gradient(90deg,
    #e7bf8f 0%,
    #ebae63 40%,
    #ebae63 70%,
    #ebae63 100%);*/
    width: 200px;
    margin: 10px auto;
    padding: 17px 40px;
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    background-color: white;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.2s ease;
    
}

.button_gold:hover, #submit:hover {
    letter-spacing: 3px;
    background-color: var(--akzent);
    color: hsl(0, 0%, 100%);
    box-shadow: #ffc063 0px 7px 29px 0px;
}

.kontakt {
    background-color: var(--bg);
}

.name {
    font-size: 3rem;
    color: var(--akzent);
    background-image: linear-gradient(90deg,
    #e7bf8f 0%,
    #ebae63 40%,
    #ebae63 70%,
    #ebae63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.titel {
    font-size: 1.5rem;
}

.spruch {
    font-size: 1rem;
}

/*.name {

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}*/
.videocontent {
    background-color: var(--bg2);
    width: 100%;
    padding: 40px 20px 60px 20px;
    
}

.videocontent h2 {
    color: var(--body_text);
}

.insta {
    font-family: "Pacifico", cursive;
    color: #3626b1;
    font-weight: bold;
}

.video {
    width: 100%;
    max-width: 500px;
}

.titel, .spruch {
    color: var(--bg);
}

section {
    width: 100%;
}

.gallerie {
    min-height: auto;
    background-color: var(--bg);
    color: var(--color1);
    padding: 2rem 20px;
    border-radius: 10px;
    width: 100%;
}

nav {
    display: flex;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    z-index: 2;
    position: absolute;

}

/* 500px */

/* Ende */
.pp {
    width: 250px;
    height: 250px;
    padding: 25px;
    object-fit: scale-down;
    border: solid 5px var(--akzent);
    border-radius: 100%;
    margin-bottom: 20px;
    box-shadow: 0 0 20px 1px var(--body_text);
}

.content {
    padding: 2rem 20px;

}

.hero {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--body_text)
}
h1 {
    font-size: 1.5rem;
    padding: 0;
    font-family: 'Pacifico', cursive;
    font-weight: normal;
    margin: 20px auto;
    color: var(--akzent);
}

h2 {
    font-size: 1.0rem;
    margin-bottom: 10px;
    font-weight: normal;
    color: var(--body_text);
    padding: 4px;
    border-bottom: solid 2px var(--akzent);
}

h3 {
    font-size: 1.0rem;
    margin-bottom: 10px;
    font-weight: normal;
    color: var(--bg2);
}


footer, footer-group {
    padding: 20px;
    text-align: center;
    width: 100%;
    background-color: var(--akzent);
    color: var(--body_text);
}

.ftext {
   color: var(--body_text);
}


.name {
    font-size: 2.8rem;
}

.titel {
    font-size: 2rem;
}

.spruch {
    font-size: 1rem;
}

.copy 
{
   font-size: 0.7rem;
    color: var(--body_text);
    font-weight: bolder;
}

.logo {
    width: 50px;
}

.footer-group {
    margin: 30px 0 0 0;
}

.footer-group * {
    margin: 5px 0;
    font-size: 0.8rem;
}

.bgGelb {
    background-color: #f6f6f6;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px auto;
    
}

.inname, input, textarea, select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid var(--akzent);
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 2rem;
    color: var(--body_text);
    background-color: var(--bg2);
    resize: none;
}

.inname:focus-within, input:focus-within, textarea:focus-within, select:focus-within {
    border: 1px solid var(--akzent);
    box-shadow: 0 0 4px 2px var(--input);
    outline: none;
}

.button_sekundär {
    background-color: var(--bg);
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    color: var(--button_text);
    font-weight: bold;
    border-radius: 5px;
    border: 3px solid var(--akzent);
}

.nb>input {
    margin: 0;
    padding: 0;
    width: auto;
}

.nb {
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stern {
    text-align: left;
    align-self: flex-start;
    margin-left: 10px;
    font-size: 0.8rem;
    color: var(--body_text);
}

label {
    align-self: flex-start;
    margin-left: 10px;
    font-size: 0.9rem;
    color: var(--body_text);
}

/* Karussell */
.carousell-container {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    height: 250px;
    margin-bottom: 100px;
    -webkit-overflow-scrolling: touch;
    display: flex;
}

.carousell-container>img {
    display: inline-block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    margin-right: 20px;
    border-radius: 6px;
    cursor: pointer;
    scroll-snap-type: x mandatory;

}

.carousell-container>img:active {
    transform: scale(2.00);
}

.carousell-container::-webkit-scrollbar {
    display: none;

}
.heading {
    width: 100%;
    height: 300px;
    flex: 0 0 100%;
    scroll-snap-align: center;
    overflow: hidden;
    color: var(--body_text);
    border-radius: 10px;
}

.card img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    max-width: 250px;
    object-fit: contain;

}

.header1_farbe {
    font-size: 2rem;
    margin-top: 40px;
}

/**/

header {
  position: relative;
  overflow: hidden;
}

.agb {
    color: var(--body_text);
    margin-left: 5px;

}

.agb a {
    color: #ebae63;
    font-weight: bold;
}

.section_top {
    padding: 40px 0 0 0;
}

.section_bottom {
    padding: 0 0 40px 0;
}
/**IMPRESSUM**/
#impressumOverlay, #datenschutzOverlay {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg2);
  color: var(--body_text);
  overflow-y: auto;
  transition: bottom 1.0s ease;
  z-index: 9999;
  padding-top: 20px;
}

/* Wenn geöffnet */
#impressumOverlay.active, #datenschutzOverlay.active {
  bottom: 0;
}

/* Inhalt zentrieren */
.impressumContent, #datenschutzContent  {
  padding: 2rem;
  max-width: 600px;

  display: flex;
  flex-direction: column;
}

/* Close Button */
#closeImpressum, #closeDatenschutz{
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
 .block_small {
        width: 90%;
        overflow-wrap: break-word;
    }

@media (min-width: 1024px) {
    main {
        display: flex;

    }
    h1, .name {
        font-size: 3.5rem;
    }
    h2{
        font-size: 1.5rem;
    }
    .button_gold {
        display: block;
    }
    .videocontent {
        display: flex;
        flex-wrap: wrap;
        min-height: fit-content;
        flex-direction: row;
        width: 100%;
        overflow: hidden;

    }
    .h1video {
        width: 100%;
    }

    .block_small {
        width: 90%;
        max-width: 1200px;
    }

    .video-text-wrapper {
        text-align: left;
        display: flex;
    }

   .carousell-container {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    
}
    .kontakt {
        display: flex;
        width: 100%;
        
    }
}

.gall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gall img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.instagram {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--akzent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.partner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.partner img {
    max-width: 250px;
    height: auto;
    object-fit: contain;
    box-shadow: 0 0 10px 1px var(--body_text);

}

.partner img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;

}

#lightbox {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in;
    height: 100vh;
    z-index: 99999;
}
#lightbox.zeigen {
    background-color: #000000d9;
    opacity: 1;
    visibility: visible;
}
#lightbox img {
    display: block;
    max-width: 100vw;
    height: auto;
    max-height: 100vh;
}

#lightbox .schliessen {
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 3rem;
    color: #ffffff;
    font-size: 2rem;
}


div img {
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.img_wrapper, img_wrapper img {
    cursor: pointer;
}

/* Das alles verdeckende Overlay */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Dunkler Hintergrund */
  backdrop-filter: blur(8px); /* Verschwommene Seite im Hintergrund */
  display: none; /* Standardmäßig aus, wird per JS aktiviert */
  align-items: center;
  justify-content: center;
  z-index: 10000; /* Über allem anderen */
}

/* Die zentrierte Box */
.cookie-box {
  background: #FEFEFE;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-box h1 {
  margin-bottom: 20px;
  color: var(--akzent);
}

.cookie-box p {
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

/* Button-Styling */
.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-btn {
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.cookie-btn:active { transform: scale(0.98); }

.cookie-btn.primary {
  background: var(--akzent);
  color: white;
}

.cookie-btn.secondary {
  background: #f0f0f0;
  color: #666;
}


@media (min-width: 700px) {
    .gall img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

    .video-text-wrapper {
        align-items: flex-start;
        text-align: left;
    }
    .pptext {
        width: 50%;
    }
}

@media (min-width: 400px) {
    .gall img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
}
}