/*
Theme Name: Afrokoli Phase 1
Theme URI: https://example.local/afrokoli
Author: Afrokoli local build
Description: A clean, modern, and inviting Phase 1 WordPress theme for Afrokoli.
Version: 2.2.0
License: GPL-2.0-or-later
Text Domain: afrokoli-phase1
*/

:root {
  --bg-dark: #faf8f5; /* Warm, inviting paper-cream */
  --bg-card: #ffffff; /* Pure white card background */
  --bg-card-hover: #ffffff;
  --ink: #2e2a28; /* Deep rich espresso dark brown */
  --muted: #685f5c; /* Soft clay grey-brown */
  --primary-accent: #c86a4b; /* Warm terracotta clay orange */
  --secondary-accent: #5c7c64; /* Soft muted sage green */
  --highlight-gold: #d4944b; /* Warm golden honey yellow */
  --earth-dark: #2a2523; /* Dark warm brown footer background */
  --border: rgba(46, 42, 40, 0.08);
  --border-hover: rgba(200, 106, 75, 0.25);
  --shadow: 0 8px 24px rgba(46, 42, 40, 0.03);
  --shadow-hover: 0 16px 36px rgba(200, 106, 75, 0.08);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { 
  box-sizing: border-box; 
  border-radius: 0 !important; 
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { 
  color: var(--primary-accent); 
  text-decoration: none; 
  transition: var(--transition);
}
a:hover { 
  color: var(--secondary-accent); 
}

img { 
  max-width: 100%; 
  height: auto; 
}

.container { 
  width: min(1200px, calc(100% - 40px)); 
  margin-inline: auto; 
}

h1, h2, h3, h4, h5, h6, .brand, .button, .menu a, .kicker, .lunch-day-title {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Header & Navigation */
.site-header {
  background: rgba(250, 248, 245, 0.95);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.lang-link {
  color: var(--ink);
  opacity: 0.5;
  transition: var(--transition);
}
.lang-link:hover, .lang-link.active {
  color: var(--primary-accent);
  opacity: 1;
}
.lang-divider {
  color: var(--muted);
  opacity: 0.3;
}
.brand { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  color: var(--primary-accent); 
  text-decoration: none; 
  font-weight: 800; 
  font-size: 1.45rem; 
  letter-spacing: -0.02em;
}
.brand img { 
  width: 90px;
  height: 90px; 
  object-fit: contain; 
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(46, 42, 40, 0.04));
}
.brand:hover img {
  transform: scale(1.05);
}
.menu { 
  list-style: none; 
  display: flex; 
  align-items: center; 
  gap: 24px; 
  margin: 0; 
  padding: 0; 
  flex-wrap: wrap; 
}
.menu a { 
  text-decoration: none; 
  color: var(--ink); 
  font-weight: 600; 
  font-size: 0.98rem; 
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.menu a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-accent);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}
.menu a:hover { 
  color: var(--primary-accent); 
}
.menu a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Active Highlight Styling for Header Sections */
.menu .current-menu-item a,
.menu .current_page_item a {
  color: var(--primary-accent) !important;
}
.menu .current-menu-item a::after,
.menu .current_page_item a::after {
  transform: scaleX(1) !important;
  transform-origin: bottom left !important;
  background-color: var(--primary-accent) !important;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  position: relative;
}
.hero-grid { 
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: 60px; 
  align-items: center; 
}
.kicker { 
  color: var(--highlight-gold); 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  font-size: 0.85rem; 
  margin-bottom: 8px;
}
h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  line-height: 1.1; 
  letter-spacing: -0.02em; 
  margin: 12px 0 20px; 
  color: var(--ink);
  font-weight: 800;
}
.hero p { 
  font-size: clamp(1.05rem, 2vw, 1.15rem); 
  color: var(--muted); 
  max-width: 640px; 
  margin-bottom: 35px;
}
.actions { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
}

.button { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  padding: 12px 28px; 
  font-weight: 700; 
  text-decoration: none; 
  border: 2px solid var(--primary-accent); 
  font-size: 0.95rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.button.primary { 
  color: #ffffff; 
  background: var(--primary-accent); 
  box-shadow: 0 4px 12px rgba(200, 106, 75, 0.15);
}
.button.primary:hover { 
  background: var(--secondary-accent); 
  border-color: var(--secondary-accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 124, 100, 0.2);
}
.button.secondary { 
  color: var(--primary-accent); 
  background: transparent; 
}
.button.secondary:hover { 
  background: rgba(200, 106, 75, 0.04); 
  color: var(--secondary-accent);
  border-color: var(--secondary-accent);
  transform: translateY(-2px);
}

.hero-card { 
  background: var(--bg-card); 
  padding: 12px; 
  box-shadow: var(--shadow); 
  border: 1px solid var(--border); 
  transition: var(--transition);
}
.hero-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.hero-image-container {
  position: relative;
}
.hero-stock-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.logo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 10px;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(46, 42, 40, 0.08);
}
.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Generic Section Styles */
.section { 
  padding: 80px 0; 
}
.section.alt { 
  background: rgba(46, 42, 40, 0.02); 
  border-block: 1px solid var(--border); 
}
.section-title { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  max-width: 720px; 
  margin-bottom: 50px; 
}
h2 { 
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  line-height: 1.2; 
  margin: 0; 
  color: var(--primary-accent);
  letter-spacing: -0.02em; 
  font-weight: 700;
}
.section-title p { 
  color: var(--muted); 
  margin: 0; 
  font-size: 1.05rem; 
}

/* Cards Grid */
.cards { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 28px; 
  max-width: 800px;
  margin-inline: auto;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}
.card-link:hover {
  text-decoration: none;
}
.card-link:hover .card {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.card { 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  padding: 32px; 
  box-shadow: var(--shadow); 
  transition: var(--transition);
  height: 100%;
}
.card h3 { 
  margin: 0 0 14px; 
  color: var(--primary-accent); 
  font-size: 1.35rem; 
  font-weight: 700;
}
.card p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Band CTA Section */
.band { 
  background: #ffffff; 
  color: var(--ink); 
  padding: 48px; 
  display: grid; 
  grid-template-columns: 1.25fr 0.75fr; 
  gap: 32px; 
  align-items: center; 
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.band h2 { 
  color: var(--ink);
  margin-bottom: 0; 
}
.band p { 
  margin: 12px 0 0; 
  color: var(--muted); 
  font-size: 1.05rem;
}
.band .button { 
  border-color: var(--primary-accent); 
  color: #ffffff; 
  background: var(--primary-accent);
  justify-self: end;
  box-shadow: 0 4px 12px rgba(200, 106, 75, 0.15);
}
.band .button:hover {
  background: var(--secondary-accent);
  border-color: var(--secondary-accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 124, 100, 0.2);
}

/* Standard Page Design */
.page-main { 
  padding: 80px 0; 
}
.page-card { 
  background: var(--bg-card); 
  padding: min(8vw, 64px); 
  border: 1px solid var(--border); 
  box-shadow: var(--shadow); 
}
.page-hero-image {
  margin-top: calc(-1 * min(8vw, 64px));
  margin-left: calc(-1 * min(8vw, 64px));
  margin-right: calc(-1 * min(8vw, 64px));
  margin-bottom: min(8vw, 64px);
  width: calc(100% + 2 * min(8vw, 64px));
  max-width: calc(100% + 2 * min(8vw, 64px));
  height: 400px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.page-card:hover .page-hero-image img {
  transform: scale(1.02);
}
.page-card h1 { 
  font-size: clamp(2.25rem, 5vw, 3.25rem); 
  margin-top: 0;
  color: var(--ink);
}
.page-card h2 { 
  margin-top: 40px; 
  margin-bottom: 16px;
  color: var(--primary-accent);
}
.page-card p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* Contact Styles */
.contact-card { 
  padding: 32px; 
  background: rgba(46, 42, 40, 0.02); 
  border: 1px solid var(--border); 
  margin: 30px 0;
}
.contact-card p {
  margin-bottom: 12px;
}
.contact-card p:last-child {
  margin-bottom: 0;
}
.contact-card strong {
  color: var(--primary-accent);
}

/* Footer Section */
.site-footer { 
  background: var(--earth-dark); 
  color: #ffffff; 
  padding: 56px 0; 
  margin-top: 80px; 
  border-top: 4px solid var(--primary-accent);
}
.footer-grid { 
  display: grid; 
  grid-template-columns: 1.2fr 0.8fr; 
  align-items: center; 
  gap: 30px; 
}
.site-footer strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #ffffff;
}
.site-footer a { 
  color: #ffffff; 
  text-decoration: underline; 
}
.site-footer a:hover { 
  color: var(--primary-accent); 
}
.small { 
  font-size: 0.95rem; 
  color: #a29792; 
}

/* Responsive Styles */
@media (max-width: 960px) {
  .hero-grid, .band, .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  .band .button {
    justify-self: start;
  }
  .cards { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 680px) {
  .cards { 
    grid-template-columns: 1fr; 
  }
  .brand img { 
    width: 60px;
    height: 60px;
  }
  .hero-stock-image { 
    height: 300px; 
  }
  .logo-badge {
    width: 80px;
    height: 80px;
    bottom: -15px;
    right: -15px;
  }
  .page-hero-image {
    height: 240px;
  }
}

/* Menu Grid & Items */
.cafe-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}
.cafe-menu-item {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 24px;
  transition: var(--transition);
}
.cafe-menu-item:hover {
  border-color: var(--primary-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.cafe-menu-item strong {
  font-family: 'Playfair Display', serif;
  color: var(--primary-accent);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 8px;
}
.cafe-menu-item h3 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 700;
}
.cafe-menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Calendar Dashboard */
.calendar-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 32px;
  margin: 40px 0;
  box-shadow: var(--shadow);
}
.calendar-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.calendar-month {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-accent);
}
.calendar-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.calendar-day-label {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  text-align: center;
}
.calendar-day {
  background: rgba(46, 42, 40, 0.02);
  border: 1px solid var(--border);
  min-height: 90px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: var(--transition);
}
.calendar-day.empty {
  background: transparent;
  border: none;
  pointer-events: none;
}
.calendar-day:not(.empty):hover {
  background: #ffffff;
  border-color: var(--primary-accent);
  box-shadow: 0 4px 15px rgba(200, 106, 75, 0.05);
}
.day-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.event-title {
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: left;
  padding: 4px 8px;
  width: 100%;
  display: block;
  margin-top: 8px;
  font-weight: 700;
}
.ev-red .event-title {
  background: rgba(200, 106, 75, 0.06);
  color: var(--primary-accent);
  border-left: 3px solid var(--primary-accent);
}
.ev-gold .event-title {
  background: rgba(212, 148, 75, 0.08);
  color: #b3732d;
  border-left: 3px solid var(--highlight-gold);
}
.ev-green .event-title {
  background: rgba(92, 124, 100, 0.06);
  color: var(--secondary-accent);
  border-left: 3px solid var(--secondary-accent);
}
.ev-blue .event-title {
  background: rgba(46, 42, 40, 0.04);
  color: #4a4542;
  border-left: 3px solid #7a726e;
}

@media (max-width: 900px) {
  .calendar-grid {
    gap: 6px;
  }
  .calendar-day {
    min-height: 75px;
    padding: 8px;
  }
  .event-title {
    font-size: 0.65rem;
    padding: 2px 4px;
    margin-top: 4px;
  }
}

@media (max-width: 600px) {
  .calendar-card {
    padding: 16px;
  }
  .calendar-grid {
    gap: 4px;
  }
  .calendar-day {
    min-height: 55px;
    padding: 4px;
  }
  .day-number {
    font-size: 0.85rem;
  }
  .event-title {
    display: none;
  }
  .calendar-day.has-event {
    box-shadow: inset 0 0 10px rgba(200, 106, 75, 0.05);
  }
  .calendar-day.ev-red { border-color: var(--primary-accent); }
  .calendar-day.ev-gold { border-color: var(--highlight-gold); }
  .calendar-day.ev-green { border-color: var(--secondary-accent); }
  .calendar-day.ev-blue { border-color: var(--border); }
}

/* Map Embed Container Styles */
.map-embed-container {
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 30px 0;
  line-height: 0;
}
.map-embed-container iframe {
  width: 100%;
  max-width: 100%;
  height: 450px;
  display: block;
  border: 0;
}

/* List Spacing in Page Content */
.page-content ul, .page-content ol {
  padding-left: 24px;
  margin-bottom: 28px;
}
.page-content li {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
}
.page-content li strong {
  color: var(--ink);
}

/* Weekly Lunch Menu Layout & Spacing */
.lunch-day-section {
  padding: 30px 0;
  border-bottom: 1px dashed var(--border);
  transition: var(--transition);
}
.lunch-day-section:hover {
  background: rgba(46, 42, 40, 0.02);
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  margin-right: -15px;
}
.lunch-day-title {
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 4px 0;
  font-weight: 700;
}
.lunch-day-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 600;
}
.lunch-category-block {
  margin-bottom: 20px;
}
.lunch-category-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary-accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.lunch-item-details-wrap {
  margin-bottom: 12px;
}
.lunch-item-details-wrap:last-child {
  margin-bottom: 0;
}
.lunch-item-details-wrap[open] .lunch-item-row {
  background: #ffffff;
  border-bottom: 1px solid transparent;
}
.lunch-item-details-wrap[open] .chevron-down {
  transform: rotate(-135deg) translateY(-2px);
  border-color: var(--primary-accent);
  opacity: 1;
}
summary.lunch-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 16px;
  background: rgba(46, 42, 40, 0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  outline: none;
  user-select: none;
  list-style: none !important;
}
summary.lunch-item-row::-webkit-details-marker {
  display: none !important;
}
summary.lunch-item-row:hover {
  background: #ffffff;
  border-color: var(--primary-accent);
  box-shadow: 0 4px 12px rgba(46, 42, 40, 0.03);
}
.lunch-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.lunch-item-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
}
.lunch-item-diets {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}
.lunch-item-action {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-tag-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--primary-accent);
  padding: 6px 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.chevron-down {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  margin-left: 4px;
  opacity: 0.5;
  transition: var(--transition);
}
summary.lunch-item-row:hover .chevron-down {
  transform: rotate(45deg) translateY(2px);
  border-color: var(--primary-accent);
  opacity: 1;
}
.lunch-item-details {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: none;
  padding: 16px 20px;
  text-align: left;
  animation: slideDown 0.25s ease-out;
}
.lunch-item-details p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lunch-price-row {
  margin-top: 15px;
  padding: 14px 16px;
  background: rgba(92, 124, 100, 0.04);
  border-left: 4px solid var(--secondary-accent);
  font-size: 1.05rem;
  color: var(--ink);
}
.lunch-price-row strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--secondary-accent);
  margin-left: 6px;
}

