/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-dark:    #210902;
  --color-primary: #111111;
  --color-accent:  #30a0a4;
  --color-accent2: #3079a4;
  --color-cream:   #FFF8E7;
  --color-light:   #f5f5f5;
  --color-white:   #ffffff;
  --color-text:    #919191;
  --color-heading: #111111;
  --font-head:     'Paytone One', sans-serif;
  --font-body:     'Open Sans', sans-serif;
  --font-script:   'Sacramento', cursive;
  --max-w:         1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Language bar ─────────────────────────────────────── */
.lang-bar {
  background: var(--color-cream);
  padding: .4rem 1.5rem;
  border-bottom: 1px solid #e0d8c8;
}

.lang-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: .25rem;
  flex-wrap: wrap;
}

.lang-btn {
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .45rem;
  border-radius: 2px;
  color: var(--color-text);
  border: 1px solid #ccc;
  transition: all .2s;
  text-decoration: none;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--color-cream);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* ── Logo header ──────────────────────────────────────── */
.logo-header {
  background: var(--color-cream);
  padding: 2rem 1.5rem;
  text-align: center;
}

.logo-link { display: inline-block; }

.logo-link img {
  max-height: 140px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.logo-fallback {
  display: none;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--color-heading);
  letter-spacing: .04em;
}

/* ── Navigation ───────────────────────────────────────── */
.main-nav {
  background: var(--color-cream);
  border-top: 1px solid var(--color-heading);
  border-bottom: 1px solid var(--color-heading);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0;
}

.nav-list a {
  display: block;
  padding: .75rem 1.1rem;
  color: var(--color-heading);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}

.nav-list a:hover,
.nav-list a.active {
  border-bottom-color: var(--color-heading);
  color: var(--color-heading);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-heading);
  font-size: 1.5rem;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}

/* ── Slideshow ────────────────────────────────────────── */
.slideshow {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: var(--color-dark);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}

.slide-overlay .btn { pointer-events: auto; }

.slide-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--color-white);
  letter-spacing: .05em;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
  margin-bottom: 1.5rem;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,.35);
  color: var(--color-white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-arrow:hover { background: rgba(0,0,0,.6); }
.slide-prev { left: 1.25rem; }
.slide-next { right: 1.25rem; }

.slide-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .5rem;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s, border-color .2s;
}

.slide-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.btn {
  display: inline-block;
  padding: .5rem 1.4rem;
  background: var(--color-accent);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid var(--color-accent2);
  transition: background .2s, color .2s;
  cursor: pointer;
}

.btn:hover {
  background: var(--color-accent2);
  color: var(--color-cream);
}

.btn-outline {
  background: var(--color-cream);
  color: var(--color-heading);
  border-color: #e6e6e6;
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-cream);
  border-color: var(--color-accent);
}

/* ── Page Sections ────────────────────────────────────── */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: var(--color-white);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-heading);
  margin-bottom: .5rem;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: .75rem auto 0;
  border-radius: 2px;
}

/* ── Tabs ─────────────────────────────────────────────── */
.tabs { margin-bottom: 2rem; }

.tab-nav {
  display: flex;
  gap: .5rem;
  border-bottom: 2px solid #e0dbd0;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: .6rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition: color .2s, border-color .2s;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--color-heading);
  border-bottom-color: var(--color-accent);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Room Cards ───────────────────────────────────────── */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.room-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.09);
  transition: transform .2s, box-shadow .2s;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,.14);
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-heading), #444);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 3rem;
}

.room-card-body {
  padding: 1.25rem;
}

.room-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--color-heading);
  margin-bottom: .4rem;
}

.room-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: .5rem 0 1rem;
}

.room-price small {
  font-size: .8rem;
  font-weight: 400;
  color: var(--color-muted);
}

/* ── Prices Table ─────────────────────────────────────── */
.prices-section { margin-top: 3rem; }

.season-block { margin-bottom: 2.5rem; }

.season-block h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--color-heading);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: .95rem;
}

.price-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: .65rem 1rem;
  text-align: left;
  font-weight: 600;
}

.price-table td {
  padding: .6rem 1rem;
  border-bottom: 1px solid #e8e4da;
}

.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--color-light); }

.price-td-value {
  font-weight: 700;
  color: var(--color-heading);
}

.price-note {
  font-size: .85rem;
  color: var(--color-muted);
  margin-top: .5rem;
  font-style: italic;
}

/* ── Kitchen / Menu Cards ─────────────────────────────── */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.09);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,.14);
}

.menu-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--color-heading), #444);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

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

.menu-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--color-heading);
  margin-bottom: .5rem;
}

.menu-card-body p {
  color: var(--color-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

/* ── Menu Detail (alacarte / pizza / wine) ────────────── */
.menu-category { margin-bottom: 2.5rem; }

.menu-category h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--color-accent);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px dashed #e0dbd0;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-info { flex: 1; }

.menu-item-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}

.menu-item-desc {
  font-size: .875rem;
  color: var(--color-muted);
  margin-top: .2rem;
}

.menu-item-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-accent);
  white-space: nowrap;
}

.menu-extra-note {
  font-size: .85rem;
  color: var(--color-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* ── Event / Area Cards ───────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.09);
  background: var(--color-white);
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,.14);
}

.card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--color-heading), #444);
  background-size: cover;
  background-position: center;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem;
}

.card-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--color-heading);
  margin-bottom: .4rem;
}

.card-body p {
  font-size: .9rem;
  color: var(--color-muted);
}

/* ── Contacts ─────────────────────────────────────────── */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contacts-info dl dt {
  font-weight: 700;
  color: var(--color-heading);
  margin-top: 1rem;
}

.contacts-info dl dd {
  margin: .2rem 0 0 0;
  color: var(--color-muted);
}

.contacts-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 6px;
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: #210902;
  color: var(--color-cream);
  padding: 3rem 1.5rem 0;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,248,231,.1);
}

.footer-logo { height: 140px !important; width: auto !important; max-width: none !important; margin-bottom: 1rem; display: inline-block; filter: brightness(0) invert(1) opacity(.85); }
.footer-tagline { font-size: .875rem; font-style: italic; color: var(--color-cream); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
}

.footer-nav a {
  font-size: .875rem;
  color: var(--color-cream);
  transition: text-decoration .2s;
}

.footer-nav a:hover { text-decoration: underline; }

.footer-social { display: flex; gap: .75rem; align-items: center; justify-content: center; }
.footer-social img { height: 36px; filter: brightness(0) invert(1) opacity(.7); transition: opacity .2s; }
.footer-social img:hover { opacity: 1; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 0;
  font-size: .8rem;
  text-align: center;
  color: rgba(255,248,231,.45);
}

/* ── Page Hero Banner ─────────────────────────────────── */
.page-hero {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
}

.page-hero h1 {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  letter-spacing: .04em;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav-inner { justify-content: flex-end; }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: .5rem 0 1rem;
    border-bottom: 2px solid var(--color-heading);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    z-index: 200;
  }

  .nav-list.open { display: flex; }
  .nav-list a { padding: .65rem 1.5rem; font-size: 1rem; border-bottom: none; }

  .logo-link img { max-height: 80px; }
  .slideshow { height: 320px; }
  .contacts-grid { grid-template-columns: 1fr; }
}
