/* ==========================================================================
   Restaurace Atlantida — shared stylesheet
   Design language: Atlantida / řecký motiv (vlny, meandr, sloupy)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Mulish:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root{
  /* Barvy — vychází z podkladu bannerů a loga */
  --deep-blue:   #0a3d63;
  --mid-blue:    #135f92;
  --sea-blue:    #2f9bd6;
  --sea-blue-light: #7fc8ea;
  --gold:        #c9a04e;
  --gold-light:  #e6c877;
  --sand:        #f2e6c9;
  --cream:       #fdf9ef;
  --ink:         #0f2c42;
  --ink-soft:    #345067;
  --white:       #ffffff;
  --coral:       #e8654a;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Mulish', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 18px 40px -18px rgba(10, 61, 99, 0.35);
  --shadow-card: 0 10px 24px -12px rgba(10, 61, 99, 0.28);

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--deep-blue);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 700;
}
p{ margin: 0 0 1em; }
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section{ position: relative; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------------------------------------------------------------- */
/* Decorative motifs                                                 */
/* ---------------------------------------------------------------- */

.meander{
  height: 14px;
  width: 100%;
  background-image: url('../assets/greek-key.svg');
  background-repeat: repeat-x;
  background-size: 28px 14px;
  color: var(--gold);
}
.meander--light{ color: var(--sand); }
.meander--deep{ color: var(--deep-blue); }

.wave-divider{
  display: block;
  width: 100%;
  height: 60px;
  color: var(--cream);
  line-height: 0;
}
.wave-divider svg{ width: 100%; height: 100%; display: block; }
.wave-divider--flip{ transform: scaleY(-1); }

.columns-deco{
  position: absolute;
  bottom: 0;
  width: 90px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.columns-deco svg{ width: 100%; }
.columns-deco.left{ left: 12px; }
.columns-deco.right{ right: 12px; }

/* ---------------------------------------------------------------- */
/* Buttons                                                           */
/* ---------------------------------------------------------------- */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--deep-blue);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover{ box-shadow: 0 16px 30px -12px rgba(201,160,78,.55); }
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline:hover{ background: rgba(255,255,255,.12); }
.btn-outline-dark{
  background: transparent;
  border-color: var(--deep-blue);
  color: var(--deep-blue);
}
.btn-outline-dark:hover{ background: rgba(10,61,99,.08); }

/* ---------------------------------------------------------------- */
/* Header / Navigation                                               */
/* ---------------------------------------------------------------- */

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--deep-blue), var(--mid-blue));
  box-shadow: 0 4px 18px -8px rgba(0,0,0,.35);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand img{ height: 52px; width: auto; }
.brand-text{ font-family: var(--font-display); line-height: 1.1; }
.brand-text .brand-name{ font-size: 1.15rem; font-weight: 800; letter-spacing: .5px; color: var(--white); }
.brand-text .brand-tag{ display:block; font-family: var(--font-body); font-size: .72rem; font-weight: 600; color: var(--sea-blue-light); text-transform: uppercase; letter-spacing: 1px; }

.main-nav ul{ display: flex; gap: 4px; align-items: center; }
.main-nav a{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{
  background: rgba(255,255,255,.14);
  color: var(--gold-light);
}
.main-nav .nav-cta{
  background: var(--gold);
  color: var(--deep-blue);
  margin-left: 6px;
}
.main-nav .nav-cta:hover{ background: var(--gold-light); color: var(--deep-blue); }

.nav-toggle{
  display: none;
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}

@media (max-width: 880px){
  .nav-toggle{ display: inline-flex; }
  .main-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--deep-blue);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open{ max-height: 480px; }
  .main-nav ul{ flex-direction: column; align-items: stretch; padding: 10px 24px 20px; gap: 2px; }
  .main-nav a{ display: block; padding: 12px 16px; }
  .main-nav .nav-cta{ margin: 8px 0 0; text-align: center; }
}

/* ---------------------------------------------------------------- */
/* Hero                                                               */
/* ---------------------------------------------------------------- */

