/* =========================================
   ABSCHIED – Showroom Landingpage
   Datei: css/style.css
========================================= */

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
.top-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.72);
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    line-height: 42px;
    text-align: center;
    z-index: 999;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.top-button:hover {
    background: rgba(30, 30, 30, 0.95);
    transform: translateY(-3px);
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: #f6f0e8;
    color: #2b2521;
    line-height: 1.7;
}

/* GRUNDLAYOUT */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.section {
    padding: 110px 8%;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* TYPO */

h1,
h2,
h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.8rem, 5.2vw, 5rem);
    color: #b5986d;
    margin-bottom: 28px;
    line-height: 1.08;
    font-weight: 400;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    color: #3a2d25;
    margin-bottom: 35px;
}

h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: #3a2d25;
}

p {
    font-size: 18px;
    max-width: 860px;
    margin: 0 auto 24px auto;
}
hr {
    border: 0;
    height: 1px;
    width: 80%;
    margin: 35px auto;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 0, 0, 0.22),
        transparent
    );
}
.hr-gold {
    border: 0;
    height: 1px;
    width: 80%;
    margin: 35px auto;
    background: linear-gradient(
        to right,
        transparent,
        rgba(181, 152, 109, 0.55),
        transparent
    );
}

/* HEADER / HERO */

.hero {
    min-height: 100vh;
    position: relative;
    background:
        linear-gradient(rgba(20, 14, 10, 0), rgba(20, 14, 10, 0.10)),
        url("../img/hero.jpg") center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    padding: 0 8%;
	margin-top:50px;
}

.hero-content p {
    color: #f4e7d4;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    max-width: 680px;
    margin: 0 0 40px 0;
}

/* NAVIGATION */

.topnav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}

.logo img {
    max-width: 300px;
}

.topnav ul {
    list-style: none;
    display: flex;
    gap: 34px;
}

.topnav a {
    color: #fff3e4;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.topnav a:hover {
    opacity: 1;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 15px 34px;
    border: 1px solid #c8a96a;
    background: #c8a96a;
    color: #211814;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.btn:hover {
    background: #fff3df;
    border-color: #fff3df;
    color: #211814;
}

.btn-outline {
    background: transparent;
    color: #c8a96a;
}

.btn-outline:hover {
    background: #c8a96a;
    color: #211814;
}

/* INTRO */

.intro {
    background: #f6f0e8;
}

/* BILDERWELT */

.image-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 70px;
    background: #251c18;
    color: #f5eadc;
}

.image-section h2 {
    color: #f5eadc;
}

.image-section p {
    color: #dfcdb8;
    text-align: left;
}

.image-box img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.text-box {
    max-width: 520px;
}

/* ZIELGRUPPEN */

.zielgruppen {
    background: #eee3d5;
    text-align: center;
}

.grid {
    max-width: 1180px;
    margin: 55px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.card {
    background: rgba(255, 255, 255, 0.5);
    padding: 42px 28px;
    border: 1px solid rgba(120, 90, 55, 0.16);
	border-radius:20px;
}

.card p {
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* PRODUKTE */

.produktbilder {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 35px;
}

.produktbild {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.produktshot {
    display: block;
    position: relative;
    padding-bottom: 18px;
}

/* Bodenschatten unter dem Produkt */
.produktshot::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 18px;
    background: rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    filter: blur(13px);
    z-index: 0;
}

/* Produktbild */
.produktbild img {
    height: 300px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.18));
}

.produkttext {
    margin: 18px auto 0;
    max-width: 360px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    color: #444;
}
.ziel-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 11px 22px;
    background: #B5986D;
    color: #fff;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    border-radius: 15px;
    transition: all 0.25s ease;
}

.ziel-btn:hover {
    background: #9F845C;
    transform: translateY(-2px);
}
.card {
    background: rgba(255, 255, 255, 0.5);
    padding: 42px 28px;
    border: 1px solid rgba(120, 90, 55, 0.16);
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
a {color: #B5986D;}

/* Mobilansicht */
@media (max-width: 768px) {

    .produktbilder {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .produktbild {
        width: 100%;
        max-width: 420px;
        padding: 26px 18px 24px;
        background: #F4F0EA;
        border: 1px solid rgba(181, 152, 109, 0.32);
        border-radius: 18px;
        box-sizing: border-box;
    }

    .produktbild img {
        height: 280px;
        width: auto;
        max-width: 90%;
    }

    .produktshot::after {
        width: 55%;
        height: 14px;
        bottom: 5px;
        background: rgba(0, 0, 0, 0.14);
        filter: blur(11px);
    }

    .produkttext {
        max-width: 92%;
        margin-top: 16px;
    }
}

/* KONTAKT */

.kontakt {
    background:
        linear-gradient(rgba(35, 25, 19, 0.86), rgba(35, 25, 19, 0.9)),
        url("../img/szenen/kontakt.jpg") center center / cover no-repeat;
    color: #f5eadc;
}

.kontakt h2 {
    color: #f5eadc;
}

.kontakt p {
    color: #dfcdb8;
}

.buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* FOOTER */

footer {
    background: #16110f;
    color: #c9b8a5;
    padding: 34px 8%;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: #fff3df;
}

/* RESPONSIVE */

@media (max-width: 980px) {

    .topnav {
        align-items: flex-start;
        gap: 25px;
    }

    .topnav ul {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .image-section {
        grid-template-columns: 1fr;
    }

    .image-section p {
        text-align: center;
    }

    .text-box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .section {
        padding: 80px 7%;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        padding-top: 100px;
    }

    .topnav {
        position: absolute;
        padding: 22px 7%;
        display: block;
    }

    .logo img {
        max-width: 100%;
        margin-bottom: 20px;
    }

.topnav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.topnav ul li a {
    display: block;
    padding: 10px 14px;
    background: rgba(35, 35, 35, 0.55);
    border: 1px solid rgba(181, 152, 109, 0.35);
    border-radius: 8px;
    text-align: center;
}

    h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.08rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .top-button {
        right: 16px;
        bottom: 82px;
        width: 42px;
        height: 42px;
        font-size: 24px;
        line-height: 38px;
    }
}



/* MOBILE NAVILEISTE */

#mobile-navileiste {
    display: none;
}

@media (max-width: 768px) {

    #mobile-navileiste {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        height: 62px;
        background: rgba(35, 35, 35, 0.94);
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 99999;
        border-top: 1px solid rgba(181, 152, 109, 0.45);
        backdrop-filter: blur(6px);
    }

    #mobile-navileiste a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20%;
        height: 62px;
        text-decoration: none;
    }

    #mobile-navileiste img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        opacity: 0.92;
    }

    #mobile-navileiste a:active img {
        opacity: 0.65;
        transform: scale(0.94);
    }

    body {
        padding-top: 50px;
    }
    .hero {
        background: #211814;
        min-height: 550px;
    }

    .hero-content h1,
    .hero-content p,
    .hero-content .btn {
        display: none;
    }

}