:root {
  --gold: #B8860B;
  --gold-light: #C9A050;
  --gold-dark: #8B6914;
  --cream: #EDE3CC;
  --cream-alt: #E4D5B3;
  --white: #FFFFFF;
  --charcoal: #2D2826;
  --charcoal-light: #4A4543;
  --gray-light: #8B8680;
  --success: #5C8A6F;
  --error: #A63D40;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --font-accent: 'Cinzel', serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

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

/* ========================================
   HEADER - FIXED
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(237, 227, 204, 0.96);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid rgba(184, 134, 11, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-transparent {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.header-transparent .nav-link {
  color: #FFFAF2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.header-transparent .nav-link:hover {
  color: var(--gold-light);
}

.header-transparent .logo-image {
  filter: none;
  opacity: 1;
}

.header-transparent .menu-toggle span {
  background: #EDE3CC;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.logo-image {
  height: 72px;
  width: auto;
}

.header-transparent .logo {
  padding: 0.35rem 0.75rem;
  background: rgba(248, 236, 214, 0.9);
  border: 1px solid rgba(139, 105, 20, 0.3);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

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

/* ========================================
   MOBILE MENU
   ======================================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  background: url("/images/perla-nera-background.jpg") center center / cover no-repeat !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(22, 15, 10, 0.34) 0%, rgba(22, 15, 10, 0.2) 38%, rgba(22, 15, 10, 0.36) 100%) !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  padding: 2rem 2.4rem;
  background: linear-gradient(135deg, rgba(30, 21, 14, 0.62), rgba(30, 21, 14, 0.42));
  border: 1px solid rgba(235, 206, 146, 0.38);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(3px);
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  color: #FFF8EE;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.7rem, 1.8vw, 0.95rem);
  color: rgba(255, 247, 233, 0.95);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-divider {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-description {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  color: rgba(255, 250, 242, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-motto {
  font-style: italic;
  color: #F3CF88;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero {
  border-color: rgba(235, 206, 146, 0.7);
  color: #FFF8ED;
  background: rgba(18, 12, 8, 0.32);
}

.btn-hero:hover {
  border-color: #F3CF88;
  background: rgba(18, 12, 8, 0.58);
  color: #fff;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #D4AF57, #B8860B);
  border-color: #D4AF57;
  color: #20170a;
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.32);
}

.hero-cta .btn-primary:hover {
  background: linear-gradient(135deg, #E2C779, #C29315);
  border-color: #E2C779;
  color: #1E1408;
  box-shadow: 0 12px 28px rgba(184, 134, 11, 0.42);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  border-radius: 999px;
}

.btn:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.25);
}

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

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.35);
}

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.7rem;
}

.btn-danger {
  border-color: var(--error);
  color: var(--error);
}

.btn-danger:hover {
  background: var(--error);
  color: #fff;
}

/* Utility classes */
.text-muted { color: var(--gray-light); }
.text-center { text-align: center; }

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
}

.page-content {
  padding-top: 80px;
  min-height: 100vh;
}

/* ========================================
   INFO SECTION
   ======================================== */
.info-section {
  background: var(--cream-alt);
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.info-section .info-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.info-card:hover {
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.1);
  border-color: rgba(184, 134, 11, 0.25);
}

.info-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-card p {
  color: var(--charcoal-light);
  margin-bottom: 0.25rem;
}

.info-card a {
  color: var(--gold);
}

/* ========================================
   MENU NAV
   ======================================== */
.menu-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.menu-nav-link {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--charcoal-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(184, 134, 11, 0.16);
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-align: center;
  background: #fff;
}

.menu-nav-link:hover,
.menu-nav-link.active {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.nav-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-content: start;
  padding: 0.95rem;
  border: 1px solid rgba(184, 134, 11, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.nav-group-title {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.35rem;
  font-weight: 500;
  grid-column: 1 / -1;
  text-align: left;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.18);
}

.nav-separator {
  display: none;
}

.menu-nav > .menu-nav-link:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 210px;
  font-weight: 600;
  border-width: 2px;
}

/* ========================================
   MENU CATEGORY
   ======================================== */
.menu-category {
  margin-bottom: 4rem;
  scroll-margin-top: 100px;
}

.category-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gold);
}

.category-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}

.category-description {
  color: var(--charcoal-light);
  font-style: italic;
  font-size: 0.9rem;
}

