:root{
    --bg-dark:#0b0b0b;
    --bg-light:#1a1a1a;
    --gold:#c9a45c;
    --text:#eaeaea;
    --muted:#999;
}

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

body{
    font-family:Inter,sans-serif;
    background:var(--bg-dark);
    color:var(--text);
}

a{text-decoration:none;color:inherit}

img{display:block}

/* ===== HEADER ===== */
.header{
    position:fixed;
    top:0;
    width:100%;
    padding:18px 70px;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(8px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}

.logo{
    font-family:"Playfair Display",serif;
    color:var(--gold);
    font-size:22px;
    letter-spacing:2px;
    line-height:1.1;
    display:flex;
    align-items:center;
    background:#fff;
    padding:6px 14px;
    border-radius:10px;
}

.logo-img{
    height:52px;
    width:auto;
    display:block;
}

.logo span{
    display:block;
    font-family:Inter,sans-serif;
    color:var(--muted);
    font-size:10px;
    letter-spacing:4px;
    font-weight:400;
}

.header nav{
    display:flex;
    align-items:center;
}

.header nav a{
    margin-left:24px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.5px;
    white-space:nowrap;
    transition:color .25s;
}

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

.menu-btn{
    border:1px solid var(--gold);
    padding:7px 18px;
}

.menu-btn:hover{
    background:var(--gold);
    color:#000;
}

.nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:26px;
    height:20px;
    background:none;
    border:none;
    cursor:pointer;
    margin-left:20px;
}

.nav-toggle span{
    display:block;
    height:2px;
    width:100%;
    background:var(--gold);
}

/* ===== HERO (home) ===== */
.hero{
    height:100vh;
    background:
        linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.85)),
        url("images/mainpage.png") center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    max-width:800px;
    padding:0 20px;
}

.hero-title{
    font-family:"Playfair Display",serif;
    font-size:96px;
    color:var(--gold);
    letter-spacing:6px;
}

.hero-subtitle{
    margin:25px 0 45px;
    color:var(--muted);
    letter-spacing:3px;
}

.hero-buttons a{
    display:inline-block;
    border:1px solid var(--gold);
    padding:16px 36px;
    margin:10px 10px 0;
    transition:.3s;
}

.hero-buttons a:hover{
    background:var(--gold);
    color:#000;
}

.intro{
    max-width:760px;
    margin:0 auto;
    text-align:center;
    color:var(--muted);
    font-size:17px;
    line-height:1.8;
}

/* ===== VENUE HERO (subpages) ===== */
.venue-hero{
    height:65vh;
    min-height:420px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:flex-end;
    position:relative;
}

.venue-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.35),var(--bg-dark) 95%);
}

.venue-hero-content{
    position:relative;
    padding:0 80px 60px;
    max-width:900px;
}

.venue-eyebrow{
    display:inline-block;
    color:var(--gold);
    letter-spacing:3px;
    font-size:12px;
    text-transform:uppercase;
    border:1px solid var(--gold);
    padding:6px 14px;
    margin-bottom:22px;
}

.venue-hero-content h1{
    font-family:"Playfair Display",serif;
    font-size:64px;
    color:var(--text);
}

.venue-hero-content p{
    margin-top:18px;
    color:var(--muted);
    font-size:16px;
    max-width:560px;
}

.hero-menu-btn{
    display:inline-block;
    margin-top:26px;
    border:1px solid var(--gold);
    background:var(--gold);
    color:#000;
    padding:14px 32px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:.3s;
}

.hero-menu-btn:hover{
    background:transparent;
    color:var(--gold);
}

/* ===== VENUE TABS (cross-nav between the 5 spaces) ===== */
.venues-nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    padding:40px 30px 0;
}

.venues-nav a{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    padding:10px 20px;
    border:1px solid #333;
    color:var(--muted);
    transition:.25s;
}

.venues-nav a:hover{
    border-color:var(--gold);
    color:var(--gold);
}

.venues-nav a.active{
    border-color:var(--gold);
    color:var(--gold);
    background:rgba(201,164,92,.08);
}

/* ===== SECTIONS ===== */
section{padding:130px 80px}

h2{
    font-family:"Playfair Display",serif;
    font-size:36px;
    margin-bottom:24px;
}

