:root {
  --dark: #1c1a17;
  --gold: #d6b27c;
  --light: #f6f3ee;
  --text: #2f2b26;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

/* ================= HEADER ================= */

header {
  background: linear-gradient(90deg, #1c1a17, #2a261f);
  color: #fff;
  padding: 1.2rem 0;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEN MENU ODKAZY */
.nav nav a {
  color: #fff;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
}

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

/* ================= BRAND / LOGO ================= */

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand img {
  height: 60px;
  display: block;
}

.brand strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  position: relative;
  top: 6px; /* zarovnanie k spodku loga */
}

/* ================= HERO ================= */

.hero {
  position: relative;
  background: 
    linear-gradient(
      rgba(28,26,23,0.65),
      rgba(28,26,23,0.65)
    ),
    url("/img/hero-bg.jpg") center / cover no-repeat;
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}


.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero span {
  color: var(--gold);
}

/* ================= BUTTONS ================= */

.btn {
  display: inline-block;
  margin: .5rem;
  padding: .85rem 1.7rem;
  background: linear-gradient(135deg, #d6b27c, #c9a46a);
  color: #1c1a17;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

/* ================= SECTIONS ================= */

section {
  padding: 3.5rem 0;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

/* ================= CARDS ================= */

.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ================= MENU ================= */

.menu-day {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.menu-week {
  background: #f6f6f6;
  border-left: 4px solid #b22222;
  padding: 0.75rem 1rem;
  margin: 1rem 0 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
}

#open-today {
  color: var(--gold);
}

/* ================= SERVICES ================= */

.services {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: #f7f5f2;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

.service-item h3 {
  margin: 1rem 0 0.5rem;
  color: #1c1a17;
}

.service-item p {
  font-size: 0.95rem;
  color: #555;
}

.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #d6b27c, #c9a46a);
  color: #1c1a17;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
}

/* ================= FOOTER ================= */

.footer {
  background: #1c1a17;
  color: #eee;
  padding: 3rem 1rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer h3,
.footer h4 {
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.footer a {
  color: #eee;
  text-decoration: none;
}

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

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .nav {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .brand strong {
    font-size: 1.2rem;
    top: 4px;
  }
}