/* ========================================
   MENU GRID
   ======================================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 1.5rem;
  transition: all 0.3s;
  display: block;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.15);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  font-weight: 500;
  flex: 1;
}

.menu-item-price {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 600;
}

.menu-item-description {
  color: var(--charcoal-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

.menu-item-badges {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.badge {
  font-size: 0.65rem;
  padding: 3px 8px;
  border: 1px solid;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-vegetarian {
  color: var(--success);
  border-color: var(--success);
  background: rgba(92, 138, 111, 0.08);
}

.badge-spicy {
  color: #C44;
  border-color: #C44;
  background: rgba(204, 68, 68, 0.08);
}

.badge-signature {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 134, 11, 0.1);
}

.price-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.price-variant {
  color: var(--charcoal-light);
}

.price-variant span {
  color: var(--gold);
  font-weight: 600;
}

/* ========================================
   ITEM DETAIL
   ======================================== */
.item-detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal-light);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.back-link:hover {
  color: var(--gold);
}

.item-card {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.item-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-content {
  padding: 2rem;
}

.item-category-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.item-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.item-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.item-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--charcoal-light);
}

.item-price-section {
  background: var(--cream-alt);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 2px;
}

.item-main-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.price-grid > div {
  text-align: center;
}

.price-label {
  display: block;
  color: var(--charcoal-light);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
}

.item-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.related-section {
  margin-top: 4rem;
}

.related-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--charcoal);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* ========================================
   RESERVATION FORM
   ======================================== */
.reservation-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.reservation-form {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 2px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem;
  background: var(--cream-alt);
  border: 1px solid rgba(184, 134, 11, 0.2);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
  border-radius: 2px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
  font-size: 0.9rem;
  border-radius: 2px;
}

.form-message.success {
  background: rgba(92, 138, 111, 0.08);
  border-color: var(--success);
  color: var(--success);
}

.form-message.error {
  background: rgba(166, 61, 64, 0.08);
  border-color: var(--error);
  color: var(--error);
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 2px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--charcoal-light);
  margin-bottom: 0.25rem;
}

.map-container {
  height: 300px;
  background: var(--cream-alt);
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 2px;
}

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

/* ========================================
   SPECIALS SECTIONS
   ======================================== */
.specials-section {
  scroll-margin-top: 100px;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.empfehlung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.special-card {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 2px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.special-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.15);
}

.special-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.special-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  font-weight: 500;
  flex: 1;
}

.special-card-price {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 600;
}

.special-card-salad {
  font-size: 0.8rem;
  color: var(--success);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.special-card-description {
  color: var(--charcoal-light);
  font-size: 0.9rem;
  line-height: 1.7;
  white-space: pre-line;
}

.empfehlung-card {
  border-color: rgba(184, 134, 11, 0.25);
}

/* ========================================
   BLOG STYLES
   ======================================== */
.page-hero {
  padding: 8rem 1rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D2219 100%);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  color: #FFFAF2;
}

.page-hero-content p {
  color: var(--gold-light);
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

.blog-hero {
  padding: 8rem 1rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-alt) 100%);
}

.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.blog-hero p {
  color: var(--charcoal-light);
  max-width: 500px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-post-card {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-post-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 35px rgba(184, 134, 11, 0.15);
}

.blog-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--cream-alt), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
  opacity: 0.3;
}

.blog-post-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-date {
  font-size: 0.75rem;
  color: var(--gold);
  font-family: var(--font-accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.blog-post-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-post-excerpt {
  color: var(--charcoal-light);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.blog-post-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-post-link:hover {
  color: var(--gold-light);
}

/* Single Blog Post */
.blog-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.blog-single-header {
  text-align: center;
  padding: 6rem 0 3rem;
}

.blog-single-meta {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-single-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.blog-single-featured-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 2rem;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 2px;
}

.blog-single-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--charcoal);
}

.blog-single-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--charcoal);
}

.blog-single-content h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--charcoal);
}

.blog-single-content p {
  margin-bottom: 1.5rem;
}

.blog-single-content ul,
.blog-single-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-single-content li {
  margin-bottom: 0.5rem;
}

.blog-single-content a {
  color: var(--gold);
  text-decoration: underline;
}

.blog-single-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 2px;
}

/* Featured template */
.blog-featured .blog-single-header {
  padding: 8rem 0 4rem;
}

.blog-featured .blog-single-featured-image {
  max-height: 600px;
}

/* Related posts */
.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--charcoal);
  padding: 3rem 1rem 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.footer-col p {
  color: #9A9489;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-title {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #9A9489;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 134, 11, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #9A9489;
}

.admin-link {
  color: #9A9489;
  opacity: 0.5;
  font-size: 0.75rem;
}

