:root{
  --cherry:#A5283A;
  --cream:#F7F1E8;
  --text:#2D2D2D;
}

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

body{
    background:
    radial-gradient(circle at top,#fffdf9 0%,#f8f2e8 45%,#efe4d2 100%);
    color:#2D2D2D;
    font-family:Inter,sans-serif;
    line-height:1.6;
}

header{
    background:#F7F1E8;
    border:none;
    padding:28px 12px;
    margin:0;
}

nav{
    max-width:1400px;
    margin:0 auto;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:34px;
    padding:0px 40px;
}

nav a{
    color:#232323;
    text-decoration:none;
    text-transform:uppercase;
    font-size:18px;
    font-weight:600;
    letter-spacing:0.5px;
    transition:.25s;
    position:relative;
}

nav a:hover{
    color:#A5283A;
}
nav a.active{
    color:#A5283A;
}

nav a.active::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-8px;
    width:26px;
    height:2px;
    background:#A5283A;
    border-radius:2px;
}

.hero{
    background:#F7F1E8;
    padding:70px 40px 90px;
}

.hero-content{
    max-width:1200px;
    min-height:650px;
    margin:0 auto;
    text-align:center;
    position:relative;
}
  
.logo img{
  width:500px;
  max-width:90%;
  display:block;
  margin:0 auto 20px auto;
}
  
h1{
  font-family:'Cormorant Garamond', serif;
  font-size:4rem;
  color:var(--cherry);
}

h2{
  font-family:'Cormorant Garamond', serif;
  font-size:2rem;
  margin-bottom:20px;
}

.hero p{
  max-width:700px;
  margin:20px auto;
}

.buttons{
  margin-top:30px;
}

.buttons a{
    display:inline-block;
    margin:10px;
    padding:14px 28px;
    background:#A5283A;
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.buttons a:hover{
    background:#8d1f30;
    transform:translateY(-2px);
}

.section{
  max-width:1100px;
  margin:auto;
  padding:80px 20px;
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.feature{
  background:white;
  padding:30px;
  border-radius:12px;
  text-align:center;
}

.feature h3{
  color:var(--cherry);
}

.menu-preview{
  background:white;
  border-radius:12px;
  padding:40px;
  text-align:center;
  margin-top:20px;
}

.contact{
  background:white;
  border-radius:12px;
  padding:40px;
}

footer{
  text-align:center;
  background:var(--cherry);
  color:white;
  padding:30px;
  margin-top:60px;
}

@media(max-width:768px){

h1{
  font-size:2.8rem;
}

.logo{
  font-size:600px;
}

}
.menu-preview img{
    width:280px;
    max-width:100%;
    display:block;
    margin:auto;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:0.3s;
    cursor:pointer;
}

.menu-preview img:hover{
    transform:scale(1.02);
}
  .menus{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:35px;
}

.menu-card{
    background:#F3E9DC;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.menu-card h3{
    color:var(--cherry);
    margin-bottom:20px;
    font-family:'Cormorant Garamond', serif;
    font-size:2rem;
}

.menu-card img{
    width:220px;
    border-radius:10px;
    box-shadow:0 8px 18px rgba(0,0,0,.15);
    transition:0.3s;
}

.menu-card img:hover{
    transform:scale(1.05);
}

.menu-card p{
    margin-top:20px;
}

.menu-card p a{
    color:var(--cherry);
    font-weight:bold;
    text-decoration:none;
}
@media (max-width: 768px){

nav{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    gap:18px;

    padding:16px 12px;
}

nav a{
    font-size:16px;
    letter-spacing:0.5px;
    padding:4px 0;
}
}
/* ---------- GALERIE ---------- */

.gallery{
    max-width:1200px;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.gallery img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.3s;
    cursor:pointer;
}

.gallery img:hover{
    transform:scale(1.03);
}
/* ---------- JAZYK ---------- */

.language-switch{
    display:flex;
    align-items:center;
    gap:8px;
    margin-left:25px;
}

.language-switch button{
    border:none;
    background:none;
    padding:0;
    font-family:'Inter', sans-serif;
    font-size:16px;
    color:#2D2D2D;
    cursor:pointer;
}

.language-switch span{
    color:#A5283A;
}

.language-switch button:hover{
    color:#A5283A;
}
 
