/* =============================================
   LDX Bar & Artlounge — Global Stylesheet
   ============================================= */

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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --gold: #c9a96e;
    --gold-light: #dfc090;
    --gold-dark: #a8884d;
    --text-primary: #f0ece4;
    --text-secondary: #a09a8e;
    --text-muted: #6b6560;
    --border: #2a2520;
    --wine-red: #722f37;
    --wine-red-light: #8b3a42;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 36px;
    width: auto;
    filter: invert(1);
    opacity: 0.9;
    transition: opacity 0.2s;
}

.nav-logo:hover img {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ── Hero ── */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(40,15,15,0.95) 50%, rgba(10,10,10,0.97) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 70%);
}

.hero-content { position: relative; z-index: 1; }

.hero-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-awards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.award {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    border: 1px solid var(--border);
    padding: 0.5rem 1.2rem;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-filled {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-filled:hover { background: var(--gold-light); }

.btn-small {
    padding: 0.6rem 1.8rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* ── Scroll indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-dark), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ── Sections ── */
section { padding: 6rem 2rem; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Cards ── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

.card.featured {
    border-color: var(--gold-dark);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    z-index: 2;
}

/* ── Grid layouts ── */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Intro items ── */
.intro-item {
    padding: 2rem 1.5rem;
    text-align: center;
}

.intro-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.intro-item p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Info blocks ── */
.info-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.info-block p, .info-block li {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-block ul { list-style: none; }

.info-block ul li {
    padding: 0.3rem 0 0.3rem 1.2rem;
    position: relative;
}

.info-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 5px;
    height: 5px;
    background: var(--gold-dark);
    border-radius: 50%;
}

/* ── CTA section ── */
.cta-section {
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(10,10,10,1) 0%, rgba(40,15,15,0.6) 50%, rgba(10,10,10,1) 100%);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* ── Footer ── */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-address {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.footer-links a:hover { color: var(--gold); }

/* ── Event cards ── */
.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: all 0.3s;
}

.event-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

.event-date {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.event-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.event-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.event-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
}

/* ── Tasting packages ── */
.tasting-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s ease;
}

.tasting-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

.tasting-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tasting-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
}

.tasting-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.tasting-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    white-space: nowrap;
}

.tasting-price::after {
    content: "pro Person";
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: -0.2rem;
}

.tasting-signup {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-dark);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.tasting-signup:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.disclaimer-banner {
    max-width: 1000px;
    margin: 0 auto 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold-dark);
    border-radius: 2px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tasting-details {
    padding: 0 2rem 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ── Blog cards ── */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

.blog-card-body {
    padding: 2rem;
    flex: 1;
}

.blog-card .event-date { margin-bottom: 0.6rem; }

.blog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

.blog-card-link {
    padding: 1rem 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.blog-card-link:hover { color: var(--gold); }

/* ── Blog article ── */
.article-content {
    max-width: 700px;
    margin: 0 auto;
}

.article-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    margin: 2rem 0 1rem;
}

.article-content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

/* ── Menu section ── */
.menu-category {
    margin-bottom: 3rem;
}

.menu-category h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(42,37,32,0.3);
}

.menu-item-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-primary);
}

.menu-item-desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.menu-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 2rem;
}

/* ── Impressum ── */
.legal-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    margin: 2rem 0 0.8rem;
}

.legal-content p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* ── Hero with background image ── */
.hero-img {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
}

.hero-img .hero-content,
.hero-img .scroll-indicator { position: relative; z-index: 2; }

/* ── Image sections ── */
.img-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 500px;
}

.img-section.reverse .img-panel { order: -1; }

.img-panel {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.text-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
}

.text-panel .section-label { text-align: left; }
.text-panel .section-title { text-align: left; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.text-panel .section-desc { margin: 0; text-align: left; }

/* ── Image gallery strip ── */
.img-strip {
    display: flex;
    gap: 0;
    overflow: hidden;
    height: 300px;
}

.img-strip > div {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-width: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .nav-links.open { display: flex; }

    .nav-toggle { display: block; z-index: 101; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    .hero-awards { flex-direction: column; align-items: center; }

    .tasting-header { flex-direction: column; }

    .tasting-price { margin-top: 0.5rem; }

    .cta-buttons { flex-direction: column; align-items: center; }

    .img-section { grid-template-columns: 1fr; }
    .img-section.reverse .img-panel { order: 0; }
    .img-panel { min-height: 250px; }
    .text-panel { padding: 3rem 1.5rem; }

    .img-strip { height: 200px; }
}