.menu-item-price {
  color: var(--primary-accent);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  float: right;
  font-size: 1.1rem;
}

/* 3-Column Footer Layout */
.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-column h3 {
  color: var(--primary-accent);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 18px;
}
.footer-column p {
  color: #d2c8c4;
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-column strong {
  color: #ffffff;
  font-family: inherit;
  font-size: inherit;
}
.footer-map-container {
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 12px;
  line-height: 0;
}
.footer-social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-social-links a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-links a:hover {
    background: var(--primary-accent);
    color: #ffffff;
    transform: translateY(-2px);
  }

.footer-note {
  margin: 12px 0 0;
  color: #d3cbc8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column-left {
  text-align: left;
}
@media (min-width: 961px) {
  .footer-column-center {
    text-align: center;
  }
  .footer-column-center .footer-social-links {
    justify-content: center;
  }
  .footer-column-right {
    text-align: right;
  }
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(46, 42, 40, 0.85));
  color: #ffffff;
  padding: 20px 16px 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gallery-caption span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Menu Toggle button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 100;
  padding: 0;
}
.hamburger-line {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--ink);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
.hamburger-line:nth-child(1) {
  top: 2px;
}
.hamburger-line:nth-child(2) {
  top: 11px;
}
.hamburger-line:nth-child(3) {
  top: 20px;
}

