/* ============================================
   SELLFISH — Main Stylesheet
   Fine Seafood · New London, CT
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ── Variables ───────────────────────────────── */
:root {
  --bg:       #0A0E14;
  --surface:  #111820;
  --cream:    #FFFFFF;       /* pure white — maximum readability */
  --gold:     #D4A84B;       /* brighter gold — pops on dark bg */
  --muted:    #A8B8BE;       /* lighter muted — easier to read  */
  --body-txt: #E0D8CC;       /* warm off-white — bright & clear  */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Navigation ──────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  background: transparent;
  transition: background 0.4s ease;
}
nav.scrolled { background: var(--surface); }

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/marina-dock.jpg') center 40% / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.55);
}
.hero:hover .hero-bg { transform: scale(1); }

/* Mermaid icon above hero title */
.hero-mermaid {
  width: 110px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  opacity: 0.92;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 600;
  letter-spacing: 16px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 20px;
}
.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.hero-sub {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 48px;
}
.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  transition: all 0.3s;
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--bg);
}

/* ── Brand Strip ─────────────────────────────── */
.brand-strip {
  background: var(--surface);
  text-align: center;
  padding: 60px 24px;
}
.brand-strip h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--cream);
  margin-bottom: 16px;
}
.brand-strip p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Feature Section (Lobster Roll) ─────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.feature-img {
  background: url('../images/restaurant-interior.jpg') center center / cover no-repeat;
  min-height: 560px;
}
.feature-img-lobster {
  background: url('../images/lobster-roll-plate.jpg') center center / cover no-repeat;
}

.feature-content {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.feature-content h3 {
  font-family: var(--font-head);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 20px;
}
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}
.feature-content p {
  font-size: 14px;
  color: var(--body-txt);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 380px;
}
.btn-ghost-gold {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
  transition: all 0.3s;
}
.btn-ghost-gold:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ── Info Bar ────────────────────────────────── */
.info-bar {
  background: var(--surface);
  padding: 22px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.info-bar span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
}
.info-bar .divider {
  color: var(--gold);
  font-size: 16px;
}

/* ── Food Photo Grid ─────────────────────────── */
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: var(--bg);
  padding: 3px;
}
.food-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: default;
  border: 2px solid rgba(212,168,75,0.25);
}
.food-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.food-grid-item:hover img {
  transform: scale(1.07);
}
.food-grid-item .food-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(10,14,20,0.85) 0%, transparent 100%);
  font-family: var(--font-head);
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s ease;
}
.food-grid-item:hover .food-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── Map Section ─────────────────────────────── */
.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.map-info {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}
.map-info h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 20px;
}
.map-info .gold-rule { margin-bottom: 24px; }
.map-info p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--body-txt);
  line-height: 2;
  margin-bottom: 6px;
}
.map-info a {
  color: var(--gold);
  font-weight: 400;
}
.map-info a:hover { text-decoration: underline; }
.map-social-icons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.map-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  text-decoration: none !important;
}
.map-social-icons a:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
  text-decoration: none !important;
}
.map-social-icons svg {
  width: 20px;
  height: 20px;
}
.map-embed {
  min-height: 460px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: none;
  display: block;
  filter: grayscale(0.3) contrast(1.1);
}

/* ── Instagram Strip ─────────────────────────── */
.instagram-strip {
  background: var(--bg);
  padding: 60px 48px;
  text-align: center;
}
.instagram-strip p {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.instagram-grid a {
  display: block;
  aspect-ratio: 1;
  background: var(--surface);
  overflow: hidden;
  transition: opacity 0.3s;
}
.instagram-grid a:hover { opacity: 0.7; }
.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Page Header (inner pages) ───────────────── */
.page-header {
  padding: 160px 48px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(176, 125, 58, 0.3);
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--cream);
  margin-bottom: 16px;
}
.page-header .sub {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Menu Page ───────────────────────────────── */
.menu-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 48px;
}
.menu-section {
  margin-bottom: 80px;
}
.menu-section-title {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 1px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold);
  margin-bottom: 10px;
}
.menu-section-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

/* ── Menu items — table layout guarantees prices always align ── */
.menu-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.menu-item {
  display: table-row;
}
.menu-item:not(:last-child) .item-info,
.menu-item:not(:last-child) .item-price {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.item-info {
  display: table-cell;
  padding: 18px 32px 18px 0;
  width: 100%;
  vertical-align: top;
}
.item-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 5px;
  line-height: 1.25;
}
.item-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--body-txt);
  line-height: 1.75;
}

/* Price cell — fixed width, right-aligned, never wraps */
.item-price {
  display: table-cell;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
  vertical-align: top;
  padding: 20px 0 18px 16px;
  min-width: 80px;
}

.menu-additions {
  margin-top: 20px;
  padding: 16px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(212, 168, 75, 0.06);
}
.menu-additions p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--body-txt);
  font-style: italic;
  line-height: 1.9;
}
.menu-additions p + p { margin-top: 8px; }

/* Pasta builder box */
.pasta-builder {
  background: var(--surface);
  border: 1px solid rgba(212, 168, 75, 0.3);
  padding: 40px 44px;
  margin-bottom: 48px;
}
.pasta-builder h4 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
.pasta-step {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--body-txt);
  line-height: 1.9;
  margin-bottom: 10px;
}
.pasta-step strong {
  color: var(--cream);
  font-weight: 700;
}

