/* Paris Crêpes Café — main stylesheet
   Palette matched to the original site: white, black, thin borders,
   with a touch of gold (like the event posters). */
:root {
  --noir: #1c1c1c;
  --black: #000000;
  --gold: #c9a227;
  --bg: #ffffff;
  --bg-alt: #f7f6f4;
  --ink: #1c1c1c;
  --grey: #595959;
  --line: #dcdcdc;
  --white: #ffffff;
}

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

body {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, .brand { font-family: 'Playfair Display', Georgia, serif; }

img { max-width: 100%; display: block; }
a { color: var(--noir); }

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

/* ---------- Top bar ---------- */
.topbar {
  background: var(--noir);
  color: #eaeaea;
  font-size: 0.85rem;
  text-align: center;
  padding: 6px 12px;
}
.topbar a { color: var(--white); text-decoration: none; }

/* ---------- Navigation ---------- */
header.site {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.brand {
  color: var(--noir);
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .5px;
}
.brand span { font-style: italic; }
nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  align-items: center;
}
nav a {
  color: var(--noir);
  text-decoration: none;
  padding: 8px 11px;
  font-size: .95rem;
  letter-spacing: .3px;
}
nav a:hover { color: var(--grey); }
nav a.active { border-bottom: 2px solid var(--noir); }
nav a.btn-reserve {
  border: 1px solid var(--noir);
  padding: 9px 18px;
  margin-left: 10px;
  font-weight: 700;
}
nav a.btn-reserve:hover { background: var(--noir); color: var(--white); }

#nav-toggle { display: none; }
.hamburger { display: none; color: var(--noir); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 860px) {
  .hamburger { display: block; }
  nav { width: 100%; }
  nav ul { display: none; flex-direction: column; width: 100%; padding: 10px 0; }
  #nav-toggle:checked ~ nav ul { display: flex; }
  nav a { display: block; width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(10,10,10,.5), rgba(10,10,10,.5)), url('https://static.wixstatic.com/media/f3375a_6c1131c141ca4281a868a7afa2644bc6~mv2.jpg/v1/fill/w_1600,h_800,al_c,q_85/Homepage.jpg') center/cover no-repeat;
  padding: 70px 20px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 14px; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero p { font-size: 1.2rem; max-width: 640px; margin: 0 auto 26px; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.page-hero {
  background: var(--bg-alt);
  color: var(--noir);
  text-align: center;
  padding: 55px 20px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: var(--grey); max-width: 640px; margin: 10px auto 0; }

/* ---------- Buttons (thin-border style, like the original site) ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  transition: all .15s ease;
}
.btn-primary { background: var(--white); color: var(--noir); border: 1px solid var(--white); }
.btn-primary:hover { background: transparent; color: var(--white); }
.btn-outline { border: 1px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--noir); }
.btn-red { border: 1px solid var(--noir); color: var(--noir); background: transparent; }
.btn-red:hover { background: var(--noir); color: var(--white); }

/* ---------- Sections ---------- */
section.block { padding: 60px 0; }
section.block.alt { background: var(--bg-alt); }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 8px; color: var(--noir); }
.section-sub { text-align: center; color: var(--grey); max-width: 680px; margin: 0 auto 40px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card img { height: 200px; object-fit: cover; width: 100%; }
.card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card h3 { color: var(--noir); margin-bottom: 8px; }
.card p { color: var(--grey); flex: 1; }
.card .body a { margin-top: 16px; align-self: flex-start; }

/* ---------- Menu ---------- */
.menu-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.menu-tabs a {
  padding: 10px 22px;
  border: 1px solid var(--noir);
  text-decoration: none;
  color: var(--noir);
  font-weight: 700;
  letter-spacing: .5px;
}
.menu-tabs a:hover, .menu-tabs a.active { background: var(--noir); color: var(--white); }

.menu-section h2 {
  text-align: center;
  color: var(--noir);
  font-size: 1.7rem;
  margin: 46px 0 6px;
}
.menu-section .note { text-align: center; color: var(--grey); font-style: italic; margin-bottom: 24px; }
.menu-list { max-width: 760px; margin: 0 auto; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 6px;
  border-bottom: 1px dotted var(--line);
}
.menu-item h4 { font-family: 'Lato', sans-serif; font-size: 1.05rem; }
.menu-item p { color: var(--grey); font-size: .92rem; }
.menu-item .price { color: var(--noir); font-weight: 700; white-space: nowrap; }

/* ---------- Specials strip (dark like the event posters) ---------- */
.specials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.special {
  background: var(--noir);
  color: var(--white);
  padding: 34px 24px;
  text-align: center;
  border: 1px solid var(--noir);
}
.special .day { color: var(--gold); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: .85rem; }
.special h3 { font-size: 1.5rem; margin-top: 8px; color: var(--white); }
.special p { color: #cfcfcf; font-size: .92rem; margin-top: 6px; }

/* ---------- Hours & contact ---------- */
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 36px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 4px; border-bottom: 1px dotted var(--line); }
.hours-table td:last-child { text-align: right; color: var(--grey); }
.closed { color: var(--noir) !important; font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.gallery-grid img { width: 100%; height: 230px; object-fit: cover; }

/* ---------- Event ---------- */
.event {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.event img { width: 100%; height: 100%; object-fit: cover; }
.event .body { padding: 28px; }
.event .date { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.event h3 { color: var(--noir); font-size: 1.6rem; margin: 6px 0 12px; }
@media (max-width: 700px) { .event { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta {
  background: var(--noir);
  color: var(--white);
  text-align: center;
  padding: 55px 20px;
}
.cta h2 { font-size: 2rem; margin-bottom: 10px; }
.cta p { color: #d8d8d8; margin-bottom: 24px; }

/* ---------- Footer ---------- */
footer {
  background: #111111;
  color: #b9b9b9;
  padding: 50px 0 30px;
  font-size: .95rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
footer h4 { color: var(--white); margin-bottom: 12px; font-family: 'Playfair Display', serif; }
footer a { color: var(--white); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer ul { list-style: none; }
footer li { margin-bottom: 6px; }
.copyright { text-align: center; margin-top: 36px; padding-top: 18px; border-top: 1px solid #2c2c2c; color: #8a8a8a; font-size: .85rem; }

/* ---------- Misc ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  padding: 4px 14px;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.map-embed { width: 100%; height: 360px; border: 1px solid var(--line); }