body.menu-open .hamburger-line:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
body.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
  left: -60px;
}
body.menu-open .hamburger-line:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

/* Desktop styles (min-width: 769px) */
@media (min-width: 769px) {
  .nav-menu-container {
    display: block !important;
  }
}

/* Tablet & Mobile styles (max-width: 768px) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .header-right {
    gap: 20px;
  }
  
  .nav-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(46, 42, 40, 0.08);
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 20px 0;
    z-index: 99;
  }
  
  body.menu-open .nav-menu-container {
    display: block;
  }
  
  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
  }
  
  .menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
  }
  
  .menu li:last-child a {
    border-bottom: none;
  }
  
  body.menu-open {
    overflow: hidden; /* Prevent background scroll when menu is open */
  }
}

/* Mobile responsive fixes for tables and large frames */
.tablepress {
  width: 100% !important;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
iframe {
  max-width: 100%;
}

/* ==========================================================================
   Home Page Carousel Styles
   ========================================================================== */
.carousel-container {
  position: relative;
  height: clamp(320px, 50vw, 550px);
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-top: 30px;
  background: #1a1615;
}
.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-slide::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.4) contrast(0.9);
  z-index: 1;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}
.carousel-slide img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: 2;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(46, 42, 40, 0.95) 0%, rgba(46, 42, 40, 0.5) 70%, transparent 100%);
  color: #ffffff;
  padding: 40px 24px 24px;
  z-index: 3;
  transition: transform 0.4s ease, opacity 0.4s ease;
  text-align: left;
}
.carousel-caption span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(46, 42, 40, 0.2);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 248, 245, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  outline: none;
}
.carousel-arrow:hover {
  background: var(--primary-accent);
  color: #ffffff;
  border-color: var(--primary-accent);
  box-shadow: 0 4px 15px rgba(200, 106, 75, 0.25);
}
.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.carousel-dot.active {
  background: var(--primary-accent);
  transform: scale(1.15);
}

