/* ============================================
   WEINGUT AMBROSIUS – STYLESHEET
   ============================================ */

:root {
    --gold:       #b89148;
    --gold-light: #d4ab5e;
    --gold-dark:  #8a6b2e;
    --dark:       #1c1c18;
    --dark-green: #2a2f1e;
    --olive:      #3d4a2a;
    --cream:      #f5f0e6;
    --cream-dark: #ede4d0;
    --text:       #2c2c24;
    --text-light: #6b6450;
    --white:      #ffffff;
    --nav-h:      80px;
    --transition: 0.3s ease;
    --radius:     4px;
    --shadow:     0 8px 40px rgba(0,0,0,0.12);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1.2rem; }
.section-text { color: var(--text-light); max-width: 560px; line-height: 1.85; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    border: 2px solid var(--gold);
    cursor: pointer; transition: all var(--transition);
    border-radius: var(--radius);
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* Layout */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-alt { background: var(--cream-dark); }

/* HEADER */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; height: var(--nav-h);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(26,24,18,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-h); padding: 0 2rem;
    max-width: 1300px; margin: 0 auto;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem; font-weight: 400;
    color: var(--white); line-height: 1.3;
    letter-spacing: 0.03em; text-transform: uppercase;
}
.logo-initial {
    font-size: 2.2rem; line-height: 1;
    color: var(--gold); display: inline-block; vertical-align: middle;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative; padding-bottom: 3px;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); transition: all var(--transition); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,24,14,0.72) 0%, rgba(42,47,30,0.55) 50%, rgba(20,18,10,0.40) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    transform: scale(1.05); transition: transform 8s ease;
}
.hero-bg.zoomed { transform: scale(1.0); }
.hero-content {
    position: relative; z-index: 1;
    padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
    max-width: 700px; margin-left: max(2rem, 8vw);
}
.hero-eyebrow {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 1.2rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 0.3s forwards;
}
.hero h1 {
    color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 0.9s 0.5s forwards;
}
.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; color: rgba(255,255,255,0.82);
    margin: 1.2rem 0 2.5rem; font-style: italic;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 0.9s forwards;
}
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; color: rgba(255,255,255,0.6);
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    animation: fadeIn 1s 1.5s both;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
    animation: scrollLine 2s ease infinite;
}

/* ÜBER UNS */
.about { padding: 7rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 550px; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow); }
.about-image-badge {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--gold); color: var(--white);
    padding: 1.5rem; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.about-image-badge .year { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; display: block; }
.about-image-badge .year-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.about-text p { margin-bottom: 1.2rem; color: var(--text-light); }
.about-signature { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; color: var(--gold-dark); margin: 2rem 0 2.5rem; }

/* GALLERY */
.gallery { padding: 5rem 0; background: var(--dark-green); }
.gallery .section-eyebrow { color: var(--gold-light); }
.gallery .section-title { color: var(--white); text-align: center; }
.gallery-handle { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: -0.5rem; margin-bottom: 2.5rem; }
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); cursor: grab; }
.carousel-track:active { cursor: grabbing; }
.carousel-item { flex: 0 0 20%; overflow: hidden; aspect-ratio: 1; position: relative; }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.9); }
.carousel-item:hover img { transform: scale(1.08); filter: brightness(1); }
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; background: rgba(184,145,72,0.85);
    border: none; width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.2rem; transition: background var(--transition);
}
.carousel-btn:hover { background: var(--gold); }
.carousel-btn-prev { left: 0.5rem; }
.carousel-btn-next { right: 0.5rem; }
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* WEINKARTE */
.weinkarte { padding: 7rem 0; }
.weinkarte-header { text-align: center; margin-bottom: 4rem; }
.weinkarte-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 3rem; }
.wine-card {
    background: var(--white); padding: 2.5rem 2rem;
    border-top: 3px solid var(--gold);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    transition: transform var(--transition), box-shadow var(--transition);
}
.wine-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.wine-card-icon { color: var(--gold); margin-bottom: 1rem; font-size: 1.6rem; }
.wine-card-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.wine-list { margin-top: 1rem; }
.wine-list li { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.92rem; }
.wine-list li:last-child { border-bottom: none; }
.wine-price { color: var(--gold-dark); font-weight: 700; white-space: nowrap; margin-left: 1rem; }
.wine-more { color: var(--gold); font-size: 0.85rem; margin-top: 0.8rem; display: inline-block; }
.wine-more:hover { color: var(--gold-dark); }
.weinkarte-cta { text-align: center; }

