:root {
  --bg-dark: #0e0e0e;
  --bg-light: #f4ede3;
  --accent-magenta: #c72c70;
  --accent-gold: #e6a542;
  --text-light: #f4ede3;
  --text-dark: #1a1a1a;
  --radius: 12px;
}

/* ===== BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 95vh;
  background: url('hero-image.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.85) 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 10px;
}

/* ===== NAV ===== */
nav {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
}
nav a {
  color: var(--text-light);
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
nav a:hover { color: var(--accent-gold); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  width: 28px;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 12;
}
.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 10px;
  transition: 0.3s;
}
.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

#nav-menu.active {
  right: 0;
}

/* ===== HERO BRAND ===== */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo-icon {
  width: clamp(280px, 25vw, 320px);
  filter: drop-shadow(0 0 20px rgba(230,165,66,0.3));
}
.logo-text {
  width: clamp(300px, 30vw, 380px);
  margin-top: -140px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* ===== HERO TEXT ===== */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--text-light);
  margin-top: 0.5rem;
}
.subtext {
  font-size: 1.15rem;
  margin: 1.2rem 0 2rem;
  color: #ddd;
}
.cta a { margin: 0 0.5rem; }

/* ===== BUTTONS ===== */
.btn-solid, .btn-outline {
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
}
.btn-solid {
  background: var(--accent-magenta);
  color: var(--text-light);
  border: none;
}
.btn-solid:hover {
  background: transparent;
  border: 2px solid var(--accent-magenta);
  color: var(--accent-magenta);
}
.btn-outline {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}
.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

/* ===== FEATURED SECTION ===== */

.featured-wrap{
  width: 100%;
  background: var(--bg-dark);
}

.featured {
  padding: 6rem 2rem;
  margin: 0 auto;    
  background: var(--bg-dark);
  text-align: center;
  max-width: 1600px;
}
.featured h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

/* ===== DESSERT CARD ===== */
.dessert-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
  cursor: pointer;
  height: 440px;
}
.dessert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dessert-card:hover img { transform: scale(1.05); }

/* Centered title */
.dessert-center {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem 1rem;
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: opacity 0.4s ease;
}
.dessert-center h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent-gold);
}
.dessert-center p {
  color: var(--accent-magenta);
  font-size: 1rem;
  margin-top: 0.3rem;
  font-weight: 600;
}
.dessert-card:hover .dessert-center { opacity: 0; }

.dessert-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  color: var(--text-light);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: opacity 0.5s ease;
  padding: 2rem;
}
.dessert-hover p {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
  color: #dcdcdc;
}
.dessert-card:hover .dessert-hover { opacity: 1; }

/* ===== MENU GALLERY ===== */
.menu {
  text-align: center;
  padding: 6rem 1.5rem;
  background-color: var(--bg-dark);
}
.menu h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.menu .tagline {
  color: var(--accent-gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.4s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.menu .btn-outline {
  margin-top: 2rem;
}

/* ===== ABOUT ===== */

.about-wrap{
  width: 100%;
  background-color: var(--bg-light);
  color: var(--text-dark);
}
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  max-width: 1600px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2rem;
}
.about-text { flex: 1; padding: 1rem 2rem; }
.about-img { flex: 1; text-align: center; }
.about-img img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
}
.about h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ===== EXPERIENCE ===== */
.experience {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #1a1a1a, #2a1a1a);
}
.experience h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.experience p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #d8d8d8;
}

/* ===== TOCK ===== */
#Tock_widget_container {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0;
}
.reserve-fallback { margin-top: 2rem; }

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 1.5rem;
  background: #0d0d0d;
  color: #999;
  font-size: 0.9rem;
}

.footer a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer a:hover {
  color: var(--accent-magenta);
  opacity: 0.9;
}

.footer a:visited {
  color: #d4b06b; /* slightly muted gold to show it’s been visited */
}

.footer a:active {
  color: var(--accent-magenta);
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }

  #nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: right 0.4s ease, opacity 0.4s ease;
}

#nav-menu.active {
  right: 0;
  opacity: 1;
  pointer-events: all;
}

/* Fade-out animation */
#nav-menu.fade-out {
  opacity: 0;
  right: 0;
}


  .hero-brand { gap: 0.2rem; margin-bottom: 1rem; }
  .logo-icon { width: 160px; }
  .logo-text { width: 220px; margin-top: -80px; }

  .cta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }
  .btn-solid, .btn-outline {
    width: 80%;
    max-width: 280px;
    text-align: center;
  }

  .about { flex-direction: column; text-align: center; }
  .about-img img { margin-top: 2rem; }
}
