/* ======================================= */
/* BASIS EINSTELLUNGEN */
/* ======================================= */
body {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    background-color: rgb(255, 255, 231);
    overflow-x: hidden;
}

h1, h2, h3, p, a {
    font-family: 'Oswald', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.divider {
    height: 3px;
    width: 100%;
    background-color: black;
    border: none;
    margin: 0;
}

/* ======================================= */
/* HEADER & NAVIGATION */
/* ======================================= */
.top_bar {
    width: 100%;
    min-height: 350px;
    background-color: rgb(204, 204, 176);
    padding-bottom: 20px;
}

.nav_bar {
    width: 100%;
    background-color: rgb(173, 173, 154);
    min-height: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px 0;
}

.nav_bar a {
    text-decoration: none;
    padding: 10px 15px;
    color: black;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav_bar a:hover {
    color: white;
}

.current_page {
    text-decoration: underline;
    font-weight: bold;
    margin: 0;
}

.logo-box {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 20px;
}

.logo-box img {
    width: 280px;
    height: auto;
    max-width: 90%;
}

/* ======================================= */
/* STARTSEITE (INDEX) SEKTIONEN */
/* ======================================= */

.welcome {
    padding: 60px 20px;
    background-color: rgb(253, 253, 236);
    text-align: center;
}

.welcome-h1 {
    font-size: 40px;
    margin: 0;
    color: rgb(50, 50, 40);
}

/* HIGHLIGHT BOX (WAITLIST) */
.highlight-section {
    background-color: rgb(238, 238, 217);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 3px solid black;
}

.highlight-box {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgb(173, 173, 154);
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.new-badge {
    background-color: rgb(173, 173, 154);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    vertical-align: middle;
    margin-left: 10px;
    font-weight: bold;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.who, .what-do {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    box-sizing: border-box;
}

.who {
    background-color: rgb(175, 175, 158);
    color: white;
}

.who h1, .what-do h1 {
    margin-top: 0;
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.who p, .what-do p, .what-do ul {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

.what-do {
    background-color: rgb(206, 206, 175);
    color: black;
}

/* HIER IST DER PARALLAX EFFEKT */
.image-bar-1 {
    width: 100%;
    height: 400px;
    background-image: url(images/Aki-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Das sorgt dafür, dass das Bild steht, während man scrollt */
    background-attachment: fixed; 
}

.background-1 {
    height: 600px;
    width: 100%;
    background-image: url(images/suki-1.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed; /* Auch hier der coole Effekt */
}

/* Sicherheits-Regel für Handys (Touchscreens mögen "fixed" oft nicht) */
@media (hover: none) {
    .image-bar-1, .background-1 {
        background-attachment: scroll; /* Auf Handys scrollt es normal mit */
    }
}

.shipping-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.left-top-1, .right-top-1 {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: rgb(238, 238, 217);
    box-sizing: border-box;
    text-align: center;
}

.mid-sec {
    width: 2px;
    background-color: black;
    display: none;
}

@media screen and (min-width: 900px) {
    .mid-sec { display: block; }
}

.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.buy-int {
    padding: 40px 0;
    text-align: center;
    background-color: rgb(253, 253, 236);
    margin: 0;
}

/* ======================================= */
/* KENSEI WAITLIST SEITE (AVAILABLE) */
/* ======================================= */
.waitlist-container {
    width: 100%;
    background-color: rgb(253, 253, 236); 
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.waitlist-box {
    max-width: 700px;
    width: 100%;
    text-align: center;
    border: 3px solid rgb(175, 175, 158); 
    padding: 50px;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.waitlist-box h1 {
    color: rgb(100, 100, 80);
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.status-text {
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #333;
}

.portal-info {
    background-color: rgb(238, 238, 217); 
    padding: 35px;
    border-radius: 8px;
    border: 1px solid rgb(204, 204, 176);
}

.join-btn {
    display: inline-block;
    background-color: rgb(173, 173, 154);
    color: white !important;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.join-btn:hover {
    background-color: rgb(100, 100, 80);
    transform: translateY(-2px);
}

/* ======================================= */
/* CONTACT FORM & GALLERY */
/* ======================================= */
.contact-form-container {
    max-width: 600px; 
    margin: 50px auto; 
    padding: 30px;
    background-color: rgb(238, 238, 217); 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center; 
    width: 90%;
}

.slideshow-container {
  max-width: 900px; 
  width: 95%;
  position: relative; 
  margin: 50px auto; 
}

.slideshow-container img {
  width: 100%; 
  height: auto;
  border-radius: 8px; 
  display: none; 
}

.prev, .next {
  cursor: pointer; 
  position: absolute; 
  top: 50%; 
  width: auto;
  padding: 16px;
  margin-top: -22px; 
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  background-color: rgba(0,0,0,0.5); 
  user-select: none;
}

.next { right: 0; border-radius: 3px 0 0 3px; }
.prev { left: 0; border-radius: 0 3px 3px 0; }

/* ======================================= */
/* FLEXBOX LAYOUTS */
/* ======================================= */
.content-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    gap: 40px;
}

.content-img {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.content-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.content-text {
    flex: 1;
    min-width: 300px;
}

.content-text h3 {
    font-size: 28px;
    border-bottom: 2px solid black;
    display: inline-block;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ======================================= */
/* FOOTER */
/* ======================================= */
.footer-index {
    width: 100%;
    background-color: rgb(175, 175, 158);
    padding: 40px 0;
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.footer-column {
    padding: 10px 20px;
    min-width: 200px;
}

.footer-column p {
    margin: 5px 0;
    font-size: 16px;
}

/* ======================================= */
/* MEDIA QUERIES (HANDY) */
/* ======================================= */
@media screen and (max-width: 768px) {
    .nav_bar {
        justify-content: center;
    }
    
    .nav_bar a {
        font-size: 16px;
        padding: 8px 10px;
    }

    .welcome-h1 {
        font-size: 30px;
    }

    .who, .what-do, .left-top-1, .right-top-1 {
        padding: 20px;
    }

    .waitlist-box h1 {
        font-size: 26px;
    }
    
    .join-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
}