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

body {
  background: #1e1a1f;
  color: #f3ede8;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 12px;
  background-image: 
    url('../images/venue-bg.jpg'),
    radial-gradient(circle at 10% 20%, rgba(194, 24, 91, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(235, 160, 100, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #1e1a1f 0%, #2c1420 100%);
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  background-attachment: fixed;
  background-blend-mode: overlay, normal, normal, normal;
}

body::before {
  content: "";
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(235, 200, 180, 0.2);
  border-radius: 3px;
  pointer-events: none;
  box-shadow: 0 0 40px rgba(0,0,0,0.7) inset;
  z-index: 9999;
}

.wrapper {
  width: 100%;
  max-width: 1000px;
  padding: 20px 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  background: rgba(30, 26, 31, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  margin: 4px auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ===== FLOATING REVIEW BUBBLE ===== */
.review-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
  background: linear-gradient(135deg, #2c1420, #1e1a1f);
  border: 1px solid rgba(235, 200, 180, 0.3);
  border-radius: 50px;
  padding: 14px 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px rgba(194, 24, 91, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
}

.review-bubble:hover {
  transform: scale(1.05);
  border-color: rgba(235, 200, 180, 0.6);
  box-shadow: 0 12px 40px rgba(0,0,0,0.8), 0 0 30px rgba(194, 24, 91, 0.25);
}

.review-bubble span {
  color: #f3ede8;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.review-bubble::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 52px;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.3), rgba(235, 160, 100, 0.2), rgba(194, 24, 91, 0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.review-bubble:hover::before {
  opacity: 1;
}

.review-bubble .pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(194, 24, 91, 0.1);
  animation: pulse-ring 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* ===== HEADER WITH LOGO ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(235, 200, 180, 0.1);
  flex-wrap: wrap;
  gap: 12px;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 130px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

/* ===== NAV ===== */
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #f3ede8;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.7;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #e6b8a2;
  transition: width 0.3s ease;
}

nav a:hover {
  opacity: 1;
  color: #f5d6c6;
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: #f5d6c6;
  opacity: 1;
  font-weight: 500;
}

nav a.active::after {
  width: 100%;
}

/* ===== LANDING ===== */
.landing-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px 0 5px;
}

.logo {
  width: 380px;
  max-width: 65vw;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}

.logo:hover {
  transform: scale(1.02) rotate(-1deg);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  color: #f3ede8;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin: 6px 0 4px;
  letter-spacing: 1px;
}

.sub-title {
  text-align: center;
  opacity: 0.75;
  letter-spacing: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 300;
}

.title-accent {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d9a58b, transparent);
  margin: 4px auto 0;
  border-radius: 4px;
}

.tagline {
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 300;
  background: rgba(30, 26, 31, 0.5);
  padding: 8px 22px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(235, 200, 180, 0.15);
  display: inline-block;
}

.ornament {
  font-size: 1.2rem;
  opacity: 0.3;
  letter-spacing: 10px;
  color: #d9a58b;
}

.landing-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  font-size: 0.85rem;
  opacity: 0.85;
}

.landing-info a {
  color: #f3ede8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}

.landing-info a:hover {
  border-bottom-color: #d9a58b;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 14px 42px;
  border: 1px solid rgba(243, 237, 232, 0.6);
  color: #f3ede8;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.35s ease;
  border-radius: 30px;
  background: rgba(30, 26, 31, 0.3);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.6s ease;
}

.btn:hover {
  background: #f3ede8;
  color: #1e1a1f;
  border-color: #f3ede8;
  box-shadow: 0 12px 30px -6px rgba(194, 24, 91, 0.5);
  transform: scale(1.02);
}

.btn:hover::before {
  left: 100%;
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ===== MENU SECTIONS ===== */
.menu-section {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 18px 20px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(235, 200, 180, 0.08);
  backdrop-filter: blur(2px);
}

.menu-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(235, 200, 180, 0.15);
  padding-bottom: 6px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.menu-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 10px 0 6px;
  color: #d9a58b;
  letter-spacing: 0.5px;
}

/* ===== DISCLAIMER - FIXED ===== */
.menu-section .disclaimer {
  font-size: 0.7rem;
  font-weight: 300;
  opacity: 0.55;
  font-style: italic;
  letter-spacing: 0.3px;
  margin-top: -2px;
  margin-bottom: 10px;
  text-align: left;
  border-left: 2px solid rgba(235, 200, 180, 0.15);
  padding-left: 12px;
  color: #f3ede8;
  line-height: 1.4;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th {
  text-align: left;
  font-weight: 400;
  letter-spacing: 1.5px;
  opacity: 0.6;
  padding-bottom: 5px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

td {
  padding: 5px 4px;
  border-bottom: 1px solid rgba(235, 200, 180, 0.06);
}

tr:last-child td {
  border-bottom: none;
}

.price-col {
  text-align: right;
  font-weight: 400;
  white-space: nowrap;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.gallery-grid div {
  background: rgba(255,255,255,0.05);
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(235, 200, 180, 0.08);
  transition: 0.3s;
}

.gallery-grid div:hover {
  transform: scale(1.02);
  border-color: rgba(235, 200, 180, 0.3);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== FORM ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 10px auto;
}

form input,
form textarea,
form select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(235, 200, 180, 0.15);
  padding: 12px 18px;
  border-radius: 30px;
  color: #f3ede8;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: 0.2s;
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(243, 237, 232, 0.4);
}

form input:focus,
form textarea:focus {
  border-color: rgba(235, 200, 180, 0.4);
}

/* ===== DELIVERY PAGE ===== */
.delivery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
  padding: 10px 0;
}

.delivery-list .item {
  padding: 6px 0;
  border-bottom: 1px solid rgba(235, 200, 180, 0.06);
  font-size: 0.95rem;
}

.delivery-info {
  padding: 10px 0;
  font-size: 1.1rem;
  line-height: 2;
}

.delivery-info .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(235, 200, 180, 0.08);
}

.delivery-info .row:last-child {
  border-bottom: none;
}

.delivery-info .label {
  font-weight: 400;
}

.delivery-info .value {
  font-weight: 600;
  color: #d9a58b;
}

.delivery-info .value a {
  color: #d9a58b;
  text-decoration: none;
}

.delivery-info .value a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 30px;
  padding: 20px 0 10px;
  border-top: 1px solid rgba(235, 200, 180, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  gap: 10px 16px;
  color: rgba(243, 237, 232, 0.5);
}

footer a {
  color: rgba(243, 237, 232, 0.6);
  text-decoration: none;
  transition: 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

footer a:hover {
  color: #f5d6c6;
  border-bottom-color: #d9a58b;
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body {
    padding: 8px;
  }
  body::before {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
  }
  .wrapper {
    padding: 14px 14px 14px;
    max-width: 100%;
  }
  .site-header {
    flex-direction: column;
    align-items: center;
  }
  nav {
    justify-content: center;
    gap: 14px;
  }
  nav a {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }
  h1 {
    font-size: 3.4rem;
  }
  .page-title {
    font-size: 2rem;
  }
  .nav-logo {
    height: 95px;
  }
  .logo {
    width: 280px;
    max-width: 60vw;
  }
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .delivery-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .delivery-info .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
  }
  .sub-title {
    font-size: 0.7rem;
  }
  .menu-section h2 {
    font-size: 1.6rem;
  }
  table {
    font-size: 0.8rem;
  }
  .review-bubble {
    bottom: 20px;
    right: 20px;
    padding: 12px 22px;
  }
  .review-bubble span {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
  .menu-section .disclaimer {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 4px;
  }
  body::before {
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-width: 1px;
  }
  .wrapper {
    padding: 10px 10px 10px;
    border-radius: 4px;
  }
  nav {
    gap: 10px;
  }
  nav a {
    font-size: 0.5rem;
    letter-spacing: 1.5px;
  }
  h1 {
    font-size: 2.6rem;
  }
  .page-title {
    font-size: 1.6rem;
  }
  .nav-logo {
    height: 75px;
  }
  .logo {
    width: 220px;
    max-width: 55vw;
  }
  .menu-section {
    padding: 12px 14px 12px;
  }
  .menu-section h2 {
    font-size: 1.4rem;
  }
  .delivery-list .item {
    font-size: 0.8rem;
  }
  .delivery-info {
    font-size: 0.9rem;
  }
  .delivery-info .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
  }
  .sub-title {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }
  table {
    font-size: 0.7rem;
  }
  th {
    font-size: 0.55rem;
  }
  td {
    padding: 4px 3px;
  }
  .btn {
    padding: 10px 28px;
    font-size: 0.6rem;
    letter-spacing: 2px;
  }
  .review-bubble {
    bottom: 15px;
    right: 15px;
    padding: 10px 18px;
  }
  .review-bubble span {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }
  .menu-section .disclaimer {
    font-size: 0.6rem;
    padding-left: 8px;
  }
}