.admin-link:hover {
  opacity: 1;
  color: var(--gold);
}

/* ========================================
   ERROR PAGE
   ======================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
}

.error-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.error-message {
  color: var(--charcoal-light);
  margin-bottom: 2rem;
}

/* ========================================
   ADMIN STYLES (Dark theme)
   ======================================== */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #1A1412;
}

.admin-sidebar {
  width: 240px;
  background: #0A0808;
  border-right: 1px solid rgba(201, 169, 98, 0.15);
  padding: 1.5rem;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.admin-logo {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  margin-bottom: 1.5rem;
}

.admin-logo img {
  height: 50px;
}

.admin-logo p {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.admin-nav {
  list-style: none;
}

.admin-nav li {
  margin-bottom: 0.25rem;
}

.admin-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: #9A948B;
  border-radius: 4px;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

.admin-main {
  flex: 1;
  margin-left: 240px;
  padding: 2rem;
  background: #1A1412;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  flex-wrap: wrap;
  gap: 1rem;
  color: #E8E4DC;
}

.admin-title {
  font-size: 1.5rem;
  color: #E8E4DC;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(45, 35, 32, 0.9), rgba(26, 20, 18, 0.95));
  border: 1px solid rgba(201, 169, 98, 0.15);
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.stat-label {
  color: #9A948B;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(45, 35, 32, 0.5);
  font-size: 0.9rem;
  color: #E8E4DC;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.admin-table th {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.3);
}

.admin-table tr:hover {
  background: rgba(201, 169, 98, 0.05);
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  border-radius: 2px;
}

.status-pending {
  background: rgba(201, 169, 98, 0.2);
  color: var(--gold);
}

.status-confirmed {
  background: rgba(92, 138, 111, 0.2);
  color: #5C8A6F;
}

.status-cancelled {
  background: rgba(166, 61, 64, 0.2);
  color: var(--error);
}

.admin-form {
  max-width: 700px;
  color: #E8E4DC;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #E8E4DC;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #1A1412;
}

.login-container {
  width: 100%;
  max-width: 360px;
}

.login-card {
  background: linear-gradient(135deg, rgba(45, 35, 32, 0.95), rgba(26, 20, 18, 0.98));
  border: 1px solid rgba(201, 169, 98, 0.2);
  padding: 2.5rem;
  text-align: center;
  color: #E8E4DC;
}

.login-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.login-title {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #E8E4DC;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .logo-image {
    height: 58px;
  }

  .header-transparent .logo {
    padding: 0.2rem 0.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    transition: right 0.3s;
    z-index: 1001;
    border-left: 1px solid rgba(184, 134, 11, 0.15);
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    font-size: 0.9rem;
    color: var(--cream);
    text-shadow: none;
    filter: none;
  }

  .main-nav .nav-link:hover {
    color: var(--gold-light);
  }

  .header-transparent .menu-toggle span {
    background: #EDE3CC;
  }

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

  .menu-nav {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 0.95rem;
    border-radius: 8px;
  }

  .nav-group {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .nav-group-title {
    text-align: center;
    margin-bottom: 0.2rem;
    letter-spacing: 0.08em;
  }

  .menu-nav-link {
    font-size: 0.66rem;
    min-height: 38px;
    padding: 0.55rem 0.45rem;
    letter-spacing: 0.07em;
  }

  .menu-nav > .menu-nav-link:last-child {
    width: 100%;
    min-width: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero {
    min-height: 70vh;
    padding: 6rem 1.25rem 3rem;
    background-position: center center;
  }

  .hero-content {
    max-width: 96%;
    padding: 1.35rem 1.1rem;
    border-radius: 10px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: 0.08em;
  }

  .hero-description {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    gap: 0.6rem;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
  }

  .admin-sidebar {
    position: fixed;
    left: -100%;
    width: 220px;
    z-index: 1001;
    transition: left 0.3s;
  }

  .admin-sidebar.active {
    left: 0;
  }

  .admin-main {
    margin-left: 0;
    padding: 1rem;
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .admin-table {
    font-size: 0.8rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.5rem;
  }

  .item-content {
    padding: 1.5rem;
  }

  .price-grid {
    gap: 1.5rem;
  }

  .price-value {
    font-size: 1.5rem;
  }

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

  .special-card {
    padding: 1.25rem;
  }

  .special-card-name {
    font-size: 1.1rem;
  }

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

  .blog-post-image,
  .blog-post-image-placeholder {
    height: 180px;
  }
}

@media (min-width: 769px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }
}
