﻿/* Base */
:root {
  --bg: #f7f9fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --brand: #b91c1c;
  --brand-600: #991b1b;
  --ring: rgba(185,28,28,.25);
  --container: 1140px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 600px at 10% -10%, #fff7ed 0%, rgba(255,255,255,0) 55%),
    radial-gradient(900px 500px at 100% 0%, #fef3c7 0%, rgba(255,255,255,0) 60%),
    var(--bg);
  line-height: 1.6;
}

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* Header & Nav */
.site-header { position: relative; overflow: hidden; }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: .75rem; }
.brand-mark { height: 34px; width: auto; border-radius: 999px; display: inline-block; }
.logo { color: var(--text); text-decoration: none; font-weight: 700; font-size: 1.25rem; letter-spacing: .5px; }
.tagline { color: var(--muted); font-weight: 400; font-size: .95rem; }

.site-nav ul { display: flex; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.site-nav a { color: var(--text); text-decoration: none; padding: .5rem .75rem; border-radius: .5rem; }
.site-nav a:hover { background: rgba(2,6,23,.06); }
.	nav-toggle { display: none; background: transparent; border: 1px solid rgba(2,6,23,.12); color: var(--text); padding: .4rem .6rem; border-radius: .5rem; }

/* Hero */
.hero { padding: 5rem 0 4rem; }
.hero-inner { text-align: center; }
.hero h1 { margin: 0 0 1rem; font-size: clamp(1.8rem, 3.2vw + 1rem, 3rem); line-height: 1.2; }
.hero p { color: var(--muted); margin: 0 auto 1.5rem; max-width: 52ch; }

.cta-group { display: inline-flex; gap: .75rem; flex-wrap: wrap; }
.btn { display: inline-block; text-decoration: none; padding: .8rem 1.1rem; border-radius: .8rem; border: 1px solid transparent; color: var(--text); transition: .2s ease; }
.btn.primary { background: var(--brand); color: #ffffff; box-shadow: 0 0 0 0 rgba(0,0,0,0); }
.btn.primary:hover { background: var(--brand-600); color: #ffffff; box-shadow: 0 0 0 4px var(--ring); }
.btn.ghost { background: transparent; border-color: rgba(148,163,184,.3); }
.btn.ghost:hover { background: rgba(148,163,184,.12); }
.btn.small { padding: .55rem .9rem; border-radius: .6rem; font-size: .95rem; }

/* Sections */
.section { padding: 4rem 0; }
.section h2 { margin: 0 0 .75rem; font-size: clamp(1.4rem, 2.2vw + .5rem, 2.1rem); }
.section-subtitle { color: var(--muted); margin-top: 0; margin-bottom: 2rem; }
.about p { margin: .5rem 0; color: var(--muted); }

.grid { display: grid; gap: 1.25rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
/* Promos */
.promo-card { position: relative; padding: 1rem; border: 1px solid rgba(2,6,23,.08); border-radius: 1rem; background: linear-gradient(180deg, #ffffff, #fafafa); box-shadow: 0 10px 30px rgba(2,6,23,.06); }
.promo-card h3 { margin: .25rem 0 .5rem; }
.promo-card p { margin: 0 0 1rem; color: var(--muted); }
.promo-badge { position: absolute; top: -12px; right: -12px; background: var(--brand); color: #fff; padding: .4rem .6rem; border-radius: .6rem; font-weight: 600; box-shadow: 0 6px 16px rgba(185,28,28,.25); }
.promo-badge.alt { background: #0ea5e9; box-shadow: 0 6px 16px rgba(14,165,233,.25); }

/* Menu */
.tabs { display: inline-flex; gap: .5rem; background: rgba(2,6,23,.04); border: 1px solid rgba(2,6,23,.08); padding: .35rem; border-radius: .75rem; margin-bottom: 1rem; }
.tab { background: transparent; color: var(--text); border: 1px solid transparent; padding: .5rem .9rem; border-radius: .55rem; cursor: pointer; }
.tab.active { background: var(--brand); color: #ffffff; }
.tab-panels { margin-top: .75rem; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.menu-legend { display: flex; align-items: center; gap: .5rem; margin: .25rem 0 1rem; }
.menu-legend .pill { display: inline-flex; align-items: center; gap: .4rem; padding: .25rem .6rem; border-radius: 999px; border: 1px solid rgba(2,6,23,.08); background: rgba(2,6,23,.04); color: var(--text); font-size: .95rem; }
.menu-legend .pill strong { color: var(--brand); }
.menu-legend .pill.alt strong { color: #60a5fa; }
.menu-legend .sep { color: var(--muted); }
.tabs { justify-content: center; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.menu-group { border: 1px solid rgba(255,255,255,.08); border-radius: .75rem; padding: .9rem; background: rgba(255,255,255,.03); }
.menu-group h3 { margin: 0 0 .6rem; font-size: 1.05rem; }
.menu-group ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.menu-group li { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; border-bottom: 1px dashed rgba(255,255,255,.12); padding-bottom: .45rem; }
.menu-group li:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-group li span { color: var(--muted); }
.menu-group li strong { color: var(--text); white-space: nowrap; }

/* Menu photos */
.menu-photos { display: grid; gap: 1rem; justify-items: center; }
.menu-photos img { width: min(100%, 720px); height: auto; border-radius: .75rem; border: 1px solid rgba(2,6,23,.08); background: #ffffff; }
.menu .note { color: var(--muted); margin: .25rem 0 1rem; font-size: .95rem; }

/* Cards */
.card { background: linear-gradient(180deg, rgba(2,6,23,.02), rgba(2,6,23,.01)); border: 1px solid rgba(2,6,23,.08); border-radius: 1rem; overflow: hidden; }
.card-media { height: 180px; background: url('../img/spa1.jpg') center/cover no-repeat, #f1f5f9; }
.card-media.contain { background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #f1f5f9; }
.card-media.alt { background-image: url('../img/spa2.jpg'); }
.card-body { padding: 1rem; }
.card-body h3 { margin: 0 0 .5rem; }
.card-body p { margin: 0 0 1rem; color: var(--muted); }
.card-actions { display: flex; gap: .5rem; }

/* Features */
.feature { padding: 1rem; border: 1px solid rgba(2,6,23,.08); border-radius: 1rem; background: rgba(2,6,23,.02); }
.feature h3 { margin: 0 0 .4rem; }
.feature p { margin: 0; color: var(--muted); }

/* Gallery */
.masonry { display: none; }
.gallery-hero { position: relative; }
.gallery-hero img { width: min(100%, 720px); height: auto; display: block; margin: 0 auto; border-radius: 1rem; border: 1px solid rgba(2,6,23,.08); box-shadow: 0 20px 50px rgba(2,6,23,.12); }
.gallery-slider-wrap { position: relative; margin: 1rem 0; }
.gallery-slider { display: flex; gap: .75rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: .25rem; }
.gallery-slider img { height: 160px; width: auto; border-radius: .75rem; border: 1px solid rgba(2,6,23,.08); scroll-snap-align: start; flex: 0 0 auto; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #ffffff; border: 1px solid rgba(2,6,23,.12); border-radius: .6rem; padding: .3rem .6rem; cursor: pointer; color: var(--text); box-shadow: 0 6px 16px rgba(2,6,23,.12); }
.slider-btn:hover { background: #f8fafc; }
.slider-btn.prev { left: -8px; }
.slider-btn.next { right: -8px; }
.gallery-grid { margin-top: 1rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
.gallery-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: .75rem; border: 1px solid rgba(2,6,23,.08); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-grid img { height: 220px; } }

/* Testimonials */
blockquote { margin: 0; padding: 1rem; border-left: 3px solid var(--brand); background: rgba(255,255,255,.03); border-radius: .5rem; }
blockquote p { margin: 0 0 .5rem; }
blockquote cite { color: var(--muted); font-style: normal; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.25rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1rem 0; }
.contact-list a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; border-radius: .75rem; }
.contact-logo { height: 28px; width: auto; vertical-align: middle; margin-right: .5rem; border-radius: 6px; box-shadow: 0 0 0 1px rgba(2,6,23,.08); }

/* Footer */
.site-footer { padding: 2rem 0; border-top: 1px solid rgba(2,6,23,.08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.back-to-top { color: var(--muted); text-decoration: none; }
.back-to-top:hover { color: var(--text); }

/* Responsive */
@media (max-width: 900px) {
  .grid.two { grid-template-columns: 1fr; }
  .grid.three { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .site-nav ul { display: none; position: absolute; right: 1rem; top: 3.5rem; background: #ffffff; border: 1px solid rgba(2,6,23,.08); border-radius: .75rem; padding: .5rem; width: min(90vw, 320px); box-shadow: 0 10px 30px rgba(2,6,23,.12); }
  .site-nav ul[aria-expanded="true"] { display: grid; }
  .site-nav li { border-bottom: 1px solid rgba(255,255,255,.06); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a { display: block; padding: .75rem; }
}


