/* ================= BASIS ================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #da948b;
    color: white;
   font-family: 'Poppins', sans-serif;}

/* ================= HEADER ================= */
.main-nav {
    background-color: #C67C7C;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* dunkler Balken UNTER dem Header */
.main-nav::after {
    content: "";
    display: block;
    height: 18px;
    background-color: #c88484;
}



.nav-container {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
}

/* Logo */

.nav-logo {
    margin-left: 24px;
}


.nav-logo img {
    height: 48px;
    display: block;
}

/* ================= MENÜ (MOBILE STANDARD) ================= */

.nav-menu-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu li a {
    display: inline-block;
    padding: 8px 14px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    border-radius: 999px;
    transition: background-color 0.2s ease, font-weight 0.2s ease;
}

.nav-menu li a:hover {
    background-color: rgba(255,255,255,0.2);
}

.nav-menu li a.active {
    font-weight: 700;
    background-color: rgba(255,255,255,0.3);
}


/* ================= MOBILE SCROLL HINT ================= */

.scroll-hint {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    font-size: 20px;
    background: linear-gradient(to left, #C67C7C 60%, transparent);
    transition: opacity 0.3s ease;
}

.scroll-hint.hidden {
    opacity: 0;
}

/* Auf Desktop ausblenden */
@media (min-width: 769px) {
    .scroll-hint {
        display: none;
    }
}

/* ================= STANDORTE / MAP KARTEN ================= */

.locations {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
}

.location-box {
    width: 350px;
    text-align: center;
}

.location-box img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.location-box iframe {
    width: 100%;
    height: 200px;
    border: 0;
    margin-top: 10px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ================= STANDORTE – MOBILE ================= */

@media (max-width: 768px) {

    .locations {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .location-box {
        width: 90%;
        max-width: 420px;
    }

}

/* ================= DESKTOP CLAIM ================= */

.nav-desktop-extra {
    display: none;
}

/* ================= CONTENT ================= */

.page-content {
    text-align: center;
    padding: 24px 12px 200px;
}

/* ================= STARTSEITE ================= */

.hero-image {
    max-width: 92%;
    max-height: 55vh;
    height: auto;
}

.card-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    margin-top: 32px;
}

.card-image img {
    max-width: 280px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-card {
    max-width: 500px;
    background-color: rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 42px 36px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.contact-card a {
    color: #C67C7C;
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ================= KONTAKT ================= */

.kontakt-card {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.kontaktformular {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kontaktformular input,
.kontaktformular textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-family: inherit;
}
.kontaktformular input::placeholder,
.kontaktformular textarea::placeholder {
    font-family: 'Poppins', sans-serif;
    opacity: 0.6;
}

.kontaktformular button {
    font-weight: 500;
    letter-spacing: 0.04em;
}

.kontaktformular textarea {
    min-height: 110px;
}

.kontaktformular button {
    padding: 12px;
    border-radius: 999px;
    background-color: #C67C7C;
    color: white;
    border: none;
    cursor: pointer;
}

/* ================= IMPRESSUM ================= */

.impressum-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 12px 220px;
}

.impressum-card {
    max-width: 800px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    line-height: 1.8;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.impressum-card a {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.impressum-card a:hover {
    text-decoration: underline;
}

/* ================= FOOTER ================= */

footer {
    background-color: #C67C7C;
    text-align: center;
    padding: 16px 10px 20px;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Footer Navigation */

.footer-nav {
    margin-top: 6px;
    font-size: 13px;
    opacity: 0.85;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 4px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* ================= SOCIAL MEDIA ================= */

.social-links {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-links svg {
    fill: white;
    width: 22px;
    height: 22px;
}

.social-links a[aria-label="Etsy"] svg {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* ================= DESKTOP ================= */

@media (min-width: 769px) {

    .main-nav {
        min-height: 80px;
    }

    .nav-container {
        height: 80px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .nav-logo {
        position: absolute;
        left: 20px;
    }

    .nav-logo img {
        height: 110px;
    }

    .nav-menu {
        justify-content: center;
        overflow: visible;
    }

    .hero-image {
        max-width: 40%;
    }
}

/* ================= DESKTOP ERWEITERUNG ================= */

@media (min-width: 1024px) {

    .nav-desktop-extra {
        display: block;
        margin-left: auto;
        opacity: 0.7;
    }

    .nav-claim {
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        white-space: nowrap;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .card-layout {
        flex-direction: column;
        gap: 24px;
    }

    footer {
        font-size: 13px;
    }
}
  


/* ================= KONTAKT – ZENTRIERUNG ================= */

.page-content.kontakt {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* nicht vertikal mittig, nur horizontal */
}

/* ================= MAP ================= */

.map-container {
    max-width: 900px;
    margin: 60px auto 260px;
    padding: 0 20px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-container h2,
.map-container p {
    text-align: center;
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 360px;
    border: 0;
    display: block;
    margin: 0 auto;

    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* ================= SORTIMENT ================= */

.sortiment-layout {
    display: grid;
    grid-template-columns: 1fr minmax(420px, 520px) 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

/* Bildspalten links & rechts */
.sortiment-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* Bilder clean */
.sortiment-column img {
    width: 160px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: none;
}

/* Text-Card in der Mitte */
.sortiment-text {
    background-color: rgba(255,255,255,0.18);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}

.sortiment-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.sortiment-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ================= SORTIMENT – MOBILE ================= */

@media (max-width: 768px) {

    .sortiment-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sortiment-column {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .sortiment-column img {
        width: 120px;
    }

    .sortiment-text {
        order: -1;
        padding: 36px 28px;
    }
}