/* ── Our Story Page ──────────────────────────── */
.story-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
}
.story-quote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 60px;
  padding: 0 24px;
}
.story-quote::before { content: '\201C'; color: var(--gold); }
.story-quote::after  { content: '\201D'; color: var(--gold); }
.story-text {
  font-size: 15px;
  color: var(--body-txt);
  line-height: 2;
  text-align: left;
  margin-bottom: 28px;
}
.story-photo {
  width: 100%;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
  margin: 60px 0 0;
}

/* ── Reserve Page ────────────────────────────── */
.reserve-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
}
.reserve-wrap h2 {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.reserve-phone {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 4px;
}
.reserve-phone a { color: inherit; }
.reserve-phone a:hover { color: var(--gold); }
.reserve-address {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 60px;
  line-height: 2;
}
.map-wrap {
  width: 100%;
  height: 380px;
  border: 1px solid rgba(176, 125, 58, 0.3);
  overflow: hidden;
  margin-bottom: 60px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) brightness(0.85);
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.social-icons a {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.social-icons a:hover { color: var(--gold); }

/* ── Footer ──────────────────────────────────── */
footer {
  background: var(--surface);
  padding: 40px 48px;
  text-align: center;
  border-top: 1px solid rgba(176, 125, 58, 0.2);
}
.footer-logo-img {
  height: 48px;
  width: auto;
  margin: 0 auto 16px;
  display: block;
  opacity: 0.85;
}
.footer-sub {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: rgba(138, 154, 160, 0.5);
}
.footer-powered {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(212,168,75,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-powered span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.footer-powered a { display: flex; align-items: center; }
.footer-powered img { height: 28px; width: auto; opacity: 0.45; transition: opacity 0.3s; filter: brightness(1.8); }
.footer-powered a:hover img { opacity: 0.9; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; }
  .feature-img { min-height: 360px; }
  .feature-content { padding: 60px 40px; }
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .map-section { grid-template-columns: 1fr; }
  .map-info { padding: 48px 32px; }
  .map-embed { min-height: 320px; }
  .map-embed iframe { min-height: 320px; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bg);
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-size: 18px;
  }
  .nav-toggle { display: flex; }
  .info-bar { flex-direction: column; gap: 12px; }
  .info-bar .divider { display: none; }
  .menu-wrap, .story-wrap, .reserve-wrap { padding: 60px 24px; }
  .page-header { padding: 130px 24px 60px; }
  .feature-content { padding: 48px 24px; }
  .pasta-builder { padding: 28px 24px; }
  .specials-section { padding: 64px 24px; }
  .specials-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(36px, 9vw, 100px); letter-spacing: 6px; }
}

/* ── Interior Photo Section ──────────────────────── */
.interior-section {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  line-height: 0;
  border-top: 3px solid rgba(212,168,75,0.25);
}
.interior-photo {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.5s ease;
}
.interior-section:hover .interior-photo { filter: brightness(1); }
.interior-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 28px;
  background: linear-gradient(to top, rgba(10,14,20,0.75) 0%, transparent 100%);
  text-align: center;
}
.interior-caption {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ── Drinks Menu ─────────────────────────────────── */
.drinks-item .item-premium {
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  margin-top: 5px;
  letter-spacing: 0.3px;
}

/* Wine Table */
.wine-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.wine-header,
.wine-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,168,75,0.08);
}
.wine-header {
  border-bottom: 1px solid rgba(212,168,75,0.25);
  padding-bottom: 8px;
  margin-bottom: 4px;
}
.wine-header .wine-price-col {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.wine-name-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wine-name {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--cream);
  font-weight: 400;
}
.wine-name em {
  font-size: 14px;
  color: var(--muted);
}
.wine-region {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.wine-size {
  font-size: 13px;
  color: var(--muted);
}
.wine-price-col {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gold);
  text-align: center;
  font-weight: 400;
}
.wine-price-col em {
  font-size: 11px;
  color: var(--muted);
  display: block;
  font-style: italic;
}
.house-wines {
  background: rgba(212,168,75,0.06);
  border: 1px solid rgba(212,168,75,0.18);
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 28px;
  text-align: center;
}
.house-wines-title {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.house-wines-list {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ── Daily Specials Section ─────────────────────── */
.specials-section {
  background: var(--surface);
  padding: 80px 48px;
  border-top: 1px solid rgba(212,168,75,0.15);
  border-bottom: 1px solid rgba(212,168,75,0.15);
}
.specials-inner {
  max-width: 1010px;
  margin: 0 auto;
}
.specials-header {
  text-align: center;
  margin-bottom: 48px;
}
.specials-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.specials-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, 480px);
  gap: 24px;
  justify-content: center;
}
.special-card-pub {
  background: var(--bg);
  border: 1px solid rgba(212,168,75,0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.special-card-pub:hover {
  border-color: rgba(212,168,75,0.4);
  transform: translateY(-4px);
}
.special-photo {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 320px;
  overflow: hidden;
}
.special-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.special-card-pub:hover .special-photo img { transform: scale(1.05); }
.special-photo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: rgba(255,255,255,0.03);
}
.special-info-pub {
  padding: 20px 22px 24px;
}
.special-name-pub {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.special-desc-pub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.special-price-pub {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
