* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
}

body {
    padding-top: 80px; /* Platz für Desktop-Headers */
    background-color: #fffaf5; 
}

.no-text-decoration {
  text-decoration: none;
}

h2, h3, h4, h5, h6 {
  color: #006d6d;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* --- DESKTOP NAVIGATION --- */
.navbar-desktop {
    background-color: #1a1512;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 2.64rem;
    left: 0;
    box-shadow: 0 4px 20px rgba(217, 4, 41, 0.15);
    z-index: 1000;
}

.navbar-desktop .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(45deg, #d90429, #ff7e00, #ffea00);
     /* Verlauf nur als Text sichbar, nicht als Block */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-desktop-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links-desktop {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links-desktop a {
    text-decoration: none;
    color: #e5dada;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links-desktop a:hover {
    color: #ff9f00;
}

.quick-actions-desktop {
    display: flex;
    gap: 8px;
}



/* --- COMMON BUTTON STYLES --- */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.2s, opacity 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.action-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

#the-mobile-footer-bar img { max-height: 34px; width: auto; background-color: transparent; filter: brightness(0); }
.btn-tel { background-color: #d90429; } 
.btn-mail { background-color: #f77f00; }
.btn-ort { background-color: #fcbf49; color: #1a1512; }  
.btn-link { background-color: #eae2b7; color: #1a1512; }



/* --- SECTIONS & GRID --- */
#teaser {
  margin-top: 1rem;
}

.inter-section { 
    padding: 2rem 0; 
}

.section {
    scroll-margin-top: 15rem; /* unter 2 Header stehen bleiben */
}

.section-title { 
    text-align: center; 
    font-size: 38px; 
    font-weight: 700;
    margin-bottom: 60px; 
    color: #1a1512;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d90429, #f77f00);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.card { 
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 12px; 
    text-align: center; 
    border: 1px solid #fceade;
    box-shadow: 0 10px 30px rgba(247, 127, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(217, 4, 41, 0.1);
    border-color: #f77f00;
}

.card h3 {
    margin-bottom: 15px;
    color: #b7094c;
    font-size: 22px;
}

.card p {
    color: #555;
}



/* --- FOOTER --- */
.footer { 
    background-color: #1a1512; 
    color: #a49696; 
    text-align: center; 
    padding: 50px 0; 
    border-top: 3px solid #f77f00;
}



/* MOBILE INTERFACES (Ausgeblendet auf Desktop) */
.mobile-footer-bar {
    display: none;
}



/* --- MOBILE STYLES (MEDIA QUERIES) --- */
@media (max-width: 768px) {
    body {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .navbar-desktop {
        display: none;
    }

    /* Untere Leiste */
    .mobile-footer-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #1a1512;
        z-index: 2000;
        box-shadow: 0 -4px 25px rgba(0,0,0,0.3);
    }

    .quick-actions-mobile {
        flex: 1;
        display: flex;
    }

    .quick-actions-mobile .action-btn {
        flex: 1;
        border-radius: 0;
    /*    padding: 18px 5px; */
        font-size: 14px;
        box-shadow: none;
    }

    /* Burger Button rechts */
    .burger-menu-mobile {
        background: #1a1512;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #f77f00;
        padding: 0 22px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Das mobile Klappmenü */
    .nav-links-mobile {
        display: none;
        list-style: none;
        flex-direction: column;
        position: fixed;
        bottom: 56px; /* Dockt exakt über der Footer-Leiste an */
        left: 0;
        width: 100%;
        background: #fffdfb;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
        padding: 10px 0;
    }

    .nav-links-mobile.active {
        display: flex;
    }

    .nav-links-mobile li {
        width: 100%;
        text-align: center;
    }

    .nav-links-mobile a {
        display: block;
        padding: 16px 0;
        color: #1a1512;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid #fceade;
    }

    .nav-links-mobile a:active {
        background-color: #ffe8d6;
        color: #d90429;
    }

    .hero-content h1 { font-size: 34px; }
    .hero-content p { font-size: 18px; }
    .grid-3 { grid-template-columns: 1fr; gap: 20px; }
    /*
    .inter-section { padding: 80px 0; }
*/
    .action-btn:hover {
        transform: none ;
    }    
}


#sticky-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.2;
    height: 2.64rem; /* exakt 2 Zeilen */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
    z-index: 9999;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.klick-box {
    cursor: pointer
}

.ghz-logo-info {
    height: 135px;
    width: auto;
}

.text_justify {
  text-align: justify;
  text-justify: inter-word; 
  
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  line-height: 1.6;
  color: #333333;
}

.text_justify p {
  margin-bottom: 1.5rem;
}

.img_float_right {
  float: right;
  margin-left: 1em;
  margin-bottom: 1em;
}

.ich_img_float {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
    border-radius: 1rem;
}

.img_float_20 {
    width: 20%;
    height: auto;
}

.img_float_30 {
    width: 30%;
    height: auto;
}

.img_amatsu_kanji {
  float: left;
  height: 200px;
  padding-top: 10px;
  margin-right: 15px;
}

.finepos_injo {
    margin-top: 0.5rem;
}

@media (max-width: 576px) {
    .section {
        scroll-margin-top: 2.5rem; /* unter stickey stehen bleiben */
    }    

    #sticky-box {
        position: sticky;
        font-size: 0.7rem;
        font-weight: bold;
    }

    .img_float {
        float: right;
        margin-left: 1em;
        margin-bottom: 1em;
    }

    .ich_img_float {
        clear: both;
        width: 100%;
    }
    
    .img_amatsu_kanji {
        margin-right: 5px;
    }   

    .ghz-logo-info {
        width: 100%;
        height: auto;
    } 
    
    .avz-logo-info {
        width: 100%;
        height: auto;
    }       
}




/* --- HERO SECTION  --- */
.hero-section {
    background: linear-gradient(0deg, #b7094c 0%, #f77f00 50%, #ffea00 100%);
    color: #fff;
    
    height: min-content; 
    max-height: 95vh; 
    padding-top: clamp(2rem, 4.5vw, 5rem);
    padding-bottom: clamp(2rem, 4.5vw, 5rem);

    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 60%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.hero-btn {
    display: inline-block;
    background-color: #1a1512;
    color: #ffea00;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 30px; 
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background-color: #000;
}

.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column ;

    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto;
    box-sizing: border-box;
    container-type: inline-size; 
}

.hero-logo {
    width: 70cqw;
    max-width: 700px; 
    height: auto;
    display: block;
}

.hero-title-wrapper {
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 14cqw;
    line-height: 1.1;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 6cqw;
    line-height: 1.2;
    margin-top: clamp(4px, 0.5vw, 8px);
    margin-bottom: 2.5vw; 
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover; 
    opacity: 0.18;
}

@container (min-width: 1000px) {
    .hero-title {
    font-size: 80px; 
    }
    .hero-subtitle {
    font-size: 60px; 
    }
}