/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#000;
color:#fff;
line-height:1.6;
}


/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:#000;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid #111;
}

.logo{
font-size:22px;
font-weight:bold;
}

.circle{
border:2px solid white;
border-radius:50%;
padding:2px 8px;
margin:0 5px;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-size:15px;
transition:0.3s;
}

nav a:hover{
opacity:0.6;
}


/* HERO VIDEO */

#hero{
position:relative;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:-1;
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
padding:20px;
}

.hero-content h1{
font-size:48px;
margin-bottom:20px;
}

.hero-content p{
font-size:18px;
margin-bottom:30px;
}


/* BUTTON */

.btn-main{
background:transparent;
border:2px solid white;
color:white;
padding:12px 30px;
text-decoration:none;
border-radius:5px;
transition:0.3s;
}

.btn-main:hover{
background:white;
color:black;
}


/* SECTIONS */

.section{
padding:80px 40px;
text-align:center;
}

.section h2{
font-size:32px;
margin-bottom:40px;
}


/* VITRINA */

.showcase-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
max-width:900px;
margin:auto;
}

.showcase-text{
text-align:left;
}

.showcase-image img{
width:100%;
max-width:350px;
border-radius:10px;
box-shadow:0 15px 40px rgba(0,0,0,0.6);
}


/* GALERIE */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.gallery-item{
overflow:hidden;
border-radius:10px;
}

.gallery-item img{
width:100%;
height:auto;
transition:0.4s;
}

.gallery-item:hover img{
transform:scale(1.08);
}


/* KONTAKT */

.dark{
background:#0a0a0a;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
max-width:1000px;
margin:auto;
text-align:left;
}

.contact-box iframe{
width:100%;
height:250px;
border:none;
margin-top:15px;
border-radius:8px;
}

.hours div{
display:flex;
justify-content:space-between;
padding:6px 0;
border-bottom:1px solid #222;
}


/* FOOTER */

footer{
text-align:center;
padding:30px;
border-top:1px solid #111;
}


/* MENU STRANKY */

.menu-page{
max-width:700px;
margin:auto;
text-align:center;
padding-top:120px;
}

.menu-item{
margin-bottom:30px;
}

.menu-item strong{
display:block;
font-size:18px;
margin-bottom:5px;
}

.menu-item p{
font-size:14px;
opacity:0.8;
}

.menu-item span{
font-weight:bold;
}


/* MOBILE */

@media(max-width:900px){

header{
flex-direction:column;
gap:10px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

nav a{
margin:8px;
}

.hero-content h1{
font-size:34px;
}

.showcase-wrapper{
grid-template-columns:1fr;
text-align:center;
}

.contact-wrapper{
grid-template-columns:1fr;
}

}
/* ===== MENU DESIGN ===== */

.menu-section{
max-width:800px;
margin:120px auto 60px auto;
padding:0 20px;
}

.menu-section h2{
text-align:center;
margin:40px 0 20px 0;
font-size:28px;
}

.menu-item{
margin-bottom:25px;
}

.menu-top{
display:flex;
justify-content:space-between;
border-bottom:1px dotted #666;
padding-bottom:6px;
font-size:18px;
}

.menu-desc{
font-size:14px;
opacity:0.8;
margin-top:6px;
line-height:1.5;
max-width:600px;
}
/* ================= MENU CENÍK ================= */

.menu-item{
max-width:800px;
margin:20px auto;
text-align:left;
}

/* řádek s názvem a cenou */

.menu-row{
display:flex;
align-items:center;
gap:10px;
font-size:17px;
}

/* název jídla / nápoje */

.menu-name{
white-space:nowrap;
font-weight:500;
}

/* čára mezi názvem a cenou */

.menu-dots{
flex:1;
border-bottom:1px dotted #666;
margin-top:6px;
}

/* cena */

.menu-price{
white-space:nowrap;
font-weight:600;
}

/* popis */

.menu-desc{
font-size:14px;
opacity:0.8;
margin-top:6px;
line-height:1.4;
max-width:600px;
}

/* kategorie */

.menu-category{
margin-top:50px;
margin-bottom:15px;
font-size:26px;
letter-spacing:2px;
border-bottom:2px solid #222;
padding-bottom:6px;
text-align:left;
}

/* podkategorie */

.sub-category{
margin-top:30px;
margin-bottom:10px;
font-size:18px;
opacity:0.9;
text-align:left;
}

/* poznámky */

.note{
font-size:14px;
opacity:0.7;
margin-bottom:15px;
text-align:left;
}

/* layout nápojového lístku */

.drinks-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
max-width:1200px;
margin:auto;
}

.drinks-left,
.drinks-right{
text-align:left;
}

/* mobil */

@media(max-width:900px){

.drinks-layout{
grid-template-columns:1fr;
gap:40px;
}

.menu-row{
font-size:16px;
}

.menu-category{
font-size:22px;
}


}
.menu-image{
width:100%;
max-width:900px;
display:block;
margin:40px auto;
border-radius:10px;
}
