/* ======================
   HERO SECTION
====================== */

.hero {
  position: relative;
  min-height: 90vh;
  background-image: url("../assets/images/hero/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 23, 0.78),
    rgba(5, 5, 23, 0.35)
  );
}

.hero-content {
  position: relative;
  max-width: var(--container);
  margin: auto;
  padding: 0 20px;
  color: #fff;
  animation: fadeUp 1s ease forwards;
}

.hero-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Playfair", serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--sand);
}

.hero p {
  max-width: 520px;
  font-size: 16px;
  margin-bottom: 34px;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.16);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero-location img {
  width: 16px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ======================
   SERVICES SECTION
====================== */

.services {
  background: var(--cream);
  padding: 100px 0;
}

.container {
  max-width: var(--container);
  margin: auto;
  padding: 0 20px;
}

.services-header {
  max-width: 520px;
  margin-bottom: 60px;
}

.section-pill {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 14px;
}

.services-header h2 {
  font-family: "Playfair", serif;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.services-header h2 em {
  font-style: italic;
  color: var(--orange);
}

.services-header p {
  font-size: 15px;
  color: rgba(5, 5, 23, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.service-card img {
  width: 42px;
  margin-bottom: 18px;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: rgba(5, 5, 23, 0.7);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(5, 5, 23, 0.12);
  border-color: var(--orange);
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0;
  }

  .service-card {
    padding: 28px 22px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 36px;
  }
}

.services-disclaimer {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(5, 5, 23, 0.7);
  font-style: italic;
}

/* ======================
   MENU SECTION
====================== */

.menu {
  background: #ffffff;
  padding: 100px 0;
}

.menu-header {
  max-width: 520px;
  margin-bottom: 50px;
}

.menu-header h2 {
  font-family: "Playfair", serif;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.menu-header h2 em {
  font-style: italic;
  color: var(--orange);
}

.menu-header p {
  font-size: 15px;
  color: rgba(5, 5, 23, 0.7);
}

/* Card */
.menu-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(5, 5, 23, 0.08);
  overflow: hidden;
}

/* Header */
.menu-card-header {
  background: var(--orange);
  color: #ffffff;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card-header h3 {
  font-size: 20px;
}

.menu-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
}

/* Table Wrapper (IMPORTANT) */
.menu-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Table */
.menu-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.menu-table th,
.menu-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 14px;
}

.menu-table thead {
  background: #efd9a0; /* darker beige */
}

.menu-table th {
  font-weight: 600;
}

/* Body rows */
.menu-table tbody tr {
  background: #f7ecd0; /* lighter beige */
}

.menu-table tbody tr:not(:last-child) {
  border-bottom: 1px solid rgba(5, 5, 23, 0.08);
}

/* Make Day column bold */
.menu-table td:first-child {
  font-weight: 600;
}

/* Sticky Day column on mobile */
@media (max-width: 768px) {
  .menu-table th:first-child,
  .menu-table td:first-child {
    position: sticky;
    left: 0;
    background: #efd9a0;
    z-index: 2;
  }
}

/* ======================
   GALLERY SECTION
====================== */

.gallery {
  background: var(--navy);
  padding: 100px 0;
  color: #ffffff;
}

.gallery-header {
  max-width: 520px;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-family: "Playfair", serif;
  font-size: 44px;
  line-height: 1.15;
}

.gallery-header h2 em {
  font-style: italic;
  color: var(--sand);
}

/* Filters */

.gallery-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* Grid Layout */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */

.gallery-item {
  width: 100%;
  aspect-ratio: 1 / 1;        /* 🔥 MAGIC FIX */
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

/* Image */

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* 🔥 MAGIC FIX */
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Hide filtered items */

.gallery-item.hidden {
  display: none;
}

/* Tablet */

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 600px) {
  .gallery {
    padding: 70px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ======================
   CONTACT SECTION
====================== */

.contact {
  background: var(--cream);
  padding: 100px 0;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-family: "Playfair", serif;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 30px;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--orange);
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-item img {
  width: 42px;
}

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 14px;
  color: rgba(5, 5, 23, 0.75);
}

.contact-pill {
  display: inline-block;
  margin-top: 10px;
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 10px;
  background: #1aa84f;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
}

/* Visit Card */
.visit-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(5, 5, 23, 0.08);
  padding: 40px;
  text-align: center;
}

.visit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-icon img {
  width: 28px;
  filter: brightness(0) invert(1);
}

.visit-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.visit-card p {
  font-size: 14px;
  margin-bottom: 22px;
  color: rgba(5, 5, 23, 0.75);
}

.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .visit-card {
    margin-top: 40px;
  }
}
/* ======================
   CONTACT MAP PREVIEW
====================== */

.contact-map-wrapper {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Map background */
.contact-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) blur(2px);
  transform: scale(1.05);
}

.map-wrapper {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
}

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

.visit-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 380px;
  max-width: 90%;
  height: fit-content;
  background: #ffffff;
  border-radius: 22px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map-wrapper {
    height: 320px;
  }

  .contact-info h2 {
    font-size: 34px;
  }
}


/* ======================
   FOOTER
====================== */

.footer {
  background: var(--navy);
  padding: 60px 0 0;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  max-width: 360px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

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

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom span {
  color: var(--orange);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ======================
   WHATSAPP QUERY SECTION
====================== */

.whatsapp-query {
  background: var(--orange);
  padding: 100px 0;
}

.query-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left text */
.query-text {
  color: var(--sand);
}

.query-text h2 {
  font-family: "Playfair", serif;
  font-size: 44px;
  line-height: 1.15;
  margin: 16px 0;
}

.query-text h2 em {
  font-style: italic;
  color: #ffffff;
}

.query-text p {
  font-size: 15px;
  max-width: 420px;
  opacity: 0.9;
}

/* Form box */
.query-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 25px 60px rgba(5, 5, 23, 0.18);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(5, 5, 23, 0.15);
  font-size: 14px;
  font-family: inherit;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

/* Button */
.btn-whatsapp {
  width: 100%;
  background: #25d366;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Mobile */
@media (max-width: 900px) {
  .query-grid {
    grid-template-columns: 1fr;
  }

  .query-text h2 {
    font-size: 36px;
  }
}
/* ======================
   FLOATING HELP BUTTON
====================== */

.floating-help {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--orange);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(5, 5, 23, 0.25);
  z-index: 999;
  transition: var(--transition);
}

.floating-help:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(5, 5, 23, 0.35);
}

/* Mobile tweak */
@media (max-width: 600px) {
  .floating-help {
    bottom: 18px;
    right: 18px;
    padding: 12px 16px;
    font-size: 13px;
  }
}
html {
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  .map-wrapper {
    height: 360px;
  }

}

/* ==== FORCE FIX GALLERY SIZING ==== */

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important;
}

.gallery-item {
  position: relative !important;
  width: 100% !important;
  height: 260px !important;     /* Fixed card height */
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #111 !important;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-item {
    height: 220px !important;
  }
}
