* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: inherit;
    overflow-x: hidden;
    
    /* Für Internet Explorer / Edge (alt) */
    -ms-overflow-style: none;
    /* Für Firefox */
    scrollbar-width: none;
}
/* Für Chrome, Safari und Opera */
.element-oder-body::-webkit-scrollbar {
  display: none;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    /* Oben helles Grau (Produkte), kein Verlauf über die ganze Seite */
    background-color: #e2e4e8;
    overflow-x: hidden;
}




/*--------------------*/
/* ===== HEADER ===== */
/*--------------------*/
header {
    background-color: rgb(182, 181, 181);
    height: 60px;
    color: rgb(79, 79, 79);
    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    position: fixed;
    top: 8px;
    left: 8px;
    right: 8px;

    padding: 0 10px;
    box-sizing: border-box;
    z-index: 1000;
}

.img_logo {
    width: 11%;
    margin-right: 4%;
}

nav {
    display: flex;
    gap: 25px;
    margin-left: 0;
}

nav a {
    text-decoration: none;
    color: rgb(79, 79, 79);
    font-family: Helvetica;
    font-weight: 500;
}
.header_right {
    margin-left: auto;      /* schiebt alles nach rechts */
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
}
.warenkorb_image {
    width: 30px;
    height: 32px;
    left : 20px;
    cursor: pointer;
}

.icon_circle {
    width: 42px;
    height: 42px;
    background-color: rgb(102, 102, 102);
    border-radius: 50%;

    display: flex;              /* HIER gehört flex hin */
    justify-content: center;    /* horizontal Mitte */
    align-items: center; 
    cursor: pointer;       /* vertikal Mitte */
}

.merkliste_btn{
    text-decoration: none;
    cursor: pointer;
    font-family: Helvetica;
    font-weight: 500;
    color: rgb(79, 79, 79);
}

.login_btn {
    padding: 8px 18px;
    background-color: rgb(102, 102, 102);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-family: Helvetica;
    font-weight: 500;
    text-decoration: none;
    border: none;
}

/*--------------------*/
/* ===== SECTION ===== */
/*--------------------*/

section {
    padding-left: 8px;
    scroll-margin-top: 80px;
    color: rgb(79, 79, 79);
}




/*--------------------------*/
/* ===== HERO BEREICH ===== */
/*--------------------------*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Hintergrundbild */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;  
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: url("Images/hintergrund/hintergrundbild_start.avif") center/cover no-repeat;
    z-index: -1;
}
/* Grauer Overlay – etwas heller gemacht */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(45,48,54,0.45) 0%, rgba(30,33,38,0.58) 100%);
    z-index: 1;
}


/* Text – hellgrau, klar lesbar */
.hero-content {
    color: #e2e4e8;
    font-family: "Segoe UI", Helvetica, sans-serif;
    z-index: 2;
    position: relative;
    letter-spacing: 0.02em;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2; 
    
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.20);
    
}

.btn-primary,
.btn-secondary {
    background-color: #5700bbd0;
    color: #c7c7c7;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    letter-spacing: 0.03em;
}



/*----------------------*/
/* ===== PRODUKTE ===== */
/*----------------------*/

.produkte-section {
    padding: 30px 0 20px 0; /* oben mehr, unten weniger Abstand */
    font-family: Helvetica;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0;
    border: none;
    background: #e1e3e7; /* Einfaches hellgrau für products */
    /* Am unteren Rand Verlauf zum dunkleren Bereich der about-section */
    background: linear-gradient(
        to bottom,
        #ffffff 80%,
        #bdbec7 85%,
        #babacc 90%,
        #9496a4 95%,
        #3e4148 100%
    );
}

.produkte-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.080) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.080) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
    pointer-events: none;
}

.produkte-section h2 {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Grid Layout */
.produkt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 25px;
    position: relative;
    z-index: 1;
}

/* Produkt Karte */
.produkt-card {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
    cursor: pointer;
}