/* BESTELLUNG */
.bestellung { padding: 7rem 0; background: var(--dark-green); }
.bestellung-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.bestellung .section-eyebrow { color: var(--gold-light); }
.bestellung h2 { color: var(--white); }
.bestellung .section-text { color: rgba(255,255,255,0.65); }
.order-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.form-field input, .form-field textarea, .form-field select {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
    padding: 0.85rem 1rem; color: var(--white);
    font-family: 'Lato', sans-serif; font-size: 0.95rem;
    border-radius: var(--radius); transition: border-color var(--transition), background var(--transition); outline: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-contact { display: flex; gap: 2rem; margin-top: 0.5rem; flex-wrap: wrap; }
.form-contact-item { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.form-contact-item a { color: rgba(255,255,255,0.65); }
.form-contact-item a:hover { color: var(--gold-light); }

/* Info Features */
.info-features { display: flex; flex-direction: column; gap: 1.8rem; }
.info-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.info-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(184,145,72,0.15); border: 1px solid rgba(184,145,72,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 1.1rem; }
.info-text { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.7; }
.info-text strong { color: var(--white); }
.signature-block { margin-top: 2rem; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; color: var(--gold-light); }

/* FOOTER */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding: 4rem 2rem 3rem; max-width: 1180px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,0.08); }
.logo-light { color: var(--white); }
.footer-tagline { margin-top: 0.8rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.footer-heading { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col p { margin-bottom: 0.4rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: rgba(255,255,255,0.65); transition: all var(--transition); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-bottom { text-align: center; padding: 1.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }

/* INNER PAGES */
.inner-page-hero { background: linear-gradient(135deg, var(--dark-green), var(--dark)); padding: calc(var(--nav-h) + 3rem) 2rem 3rem; margin-bottom: 4rem; }
.inner-page-hero h1 { color: var(--white); }
.inner-page-hero .section-eyebrow { color: var(--gold-light); }
.inner-page-hero .container { max-width: 1180px; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 0 1.5rem 6rem; }
.legal-content h2 { font-size: 1.4rem; margin: 2.5rem 0 0.8rem; color: var(--dark-green); border-bottom: 2px solid var(--gold); padding-bottom: 0.5rem; }
.legal-content h3 { font-size: 1.05rem; margin: 1.8rem 0 0.5rem; color: var(--olive); }
.legal-content p { margin-bottom: 1rem; color: var(--text-light); }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--text-light); list-style: disc; }
.legal-content ul li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-content .back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold-dark); font-weight: 700; margin-bottom: 2rem; text-decoration: none; }
.legal-content .back-link:hover { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollLine { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.3; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrap img { height: 380px; }
    .weinkarte-grid { grid-template-columns: 1fr 1fr; }
    .bestellung-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .carousel-item { flex: 0 0 33.333%; }
}
@media (max-width: 768px) {
    :root { --nav-h: 68px; }
    .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(26,24,18,0.97); backdrop-filter: blur(15px); flex-direction: column; padding: 2rem; gap: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .weinkarte-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-contact { flex-direction: column; gap: 0.8rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
    .carousel-item { flex: 0 0 50%; }
    .hero-content { margin-left: 0; padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem; }
    .about-image-badge { right: 0; }
}
@media (max-width: 480px) {
    .carousel-item { flex: 0 0 80%; }
    .hero-actions { flex-direction: column; }
}

/* ── UNSERE WEINE – Beschreibungen ─────────── */
.our-wines { background: var(--cream); }
.our-wines .weinkarte-header { margin-bottom: 2.5rem; }

.wine-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.wine-tab {
    padding: 0.65rem 1.8rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--cream-dark);
    background: var(--white);
    color: var(--text-light);
    cursor: pointer;
    border-radius: 30px;
    transition: all var(--transition);
}
.wine-tab:hover { border-color: var(--gold); color: var(--gold); }
.wine-tab.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

.wine-descriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wine-desc-card {
    background: var(--white);
    border-radius: 2px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 3px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}
.wine-desc-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.wine-desc-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-green);
    min-width: 110px;
    line-height: 1.3;
    flex-shrink: 0;
}
.wine-desc-name small {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.2rem;
}
.wine-desc-text {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.75;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
}

/* ── Weinkarte – detaillierte Liste ─────────── */
.wine-list-detail { margin-top: 1rem; }
.wine-list-detail li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    gap: 1rem;
}
.wine-list-detail li:last-child { border-bottom: none; }
.wine-info { flex: 1; }
.wine-name { display: block; font-weight: 700; font-size: 0.9rem; color: var(--text); }
.wine-meta { display: block; font-size: 0.75rem; color: var(--text-light); margin-top: 0.2rem; line-height: 1.4; }
.wine-list-detail .wine-price { font-weight: 700; color: var(--gold-dark); white-space: nowrap; font-size: 0.9rem; padding-top: 0.1rem; }
.wine-liter-note { font-size: 0.75rem; color: var(--text-light); margin-top: 1rem; padding-top: 0.8rem; border-top: 1px solid rgba(0,0,0,0.06); font-style: italic; }

@media (max-width: 768px) {
    .wine-descriptions-grid { grid-template-columns: 1fr; }
    .wine-desc-card { flex-direction: column; gap: 0.8rem; }
    .wine-desc-name { min-width: unset; }
}
