body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: #0f0f0f;
  color: #eee;
}

.container {
  max-width: 1200px;
  margin: auto;
}


.header {
  text-align: center;
  padding: 30px;
  border-bottom: 1px solid #222;
}

.controls {
  margin-top: 15px;
}

button {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 6px 14px;
  margin: 4px;
  border-radius: 20px;
  cursor: pointer;
}

.hero {
  min-height: 70vh; /* IMPORTANT for desktop */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background:
    linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.35)
    ),
    url("images/hero-cake.jpg") center / cover no-repeat;

  text-align: center;
  padding: 100px 20px;
}


.badge {
  background: linear-gradient(135deg,#d4af37,#b8962e);
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
}

section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  color: #d4af37;
  font-size: 34px;
}

.cards, .highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cards div, .highlights div {
  background: #151515;
  width: 280px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,.6);
  text-align: center;
}

.cards img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
}

.gallery {
  display: flex;
  overflow: hidden;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.gallery img {
  min-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
}

.cta {
  text-align: center;
  background: radial-gradient(circle,#1a1a1a,#000);
  padding: 100px 20px;
}

footer {
  text-align: center;
  padding: 25px;
  background: #050505;
}
@media (min-width: 1024px) {
  .hero h2 {
    font-size: 56px;
  }

  .section-title {
    font-size: 40px;
  }
}

body[data-theme="light"] {
  background: #ffffff;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

body[data-theme="light"] header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

body[data-theme="light"] .section-title {
  color: #b8962e;
}

body[data-theme="light"] .card,
body[data-theme="light"] .box,
body[data-theme="light"] .item {
  background: #ffffff !important;
  color: #222 !important;
  border: 1px solid #e0e0e0 !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
}

body[data-theme="light"] section {
  background: #f9f9f9;
}

body[data-theme="light"] section,
body[data-theme="light"] .card {
  background-image: none !important;
}

body[data-theme="light"] h1,
body[data-theme="light"] h2,
body[data-theme="light"] h3,
body[data-theme="light"] p {
  color: #222 !important;
}



body[data-theme="light"] .btn {
  background: #d4af37;
  color: #000;
}

body[data-theme="dark"] {
  background: #121212;
  color: #eaeaea;
  font-family: 'Poppins', sans-serif;
}

body[data-theme="dark"] header {
  background: #1c1c1c;
}

body[data-theme="dark"] .section-title {
  color: #ffcc66;
}

body[data-theme="dark"] .card {
  background: #1e1e1e;
  border: 1px solid #333;
}

body[data-theme="dark"] .btn {
  background: #ffcc66;
  color: #000;
}