.produkt-card:hover {
    transform: translateY(-5px);
}

/* Bild */
.produkt-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Inhalt */
.produkt-info {
    padding: 20px;
}

.produkt-kategorie {
    font-size: 12px;
    color: orange;
    font-weight: bold;
}

.produkt-info h3 {
    margin: 10px 0;
    font-size: 18px;
}

.produkt-info p {
    font-size: 14px;
    color: #666;
}

.produkt-bottom {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preis {
    color: #ff5a1f;
    font-weight: bold;
    font-size: 18px;
}

.versand {
    font-size: 12px;
    color: #888;
}

.warenkorb-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.warenkorb-btn:hover {
    opacity: 0.8;
}


/*----------------------------*/
/* ======= ABOUT SECTION ===== */
/* Futuristisch, durchgehend Grautöne */
/*----------------------------*/
#about {
    position: relative;
    width: 100%;
    min-height: 30vh;
    height: auto;
    padding: 0;
    margin: 0 auto;
    z-index: 1;
    border: none;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 10px;
    /* Kräftiger Dunkelgrau für about-section */
    background: #3e4148;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.041) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 1;
    pointer-events: none;
}
#about::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, rgba(220, 222, 228, 0.18), transparent);
    z-index: 2;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 690px;
    margin: 0 auto;
    text-align: center;
    color: #e8eaee;
    font-family: "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 1.10rem;
    line-height: 1.7;
    padding: 20;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 16px #12141a88, 0 0px 2px #4a4e567e;
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert den Inhalt horizontal */
    justify-content: center;
}

.about-content p {
    color: #e2e4e8;
    text-align: center; /* Text innerhalb p zentrieren */
}

.about-content strong {
    font-weight: 600;
    color: #f0f2f5;
}

/* H4 = Akzent-Linie, zentriert */
.about-content h4 {
    display: block;
    font-size: 1.14em;
    font-weight: 650;
    color: #f2f4f7;
    margin: 1.1em auto 0.4em;
    letter-spacing: 0.045em;
    text-align: center;
    position: relative;
    padding: 10px 28px 10px 22px;
    width: 800px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.08);
    border-radius: 0 14px 14px 0;
    border-left: 4px solid rgba(255,255,255,0.6);
    box-shadow: 0 2px 14px rgba(0,0,0,0.10);
    box-sizing: border-box;
}

.about-content h5{
    display: block;
    font-size: 1.07em;
    color: #ffca28;
    background: linear-gradient(90deg, rgba(255,202,40,0.16) 0%, rgba(255,202,40,0.04) 100%);
    font-weight: 600;
    border-radius: 9px;
    padding: 8px 18px 8px 16px;
    margin: 1em auto 0.6em;
    position: relative;
    box-shadow: 0 1px 8px rgba(255,202,40,0.11);
    text-align: center;
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.015em;
}

.about-content ul {
    list-style-type: disc;
    margin: 0 0 0 1.2em;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert die Liste */
    text-align: left;
}

.about-content li {
    margin: 0 0 0.32em 0;
    font-size: 1em;
}


/*--------------------*/
/* ===== FOOTER ===== */
/*--------------------*/
.site-footer {
    width: 100%;
    background-color: #575757; /* dunkelgrau */
    color: white;
    padding: 50px 40px 20px 40px; /* Kein Abstand oben, damit Footer direkt anschließt */
    font-family: Helvetica;

    /* Ursprünglich: position: fixed; unten angeheftet */
    /* position: fixed; */
    /* bottom: 0;
    left: 0;
    right: 0; */

    position: static; /* Footer steht am Ende der Seite, nicht immer unten im Fenster */
    /* Alternativ kannst du position komplett entfernen */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: white;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 25px;
    height: 25px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
}

/* Gegen Spalten/Lines zwischen About und Footer auf ALLEN Endgeräten! */
#about {
    margin-bottom: 0;
}
.site-footer {
    margin-top: 0;
    border-top: none;
}
