@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0e0e0e;
  color: #fff;
  overflow-x: hidden;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader h1 {
  font-family: 'Playfair Display', serif;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  50% { opacity: 0.3; }
}

/* ===== HEADER ===== */
header {
  padding: 25px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

nav a {
  color: #fff;
  margin-left: 35px;
  text-decoration: none;
  font-weight: 300;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
}

.hero p {
  margin-top: 20px;
  opacity: 0.85;
}

/* ===== PARALLAX ===== */
.parallax {
  height: 80vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ===== MENU ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 80px;
}

.menu-card {
  background: #161616;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.4s;
}

.menu-card:hover {
  transform: translateY(-10px);
}

/* ===== SPEAKER ===== */
.speaker {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  color: #000;
  padding: 14px;
  border-radius: 50%;
  cursor: pointer;
  animation: none;
}

.speaker.playing {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.6); }
  100% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
}

/* ===== FOOTER ===== */
footer {
  padding: 80px;
  background: #000;
  text-align: center;
}
/* GOLD ACCENTS */
.gold {
  color: #caa35c;
}

/* SECTION */
.section {
  padding: 120px 80px;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

/* GALLERY */
.gallery {
  columns: 3;
  column-gap: 20px;
  padding: 80px;
}

.gallery img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 14px;
  transition: transform .4s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){
  header { padding: 20px; }
  .gallery { columns: 1; }
  .section { padding: 80px 30px; }
}
.whatsapp {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
}
.cursor {
  width: 15px;
  height: 15px;
  background: #caa35c;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.site-footer {
  background: #0b0b0b;
  padding: 80px 60px 30px;
  color: #ccc;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.site-footer h3, .site-footer h4 {
  color: #caa35c;
  margin-bottom: 15px;
}

.site-footer a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.6;
}
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 120px 80px;
  align-items: center;
}

.about-video iframe {
  width: 100%;
  height: 320px;
  border-radius: 16px;
}

.about-content h1 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 80px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}
.contact-box {
  max-width: 450px;
  margin: 120px auto;
  background: #141414;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
}

.contact-box h2 {
  color: #caa35c;
  margin-bottom: 30px;
}

.contact-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: #0d0d0d;
  border: none;
  color: #fff;
  border-radius: 8px;
}

.contact-box button {
  width: 100%;
  padding: 14px;
  background: #caa35c;
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}
.contact-section {
  max-width: 1100px;
  margin: 120px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
}

.contact-form {
  background: #141414;
  padding: 50px;
  border-radius: 22px;
}

.contact-form h2 {
  color: #caa35c;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: #0d0d0d;
  border: none;
  color: #fff;
  border-radius: 10px;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: #caa35c;
  color: #000;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.contact-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}
/* MENU IMAGE STYLING */
.menu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}

/* Hover effect */
.menu-card:hover img {
  transform: scale(1.05);
}

/* Keep menu cards balanced */
.menu-card {
  background: #161616;
  padding: 22px;
  border-radius: 20px;
}
/* === MENU CARD SIZE UPGRADE === */

/* Make menu cards larger */
.menu-grid {
  gap: 40px; /* more breathing space between cards */
}

/* Bigger cards */
.menu-card {
  padding: 28px;
  border-radius: 26px;
}

/* Increase image height (this is the main fix) */
.menu-card img {
  height: 260px;        /* 🔥 increased from ~180–190 */
  border-radius: 20px;
  margin-bottom: 22px;
}

/* Improve title spacing */
.menu-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

/* Improve description readability */
.menu-card p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.6;
}