.hero{
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% 0%, var(--sea-blue) 0%, var(--mid-blue) 45%, var(--deep-blue) 100%);
  color: var(--white);
  padding: 72px 0 110px;
}
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .12;
  pointer-events: none;
}
.hero-inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--gold-light);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1{
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: .3em;
}
.hero h1 span{ color: var(--gold-light); }
.hero-sub{
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 46ch;
  margin-bottom: 1.6em;
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art{
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art .plate{
  width: min(360px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sand);
  border: 10px solid var(--white);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-art .plate img{ width: 78%; border-radius: 50%; object-fit: cover; aspect-ratio: 1; }
.hero-art .badge{
  position: absolute;
  background: var(--gold);
  color: var(--deep-blue);
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  line-height: 1.1;
}
.hero-art .badge.b1{ width: 108px; height: 108px; font-size: .85rem; top: -6px; right: 6px; transform: rotate(-8deg); }
.hero-art .badge.b2{ width: 90px; height: 90px; font-size: .72rem; bottom: 8px; left: -14px; transform: rotate(6deg); background: var(--white); color: var(--deep-blue); border: 3px solid var(--gold); }

.hero-strip{ position: absolute; left: 0; right: 0; bottom: 0; }

@media (max-width: 880px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; }
}

/* ---------------------------------------------------------------- */
/* Feature strip (denní menu / zmrzlina / pivo / truck)              */
/* ---------------------------------------------------------------- */

.feature-strip{
  background: var(--cream);
  padding: 70px 0 40px;
}
.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.feature-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10,61,99,.06);
  position: relative;
  overflow: hidden;
}
.feature-card::after{
  content:"";
  position: absolute; left: 0; right: 0; top: 0; height: 5px;
  background: linear-gradient(90deg, var(--sea-blue), var(--gold));
}
.feature-card .icon{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--deep-blue);
}
.feature-card h3{ font-size: 1.15rem; margin-bottom: .35em; }
.feature-card p{ color: var(--ink-soft); font-size: .95rem; margin-bottom: 0; }
.feature-card .tag{
  display: inline-block;
  margin-top: 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--coral);
}