h3{
    font-family:"Playfair Display",serif;
    font-size:42px;
    text-align:center;
    margin-bottom:60px;
}

.section-tight{padding-top:70px}

/* ===== CONTENT GRIDS (home overview) ===== */
.spaces,.events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

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

.space,.event-card,.venue-card{
    background:var(--bg-light);
}

.venue-card{
    display:flex;
    flex-direction:column;
}

.space img,.event-card img,.venue-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.space h4,.event-card h4,.venue-card h4{
    color:var(--gold);
    margin:20px 20px 0;
    font-family:"Playfair Display",serif;
    font-size:22px;
}

.space p,.event-card p,.venue-card p{
    padding:12px 20px 24px;
    color:var(--muted);
    font-size:14px;
    line-height:1.7;
    flex-grow:1;
}

.venue-card .card-link{
    margin:0 20px 24px;
    display:inline-block;
    color:var(--gold);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    border-bottom:1px solid var(--gold);
    padding-bottom:3px;
    align-self:flex-start;
}

/* ===== VENUE DETAIL LAYOUT ===== */
.venue-detail{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:start;
}

.venue-detail p{
    color:var(--muted);
    font-size:16px;
    line-height:1.9;
    margin-bottom:20px;
}

.features-list{
    list-style:none;
    background:var(--bg-light);
    padding:36px;
}

.features-list li{
    padding:12px 0;
    border-bottom:1px solid #262626;
    color:var(--text);
    font-size:14px;
    letter-spacing:.3px;
}

.features-list li:last-child{border-bottom:none}

.features-list li::before{
    content:"—";
    color:var(--gold);
    margin-right:12px;
}

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

.gallery img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* ===== CTA BANNER ===== */
.cta-section{
    background:var(--bg-light);
    text-align:center;
}

.cta-section h3{margin-bottom:20px}

.cta-section p{
    color:var(--muted);
    max-width:560px;
    margin:0 auto 40px;
}