/* ==========================================================================
   Opening Announcement Banner
   ========================================================================== */
.opening-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 148, 75, 0.08);
  border-left: 4px solid var(--highlight-gold);
  padding: 10px 18px;
  margin-bottom: 24px;
}
.opening-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-accent);
  display: inline-block;
  animation: pulse 2s infinite ease-in-out;
}
.opening-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

@keyframes pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(200, 106, 75, 0.7);
  }
  70% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(200, 106, 75, 0);
  }
  100% {
    transform: scale(0.85);
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(200, 106, 75, 0);
  }
}

/* ==========================================================================
   News & Blog Archive Section
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 40px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.news-card-image {
  height: 260px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: rgba(46, 42, 40, 0.02);
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.news-card:hover .news-card-image img {
  transform: scale(1.06);
}
.news-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-card-meta {
  margin-bottom: 12px;
}
.news-date {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-accent);
}
.news-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.35;
  margin: 0 0 16px 0;
  font-weight: 700;
}
.news-card-title a {
  color: var(--ink);
  transition: var(--transition);
}
.news-card-title a:hover {
  color: var(--primary-accent);
}
.news-card-excerpt {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.news-card-excerpt p {
  margin: 0;
}
.news-readmore {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-accent);
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  transition: var(--transition);
}
.news-readmore:hover {
  color: var(--secondary-accent);
  transform: translateX(4px);
}

.no-news-found {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* Placeholder for posts with no image */
.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 106, 75, 0.04);
}
.news-placeholder-content {
  font-size: 2.5rem;
  color: var(--primary-accent);
  opacity: 0.35;
}