@media (max-width: 980px){ .feature-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .feature-grid{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- */
/* Section headers                                                   */
/* ---------------------------------------------------------------- */

.section-head{ text-align: center; max-width: 640px; margin: 0 auto 10px; }
.section-eyebrow{
  display: inline-block;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--coral);
  margin-bottom: 10px;
}
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p{ color: var(--ink-soft); }
.section-head.light h2, .section-head.light .section-eyebrow{ color: var(--white); }
.section-head.light p{ color: rgba(255,255,255,.85); }

/* ---------------------------------------------------------------- */
/* Events (oslavy / večírky / smuteční hostiny)                      */
/* ---------------------------------------------------------------- */

.events{
  background: linear-gradient(180deg, var(--deep-blue), var(--mid-blue));
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.events-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.event-card{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  backdrop-filter: blur(2px);
}
.event-card h3{ color: var(--gold-light); font-size: 1.25rem; }
.event-card p{ color: rgba(255,255,255,.85); font-size: .95rem; }
.event-card .icon{ font-size: 1.8rem; margin-bottom: 14px; display:block; }

@media (max-width: 880px){ .events-grid{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- */
/* Gallery / cards general                                           */
/* ---------------------------------------------------------------- */

.info-strip{
  background: var(--sand);
  padding: 22px 0;
}
.info-strip ul{ display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; font-weight: 700; color: var(--deep-blue); }
.info-strip li{ display: flex; align-items: center; gap: 8px; font-size: .95rem; }

.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.photo-card{
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.photo-card img{ height: 210px; width: 100%; object-fit: cover; }
.photo-card .cap{ padding: 14px 16px; font-weight: 700; color: var(--deep-blue); }

@media (max-width: 880px){ .card-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .card-grid{ grid-template-columns: 1fr; } }

/* Photo placeholder (k nahrazení vlastními fotografiemi) */
.photo-placeholder{
  height: 100%;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: repeating-linear-gradient(135deg, var(--sand), var(--sand) 14px, #ecdcb2 14px, #ecdcb2 28px);
  color: var(--deep-blue);
  text-align: center;
  padding: 20px;
}
.photo-placeholder .ph-icon{ font-size: 1.8rem; }
.photo-placeholder span{ font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; opacity: .75; max-width: 20ch; }

/* ---------------------------------------------------------------- */
/* Page hero (inner pages)                                           */
/* ---------------------------------------------------------------- */

.page-hero{
  background: linear-gradient(135deg, var(--mid-blue), var(--deep-blue));
  color: var(--white);
  padding: 56px 0 78px;
  position: relative;
  overflow: hidden;
}
.page-hero h1{ color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: .25em; }
.page-hero p{ color: rgba(255,255,255,.85); max-width: 60ch; }
.breadcrumb{ font-size: .85rem; color: var(--gold-light); font-weight: 700; margin-bottom: 14px; }
.breadcrumb a{ color: rgba(255,255,255,.75); }
.breadcrumb a:hover{ color: var(--white); }

/* ---------------------------------------------------------------- */
/* Content blocks (O nás, placeholders)                              */
/* ---------------------------------------------------------------- */

.content-block{ padding: 70px 0; }
.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.placeholder-box{
  border: 2px dashed var(--sea-blue);
  background: rgba(47,155,214,.06);
  border-radius: var(--radius-md);
  padding: 26px;
  color: var(--ink-soft);
}
.placeholder-box strong{ color: var(--deep-blue); display:block; margin-bottom:6px; }
.frame-photo{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 8px solid var(--white);
}
.frame-photo img{ width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 880px){ .two-col{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- */
/* Menu (jídelní lístek)                                             */
/* ---------------------------------------------------------------- */

.menu-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 40px 0 10px;
}
.menu-tab{
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--sea-blue);
  color: var(--deep-blue);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  background: var(--white);
  transition: all .2s ease;
}
.menu-tab:hover{ background: rgba(47,155,214,.1); }
.menu-tab.active{ background: var(--deep-blue); border-color: var(--deep-blue); color: var(--white); }

.menu-category{ display: none; padding-top: 30px; }
.menu-category.active{ display: block; }
.menu-category h3{
  font-size: 1.3rem;
  border-bottom: 2px solid var(--sand);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-item{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(10,61,99,.15);
}
.menu-item:last-child{ border-bottom: none; }
.menu-item-name{ font-weight: 700; color: var(--deep-blue); }
.menu-item-desc{ font-size: .88rem; color: var(--ink-soft); margin-top: 2px; }
.menu-item-price{ font-family: var(--font-display); font-weight: 700; color: var(--coral); white-space: nowrap; }
.menu-note{
  text-align:center;
  margin-top: 34px;
  font-size: .88rem;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- */
/* Denní menu (menicka.cz)                                           */
/* ---------------------------------------------------------------- */

.menicka-embed{
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 6px;
  border: 1px solid rgba(10,61,99,.08);
}
.menicka-embed iframe{
  width: 100%;
  min-height: 820px;
  border: 0;
  border-radius: 12px;
  display: block;
}
.setup-note{
  background: var(--sand);
  border-left: 5px solid var(--gold);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: .92rem;
  color: var(--ink-soft);
  margin-top: 24px;
}
.setup-note code{
  background: rgba(10,61,99,.08);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: .85em;
}

/* ---------------------------------------------------------------- */
/* Contact page                                                      */
/* ---------------------------------------------------------------- */

.contact-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.contact-card{
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 30px 28px;
}
.contact-card h3{ font-size: 1.2rem; }
.contact-list{ margin-top: 14px; }
.contact-list li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(10,61,99,.08);
}
.contact-list li:last-child{ border-bottom: none; }
.contact-list .ico{ color: var(--sea-blue); font-size: 1.2rem; width: 22px; text-align:center; }
.contact-list b{ display:block; color: var(--deep-blue); }
.map-frame{
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10,61,99,.08);
}
.map-frame iframe{ width: 100%; height: 420px; border: 0; display: block; }

.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full{ grid-column: 1 / -1; }
.form-grid label{ display:block; font-weight: 700; font-size: .85rem; color: var(--deep-blue); margin-bottom: 6px; }
.form-grid input, .form-grid select, .form-grid textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(10,61,99,.18);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream);
}
.form-grid textarea{ min-height: 110px; resize: vertical; }

@media (max-width: 880px){
  .contact-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- */
/* Opening hours table                                                */
/* ---------------------------------------------------------------- */

.hours-table{ width: 100%; border-collapse: collapse; }
.hours-table td{ padding: 9px 0; border-bottom: 1px solid rgba(10,61,99,.08); font-size: .95rem; }
.hours-table td:last-child{ text-align: right; font-weight: 700; color: var(--deep-blue); }

/* ---------------------------------------------------------------- */
/* CTA band                                                           */
/* ---------------------------------------------------------------- */

.cta-band{
  background: linear-gradient(120deg, var(--coral), var(--gold));
  color: var(--white);
  padding: 54px 0;
  text-align: center;
}
.cta-band h2{ color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band p{ color: rgba(255,255,255,.92); margin-bottom: 1.4em; }

/* ---------------------------------------------------------------- */
/* Footer                                                             */
/* ---------------------------------------------------------------- */

.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 54px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 34px;
}
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img{ height: 44px; }
.footer-brand span{ font-family: var(--font-display); font-weight: 800; color: var(--white); font-size: 1.1rem; }
.site-footer h4{ color: var(--gold-light); font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.site-footer li{ margin-bottom: 9px; font-size: .92rem; }
.site-footer a:hover{ color: var(--white); }
.footer-bottom{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

@media (max-width: 880px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- */
/* Skip link                                                          */
/* ---------------------------------------------------------------- */
.skip-link{
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--gold);
  color: var(--deep-blue);
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus{ left: 0; top: 0; }

/* Reveal-on-scroll (subtle) */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }
