/* Grundreset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #f4efe6;
    color: #1f3b5b;
    line-height: 1.6;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: #1f3b5b;
    color: #c6a46a;
    z-index: 10;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 80px;
    max-width: 100%;
    height: auto;
}

.logo-text h1 {
    font-size: 42px;
    letter-spacing: 2px;
}

.logo-text span {
    font-weight: normal;
}

.logo-text p {
    font-size: 20px;
    margin-top: 5px;
}

/* Navigation */
.nav {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.nav ul {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    list-style: none;
}

.nav a {
    color: #e6ddc8;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
}

.nav a:hover {
    color: #c6a46a;
}

/* Burger Button */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #e6ddc8;
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .burger {
        display: flex;
    }

    .nav ul {
        display: none;
        flex-direction: column;
        background: #1f3b5b;
        width: 100%;
        padding: 20px;
    }

    .nav ul.active {
        display: flex;
    }
}

/* Hero / Slider */
.hero {
    position: relative;
    width: 100%;
    height: 53vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f4efe6;
    z-index: 1;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
}

.slider img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 40vw;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.8s ease;
    opacity: 0;
    filter: brightness(70%);
}

/* Aktives Bild */
.slider img.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
    filter: brightness(100%);
}

/* Linkes Bild */
.slider img.prev {
    transform: translate(-115%, -50%) scale(0.7);
    opacity: 0.6;
    z-index: 2;
}

/* Rechtes Bild */
.slider img.next {
    transform: translate(15%, -50%) scale(0.7);
    opacity: 0.6;
    z-index: 2;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 10px;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots span.active {
    background: white;
    transform: scale(1.2);
}

/* Mobile Slider */
@media (max-width: 900px) {
    .hero {
        height: auto;
    }

    .slider {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        perspective: none;
    }

    .slider img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
        opacity: 0;
        filter: none;
        border-radius: 0;
        transition: opacity 0.6s ease;
    }

    .slider img.active {
        opacity: 1;
        z-index: 2;
    }

    .slider img.prev,
    .slider img.next {
        display: none;
    }

    .slider-dots {
        position: relative;
        bottom: auto;
        margin-top: 10px;
    }
}

/* Content */
.content {
    padding: 70px 20px;
}

.content-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Startseiten-Überschrift */
.content h2 {
    font-size: 34px;
    letter-spacing: 2px;
    color: #c6a46a;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* Unterüberschriften im Text */
.content h3 {
    font-size: 24px;
    letter-spacing: 1px;
    color: #1f3b5b;
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Fließtext */
.text {
    max-width: 850px;
}

.text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #1f3b5b;
}

.text strong {
    color: #1f3b5b;
}

/* Listen */
.text ul {
    margin: 20px 0 25px 22px;
    padding-left: 10px;
}

.text li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f3b5b;
}

/* Download-Button */
.download-box-outline {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
    padding: 14px 26px;
    background: #c6a46a;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #c6a46a;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.download-title {
    font-weight: 600;
}

.download-action {
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.download-box-outline:hover {
    background: #ffffff;
    color: #1f3b5b;
}

.download-box-outline:hover .download-action {
    transform: translateX(4px);
}

/* Infoseite */
.info-loose {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
    padding: 0 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    gap: 15px;
    color: #1f3b5b;
    font-family: Georgia, "Times New Roman", serif;
}

.info-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.info-text {
    flex: 1;
    padding: 30px;
    color: #1f3b5b;
    font-family: Georgia, "Times New Roman", serif;
}

.info-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #c6a46a;
}

