/* ================== Mobile Fullwidth Styles ================== */

/* ---------------- Body & Grund ---------------- */
html, body {
    width: 100%;
    overflow-x: hidden; /* kein horizontal scroll */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Satoshi', sans-serif !important;
    background: #e9e9e9;
    line-height: 1.2;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1em 0; /* einheitlicher Abstand unten */
    text-align: left;
}

p { font-size: 1rem; }

h1 { font-size: 1.6rem; font-weight: 800; line-height: 1.2; }
h2 { font-size: 1.4rem; font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.95rem; font-weight: 500; }

/* ---------------- Highlight / Mark ---------------- */
h1 mark, h2 mark, h3 mark, h4 mark,
.highlight-word {
    padding: 0 4px;
    background-color: #8af281;
    display: inline;
    white-space: normal;
    box-decoration-break: clone;
    background-size: 100% 50%; /* halb so hoch wie Text */
    background-repeat: no-repeat;
    background-position: bottom;
}

/* ---------------- Sections Fullwidth ---------------- */
section, #hero-wrapper, #about, #gallery-wrapper, #ceo-wrapper,
#products, #silveradio-wrapper, #contact {
    width: 100%;
    max-width: 100%;
    padding-left: 1%;   /* max 1% links */
    padding-right: 1%;  /* max 1% rechts */
    margin: 0 auto;
    box-sizing: border-box;
}

/* ---------------- Hero ---------------- */
#hero-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 15%;
}

#hero-wrapper .hero {
    width: 100%;
    margin: 0;
    text-align: left;
}

#hero-wrapper h1 { font-size: 1.8rem; line-height: 1.2; }
#hero-wrapper .hero-paragraph { font-size: 1rem; line-height: 0.8; margin-bottom: 12px; }

.button-header,
#cta .button-ceo { padding: 8px 18px; font-size: 13px; margin-left: 0; }

#hero-wrapper .hero img,
#hero-wrapper .hero .hero-gif {
    width: 100%;
    object-fit: contain;
}

/* ---------------- About ---------------- */
#about {
    padding-top: 30px;
    padding-bottom: 30px;
}

#about .intro-text {
    font-size: 1.3rem;
    width: 100%;
}

/* ---------------- Galerie ---------------- */
#gallery-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
}

#gallery-wrapper .gallery-wrapper-css {
    display: grid;
    grid-template-areas:
        "text"
        "gallery";
    gap: 10px;
    width: 100%;
}

#gallery-wrapper .gallery-text-box,
#gallery-wrapper .gallery-text-box-2 {
    grid-area: text;
    text-align: left;
    width: 100%;
}

#gallery-wrapper .image-gallery {
    grid-area: gallery;
    height: 250px;
    overflow: hidden;
}

#gallery-wrapper .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------- CEO ---------------- */
#ceo-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#ceo-wrapper .ceo-content,
#ceo-wrapper .ceo-text { 
    width: 100%; 
    padding: 0; 
    text-align: left; 
}

/* ---------------- Products ---------------- */
#products,
#eventpakete-grid,
#produktboxen-wrapper,
#product-4-wrapper,
#silveradio-wrapper,
#contact {
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
}

.product-card {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-image { width: 100%; height: 150px; }

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .cta-button {
    padding: 8px 15px;
    font-size: 14px;
}

/* ---------------- Soundcloud / Silverado ---------------- */
#silveradio-wrapper {
    width: 100%;
}

#silveradio-wrapper .silveradio-content,
#silveradio-wrapper .silveradio-text { width: 100%; padding: 0; }

#silveradio-wrapper {
    display: grid;
    grid-template-areas:
        "text"
        "player";
    gap: 10px;
}

#silveradio-wrapper .silveradio-text { grid-area: text; text-align: left; }
#silveradio-wrapper .soundcloud { grid-area: player; width: 100%; }

/* ---------------- Kontakt ---------------- */
#contact { padding-top: 30px; padding-bottom: 30px; width: 100%; text-align: center; }
