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

/* ── CSS Variables ── */
:root {
  --color-bg: #ffffff;
  --color-bg-warm: #ffffff;
  --color-surface: #ffffff;
  --color-surface-light: #f5f5f5;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6158;
  --color-accent: #c0392b;
  --color-accent-light: #e74c3c;
  --color-gold: #b8892a;
  --color-gold-light: #a07720;
  --color-ocean: #1e6878;
  --color-ocean-light: #2a8a9e;
  --color-sand: #a08860;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ── */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s;
}

.site-nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--color-accent-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 6px 0;
  transition: 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Social strip */
.social-strip {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-strip a {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  transition: color 0.3s;
}

.social-strip a:hover { color: var(--color-accent); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.0) 30%,
    rgba(0,0,0,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeUp 1.2s ease-out;
}

.hero-logo {
  width: 280px;
  margin: 0 auto 2rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 2.5rem;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.35);
}

.btn-outline {
  background: #ffffff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.25);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-bg);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
}

/* ── Section Shared ── */
section {
  padding: 6rem 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Menu Cards Grid ── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.menu-card {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(192, 57, 43, 0.15);
}

.menu-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.menu-card-body {
  padding: 2rem;
}

.menu-card-img {
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.menu-card-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.menu-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}

.menu-card:hover .menu-card-link {
  gap: 0.8rem;
}

.menu-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

/* Card accent colors */
.menu-card[data-accent="cafe"] .menu-card-accent { background: var(--color-ocean); }
.menu-card[data-accent="breakfast"] .menu-card-accent { background: var(--color-gold); }
.menu-card[data-accent="dinner"] .menu-card-accent { background: var(--color-accent); }
.menu-card[data-accent="cocktails"] .menu-card-accent { background: var(--color-ocean-light); }

/* ── Takeout / Delivery Red Box ── */
.takeout-box {
  background: linear-gradient(135deg, #c0392b 0%, #96281b 100%);
  border-radius: 16px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(192, 57, 43, 0.25);
}

.takeout-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.takeout-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.takeout-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.takeout-phone {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
  margin-bottom: 2rem;
  transition: opacity 0.3s;
}

.takeout-phone:hover {
  opacity: 0.8;
}

.takeout-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.takeout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 4px;
  background: #fff;
  color: #c0392b;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.takeout-btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.callout-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.callout-content p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.callout-phone {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  display: block;
}

.callout-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.callout-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.callout-visual img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ── Gallery ── */
.gallery-section {
  background: var(--color-bg-warm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* ── Testimonials ── */
.testimonials-section {
  background: var(--color-bg);
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #ffffff;
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ── Events CTA ── */
.events-section {
  background: #ffffff;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.events-section .section-subtitle {
  margin: 0 auto 2.5rem;
}

/* ── About / Story ── */
.story-section {
  background: var(--color-bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-img {
  border-radius: 12px;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── Contact Page ── */
.page-header {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

/* Hero-style page header with background image */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 30%,
    rgba(0,0,0,0.4) 100%
  );
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .section-title {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.page-hero .section-label {
  color: rgba(255,255,255,0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: #ffffff;
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  font-size: 1.3rem;
  color: var(--color-accent);
  min-width: 1.5rem;
  text-align: center;
}

.contact-detail-text p {
  color: var(--color-text-muted);
}

.contact-detail-text a {
  color: var(--color-accent);
  transition: color 0.3s;
}

.contact-detail-text a:hover {
  color: var(--color-accent-light);
}

/* Contact form */
.contact-form {
  background: #ffffff;
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #f9f9f9;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Menu Page ── */
.menu-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.menu-page-grid img {
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

.menu-page-grid img:hover {
  transform: scale(1.02);
}

.menu-page-note {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.menu-page-phone {
  text-align: center;
  margin-bottom: 2rem;
}

.menu-page-phone a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.menu-page-phone a:hover {
  color: var(--color-accent-light);
}

/* ── Footer ── */
.site-footer {
  background: #ffffff;
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 45px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--color-accent);
}

/* ── Google Map embed ── */
.map-container {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/6;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Logo Glow: Electric Red ── */
.nav-logo img,
.hero-logo,
.page-hero img {
  animation: electricRed 2s ease-in-out infinite;
}

@keyframes electricRed {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3))
            drop-shadow(0 0 12px rgba(220,50,40,0.4))
            drop-shadow(0 0 25px rgba(220,50,40,0.2));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.7))
            drop-shadow(0 0 25px rgba(220,50,40,0.7))
            drop-shadow(0 0 50px rgba(220,50,40,0.4))
            drop-shadow(0 0 80px rgba(220,50,40,0.15));
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 2rem;
    gap: 1.5rem;
    animation: fadeUp 0.3s ease-out;
  }
  .nav-toggle { display: block; }

  .callout-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-logo { width: 200px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .callout-visual { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }
}