.info-text p {
    font-size: 16px;
    line-height: 1.7;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .info-loose {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .info-item {
        max-width: 90%;
    }
}

/* Footer */
.site-footer {
    background: #1f3b5b;
    color: #e6ddc8;
    padding: 30px 20px;
    font-size: 14px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copy {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 1px;
}

.footer-nav a {
    color: #c6a46a;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.age-notice {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #e6ddc8;
    opacity: 0.85;
}

/* Events */
.events {
    padding: 100px 20px;
}

.events-inner {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 0;
}

.events-table {
    width: 100%;
    border-collapse: collapse;
}

.events-table tr {
    position: relative;
    border-bottom: 1px solid rgba(31,59,91,0.15);
    transition: all 0.3s ease;
}

.events-table tr::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 20%;
    height: 60%;
    width: 2px;
    background: #c6a46a;
    opacity: 0;
    transition: 0.3s ease;
}

.events-table tr:hover::before {
    opacity: 1;
}

.events-table tr:hover {
    background: rgba(198,164,106,0.06);
}

.events-table td {
    padding: 22px 0;
    font-size: 17px;
}

.events-table td:first-child {
    color: #c6a46a;
    font-weight: 600;
    letter-spacing: 1px;
    width: 220px;
}

.events-table td:nth-child(2) {
    color: #1f3b5b;
    font-size: 18px;
}

.events-table td:last-child {
    text-align: right;
    opacity: 0.65;
    font-size: 16px;
}

/* Impressum / Rechtstexte */
.single-column {
    grid-template-columns: 1fr;
}

.legal h2 {
    font-size: 26px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: #1f3b5b;
}

.legal p {
    margin-bottom: 20px;
    max-width: 700px;
}

.legal a {
    color: #1f3b5b;
    text-decoration: underline;
}

.legal a:hover {
    color: #c6a46a;
}

.legal-note {
    margin-top: 40px;
    font-size: 14px;
    color: #555;
}

.age-notice-legal {
    margin-top: 30px;
    padding: 15px;
    background: #f4efe6;
    border-left: 4px solid #c6a46a;
    font-size: 14px;
}

/* Kontaktformular */
.contact-intro {
    max-width: 700px;
    margin: 10px auto 40px;
    text-align: center;
    line-height: 1.6;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 35px;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(31,59,91,0.15);
    border-radius: 12px;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid rgba(31,59,91,0.2);
    border-radius: 8px;
    background: #f4efe6;
    font-family: Georgia, serif;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c6a46a;
    outline: none;
}

.btn-gold {
    padding: 12px 22px;
    border: 1px solid #c6a46a;
    background: #c6a46a;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn-gold:hover {
    background: white;
    color: #1f3b5b;
}

.success-message {
    text-align: center;
    padding: 20px;
    background: #e9f6ec;
    border: 1px solid #b6dfc2;
    margin-bottom: 20px;
}

.error-message {
    text-align: center;
    padding: 20px;
    background: #f8e6e6;
    border: 1px solid #e0b4b4;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .content {
        padding: 50px 20px;
    }

    .content-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .content h3 {
        font-size: 21px;
        margin-top: 28px;
    }

    .text p,
    .text li {
        font-size: 17px;
    }

    .nav ul {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .events-table,
    .events-table tbody,
    .events-table tr,
    .events-table td {
        display: block;
        width: 100%;
    }

    .events-table tr {
        padding: 25px 0;
    }

    .events-table tr::before {
        left: 0;
        top: 0;
        height: 100%;
    }

    .events-table td {
        padding: 5px 0;
        text-align: left !important;
    }

    .events-table td:first-child {
        margin-bottom: 6px;
        width: 100%;
    }

    .events-table td:nth-child(2) {
        margin-bottom: 4px;
    }

    .events-table td:last-child {
        opacity: 0.7;
    }
}

@media (max-width: 600px) {
    .logo-text h1 {
        font-size: 28px;
    }

    .logo-text p {
        font-size: 16px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav a {
        margin: 0 10px;
    }

    .legal h2 {
        font-size: 22px;
        text-align: center;
    }

    .legal p {
        font-size: 15px;
    }

    .content h2 {
        font-size: 24px;
    }

    .content h3 {
        font-size: 19px;
    }

    .text p,
    .text li {
        font-size: 16px;
    }

    .download-box-outline {
        width: 100%;
        justify-content: space-between;
        padding: 14px 18px;
    }
}
.hero-intro {
    max-width: 1500px;
    margin: -60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-overlay-box {
    max-width: 1500px;
    background: rgba(255, 255, 255, 0.92);
    padding: 32px;
    box-shadow: 0 12px 30px rgba(31, 59, 91, 0.10);
    border-left: 4px solid #c6a46a;
}

.hero-kicker {
    color: #c6a46a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.hero-overlay-box h2 {
    font-size: 38px;
    color: #1f3b5b;
    margin-bottom: 14px;
    line-height: 1.15;
}

.hero-overlay-box p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 12px 22px;
    border: 1px solid #1f3b5b;
    color: #1f3b5b;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #1f3b5b;
    color: #ffffff;
}

.intro-section {
    padding-top: 60px;
}

.info-item h3 {
    font-size: 22px;
    color: #c6a46a;
}

.info-item p {
    font-size: 16px;
    line-height: 1.6;
}

.split-section,
.visit-section {
    padding: 80px 20px;
}

.split-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split-inner.reverse {
    grid-template-columns: 1fr 1fr;
}

.split-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.split-text h2 {
    margin-bottom: 18px;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 18px;
}

.wine-section,
.events-teaser {
    padding: 80px 20px;
}

.section-intro {
    max-width: 760px;
    font-size: 18px;
    margin-bottom: 30px;
}

.wine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 35px;
}

.wine-card {
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(31,59,91,0.10);
    padding: 24px;
}

.wine-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #c6a46a;
}

.wine-card p {
    margin: 0;
    font-size: 16px;
}

.events-teaser {
    text-align: center;
    background: rgba(198,164,106,0.08);
}

.events-teaser .section-intro {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .hero-intro {
        margin-top: 0;
    }

    .hero-overlay-box {
        padding: 24px;
    }

    .hero-overlay-box h2 {
        font-size: 30px;
    }

    .split-inner,
    .split-inner.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wine-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-overlay-box h2 {
        font-size: 26px;
    }

    .hero-overlay-box p,
    .split-text p,
    .section-intro {
        font-size: 16px;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}