.cta-buttons a{
    display:inline-block;
    border:1px solid var(--gold);
    padding:14px 32px;
    margin:0 8px;
    transition:.3s;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.cta-buttons a.filled{
    background:var(--gold);
    color:#000;
}

.cta-buttons a:hover{
    background:var(--gold);
    color:#000;
}

/* ===== MENU PAGE ===== */
.menu-hero{
    padding:180px 80px 60px;
    text-align:center;
}

.menu-hero p{
    color:var(--muted);
    margin-top:16px;
    letter-spacing:1px;
}

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

.menu-box{
    background:var(--bg-light);
    padding:30px 40px;
}

.menu-box ul{list-style:none}

.menu-box li{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid #262626;
}

.menu-box li:last-child{border-bottom:none}

.menu-box span{color:var(--gold)}

.menu-note{
    text-align:center;
    color:var(--muted);
    font-size:13px;
    margin-top:20px;
}

/* ===== MENU TABS (switch category instead of one long scroll) ===== */
.menu-tabs{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:8px;
    padding:30px 80px 0;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:thin;
    position:sticky;
    top:88px;
    background:var(--bg-dark);
    z-index:10;
}

.menu-tabs button{
    flex:0 0 auto;
    font:inherit;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.8px;
    padding:10px 18px;
    border:1px solid #333;
    background:none;
    color:var(--muted);
    white-space:nowrap;
    cursor:pointer;
    transition:.2s;
}

.menu-tabs button:hover{
    border-color:var(--gold);
    color:var(--gold);
}

.menu-tabs button.active{
    border-color:var(--gold);
    color:var(--gold);
    background:rgba(201,164,92,.1);
}

/* ===== MENU ITEMS (data-driven, with photo/placeholder) ===== */
.menu-dynamic{padding:0 80px 40px}

.menu-category{
    display:none;
    padding-top:40px;
    scroll-margin-top:150px;
}

.menu-category.is-active{display:block}

.menu-category h3{margin-bottom:36px}

.menu-group-label{
    grid-column:1/-1;
    color:var(--gold);
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:2px;
    margin:16px 0 -6px;
}

.menu-group-label:first-child{margin-top:0}

.menu-items{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:26px;
    max-width:1300px;
    margin:0 auto;
}

.menu-item{
    display:flex;
    flex-direction:column;
    background:var(--bg-light);
    overflow:hidden;
}

.menu-item-thumb{
    width:100%;
    aspect-ratio:1/1;
    background:#141414;
    border-bottom:1px solid #262626;
}

.menu-item-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.menu-item-thumb img.placeholder-icon{
    object-fit:contain;
    padding:22%;
    opacity:.85;
}

.menu-item-info{flex:1;min-width:0;padding:16px 18px 20px}

.menu-item-name{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    gap:12px;
    font-size:16px;
    font-weight:600;
}

.menu-item-price{
    color:var(--gold);
    flex:0 0 auto;
    font-size:14px;
    font-weight:400;
}

.menu-item-desc{
    color:var(--muted);
    font-size:13px;
    margin-top:8px;
    line-height:1.55;
}

/* ===== PROGRAM (Anděl Music Bar — monthly events) ===== */
.program-list{
    display:flex;
    flex-direction:column;
    gap:2px;
    max-width:900px;
    margin:0 auto;
}

.program-card{
    display:flex;
    gap:26px;
    background:var(--bg-light);
    padding:26px 30px;
}

.program-date{
    flex:0 0 auto;
    width:64px;
    text-align:center;
    color:var(--gold);
    border-right:1px solid #2a2a2a;
    padding-right:22px;
}

.program-day{
    display:block;
    font-family:"Playfair Display",serif;
    font-size:32px;
    line-height:1;
}

.program-month{
    display:block;
    text-transform:uppercase;
    font-size:11px;
    letter-spacing:1px;
    color:var(--muted);
    margin-top:6px;
}

.program-body{flex:1;min-width:0}

.program-title-row{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    gap:16px;
    flex-wrap:wrap;
}

.program-title-row h4{
    font-family:"Playfair Display",serif;
    font-size:20px;
    color:var(--text);
}

.program-time{
    color:var(--gold);
    font-size:13px;
    flex:0 0 auto;
}

.program-meta{
    color:var(--gold);
    font-size:12px;
    margin-top:6px;
    letter-spacing:.3px;
}

.program-desc{
    color:var(--muted);
    font-size:14px;
    line-height:1.7;
    margin-top:10px;
}

/* ===== FOOTER + MAP ===== */
footer{
    background:#000;
    padding:60px 40px 0;
    text-align:center;
}

.footer-info{
    color:var(--muted);
    margin-bottom:14px;
}

.footer-links{
    margin-bottom:30px;
}

.footer-links a{
    margin:0 12px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:var(--muted);
}

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

.footer-note{
    color:#555;
    font-size:11px;
    padding:20px 0;
    letter-spacing:.5px;
}

.map{
    width:100%;
    height:350px;
    filter:grayscale(1) brightness(.8);
    border:0;
}

/* ===== ANIMATIONS ===== */
[data-animate]{
    opacity:0;
    transform:translateY(60px);
    transition:.9s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1080px){
    .header{padding:16px 30px}
    .header nav a{margin-left:16px}
    .venue-detail{grid-template-columns:1fr}
}

@media(max-width:900px){
    .spaces,.events-grid,.venues-grid,.menu-grid,.gallery{grid-template-columns:1fr}
    .hero-title{font-size:56px}
    section{padding:100px 24px}
    .venue-hero-content{padding:0 24px 40px}
    .venue-hero-content h1{font-size:42px}

    .nav-toggle{display:flex}

    .header nav{
        position:fixed;
        top:64px;
        right:0;
        height:calc(100vh - 64px);
        width:240px;
        background:rgba(0,0,0,.97);
        flex-direction:column;
        align-items:flex-start;
        padding:30px;
        transform:translateX(100%);
        transition:transform .3s ease;
    }

    .header nav.open{transform:translateX(0)}

    .header nav a{
        margin:0 0 22px;
        font-size:14px;
    }

    .menu-btn{margin-top:8px}

    .menu-tabs{padding:24px 20px 0;top:64px}
    .menu-dynamic{padding:0 20px 40px}
    .menu-items{grid-template-columns:repeat(2,1fr);gap:16px}
    .program-card{flex-direction:column;gap:14px}
    .program-date{
        width:auto;
        border-right:none;
        padding-right:0;
        display:flex;
        align-items:baseline;
        gap:8px;
        text-align:left;
    }
}