/* Pagination navigation */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
}
.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  transition: var(--transition);
}
.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
  background: var(--primary-accent);
  color: #ffffff;
  border-color: var(--primary-accent);
  box-shadow: 0 4px 12px rgba(200, 106, 75, 0.15);
}

/* ==========================================================================
   Single Post Detail Layout
   ========================================================================== */
.news-single-card {
  max-width: 860px;
  margin-inline: auto;
}
.news-single-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 20px;
}
.news-meta-sep {
  opacity: 0.3;
}
.news-single-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  margin-top: 0 !important;
  margin-bottom: 32px !important;
  line-height: 1.15;
  color: var(--ink);
}
.news-single-content {
  margin-bottom: 48px;
}
.news-single-content p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.news-single-footer {
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   Responsiveness for News and Carousel
   ========================================================================== */
@media (max-width: 960px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .carousel-container {
    height: 400px;
  }
}
@media (max-width: 680px) {
  .carousel-container {
    height: 300px;
  }
  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .carousel-arrow.prev { left: 10px; }
  .carousel-arrow.next { right: 10px; }
  .carousel-caption {
    padding: 30px 16px 16px;
  }
  .carousel-caption span {
    font-size: 1.05rem;
  }
  .news-card-image {
    height: 200px;
  }
  .news-card-content {
    padding: 24px;
  }
}

/* ==========================================================================
   Opening Status Card (Café Section)
   ========================================================================== */
.opening-status-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary-accent);
  padding: 32px;
  margin: 40px 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.opening-status-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
  border-left-color: var(--primary-accent);
}
.opening-status-card h3 {
  color: var(--primary-accent);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.opening-status-card p {
  color: var(--ink);
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}
.opening-status-card strong {
  color: var(--primary-accent);
}


