/*
Theme Name: Eden Cafe
Theme URI: https://edencafe.sg
Description: Custom WordPress theme for Eden Café – a rustic garden café in Singapore.
Version: 3.0.0
Author: Eden Cafe
Author URI: https://edencafe.sg
Text Domain: eden-cafe
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #EBE8E3;
  color: #5D4735;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Londrina Solid', cursive;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.6px;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   LAYOUT
   ============================================ */
.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-width--narrow {
  max-width: 750px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #5D4735;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
}

.btn--primary {
  background-color: #5D4735;
  color: #EBE8E3;
}

.btn--primary:hover {
  background-color: #5D4735;
}

.btn--secondary {
  background-color: transparent;
  color: #5D4735;
  border: 1px solid #5D4735;
}

.btn--secondary:hover {
  background-color: #5D4735;
  color: #EBE8E3;
}

.btn--white {
  background-color: #EBE8E3;
  color: #5D4735;
  border: none;
}

.btn--white:hover {
  background-color: #DCD1C0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #EBE8E3;
  border-bottom: none;
  transition: background-color 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 10px 40px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

/* Logo: centered via absolute positioning */
.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.header-logo img {
  width: 120px;
  height: auto;
}

/* Inline nav: on the LEFT */
.header-nav {
  display: flex;
  align-items: center;
}

.header-nav__menu {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav__menu li a {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5D4735;
  padding: 8px 12px;
  transition: opacity 0.3s;
  text-decoration: none;
}

.header-nav__menu li a:hover {
  opacity: 0.6;
}

/* Action buttons: on the RIGHT */
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.header-actions .btn {
  padding: 10px 20px;
  font-size: 12px;
}

/* Hamburger: hidden on desktop, shown on tablet/mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #5D4735;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE MENU (slides from LEFT, white bg)
   ============================================ */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(93,71,53,0.4);
  z-index: 998;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #EBE8E3;
  z-index: 1000;
  padding: 80px 30px 40px;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

/* Close button inside mobile menu */
.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #5D4735;
  padding: 4px 8px;
}

.mobile-menu__close:hover {
  opacity: 0.6;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__list li {
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}

.mobile-menu__list li a {
  display: block;
  padding: 16px 0;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5D4735;
  text-decoration: none;
}

.mobile-menu__actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__actions .btn {
  text-align: center;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-banner--large {
  min-height: 80vh;
}

.hero-banner__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.hero-banner__heading {
  font-size: clamp(28px, 5vw, 56px);
  color: #EBE8E3;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-banner__text {
  color: #EBE8E3;
  font-size: clamp(14px, 2vw, 18px);
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: 'Quicksand', sans-serif;
}

.hero-banner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-banner__buttons .btn {
  color: #EBE8E3;
  border-color: #EBE8E3;
}

.hero-banner__buttons .btn:hover {
  background-color: #EBE8E3;
  color: #5D4735;
}

.hero-banner__buttons .btn--primary {
  background-color: #EBE8E3;
  color: #5D4735;
}

.hero-banner__buttons .btn--primary:hover {
  background-color: transparent;
  color: #EBE8E3;
  border-color: #EBE8E3;
}

/* ============================================
   IMAGE WITH TEXT SECTIONS
   ============================================ */
.image-text-section {
  padding: 48px 0;
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-text-grid--reverse .image-text__media {
  order: 2;
}

.image-text-grid--reverse .image-text__content {
  order: 1;
}

.image-text__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.image-text__content h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.image-text__content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #5D4735;
}

.image-text__content .btn {
  margin-top: 10px;
}

/* ============================================
   ABOUT / SERENE PAGE
   ============================================ */
.halal-section {
  padding: 36px 0;
}

.halal-section .custom-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
}

.halal-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.halal-grid__image img {
  width: 100%;
  max-width: 400px;
}

.halal-grid__text p {
  font-size: 16px;
  line-height: 1.7;
  color: #5D4735;
}

/* Visit Us / Info Section */
.visit-section {
  padding: 30px 0;
}

.visit-grid {
  display: flex;
  gap: 40px;
  width: 85%;
  margin: auto;
  padding: 20px;
}

.visit-grid__faq,
.visit-grid__info {
  flex: 1 1 50%;
}

.visit-grid__faq h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.visit-grid__info {
  margin-top: 20px;
}

.visit-grid__info h2 {
  margin-bottom: 5px;
  font-size: 20px;
}

.visit-grid__info p {
  margin: 5px 0;
}

.visit-grid__info ul {
  list-style: disc;
  padding-left: 20px;
  margin: 5px 0;
}

.visit-grid__info ul li {
  list-style: disc;
  margin: 3px 0;
}

.info-buttons {
  margin: 20px 0;
}

.info-buttons .btn {
  width: 40%;
  text-align: center;
  margin-bottom: 12px;
  display: block;
}

.info-address-row {
  border-top: 2px solid #917355;
  padding-top: 20px;
  margin-top: 10px;
  display: flex;
  gap: 30px;
}

.info-address-row > div {
  flex: 1 1 50%;
}

/* ============================================
   EVENTS PAGE
   ============================================ */
.break-img-section {
  background-color: #DCD1C0;
  padding: 72px 0;
}

.break-img-section .image-text-grid {
  flex-direction: column;
  display: flex;
}

.break-img-section .image-text__media,
.break-img-section .image-text__content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.break-img-section .image-text__content p {
  text-align: center;
  font-size: 18px;
}

/* Video + Content split */
.vc-split-section {
  padding: 0 15px 70px;
  background-color: #DCD1C0;
}

.vc-split-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.vc-split-video {
  text-align: center;
}

.vc-split-video video {
  height: auto;
  aspect-ratio: 0.56 / 1;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.vc-split-heading {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 600;
  color: #917355;
  margin-top: 0;
}

.vc-split-text {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 25px;
  color: #917355;
}

.event-capacity-list {
  padding-left: 25px;
  font-size: 18px;
  margin-bottom: 20px;
}

.event-capacity-list li {
  list-style: disc;
  margin-bottom: 6px;
}

/* Client Logos */
.clients-section {
  background-color: #EBE8E3;
  padding: 40px 20px;
  text-align: center;
}

.clients-section .vc-split-heading {
  text-align: center;
  margin-bottom: 25px;
}

.logo-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.logo-item img {
  width: 100%;
  max-width: 120px;
  height: 140px;
  object-fit: contain;
  display: block;
}

/* Host Events Grid */
.host-events-section {
  padding: 70px 15px;
  background: #EBE8E3;
}

.host-events-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 600;
  color: #917355;
}

.host-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.host-events-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.host-events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-events-overlay {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 48%;
  background: rgba(145, 115, 85, 0.35);
  padding: 8px 16px;
  border: 2px solid #EBE8E3;
  max-width: 300px;
  width: calc(100% - 30px);
  text-align: center;
}

.host-events-overlay span {
  color: #EBE8E3;
  font-size: 18px;
  line-height: 25px;
  font-family: 'Quicksand', sans-serif;
}

.host-events-note {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: #917355;
}

/* Event Enquiry Form */
.enquiry-form-section {
  padding: 60px 0 80px;
}

.enquiry-form-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(20px, 3vw, 28px);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.eden-form {
  max-width: 600px;
  margin: 0 auto;
}

.eden-form .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.eden-form .form-group {
  flex: 1;
  margin-bottom: 16px;
}

.eden-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

.eden-form input,
.eden-form textarea,
.eden-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #DCD1C0;
  background: #EBE8E3;
  font-size: 14px;
  border-radius: 0;
  transition: border-color 0.3s;
}

.eden-form input:focus,
.eden-form textarea:focus,
.eden-form select:focus {
  outline: none;
  border-color: #917355;
  background-color: #EBE8E3;
}

.eden-form textarea {
  min-height: 120px;
  resize: vertical;
}

.eden-form .btn-submit {
  display: inline-block;
  padding: 14px 40px;
  background-color: #DCD1C0;
  color: #EBE8E3;
  border: 1px solid #EBE8E3;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Quicksand', sans-serif;
}

.eden-form .btn-submit:hover {
  background-color: #5D4735;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 56px;
  height: 56px;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-page {
  padding: 28px 0;
  margin-top: 70px;
}

.menu-page h1 {
  text-align: center;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 30px;
}

.menu-page .menu-images img {
  width: 100%;
  margin-bottom: 10px;
}

/* ============================================
   PROMOTIONS PAGE
   ============================================ */
.promo-section {
  padding: 72px 0;
}

.promo-section:first-of-type {
  padding-top: 72px;
}

.promo-section + .promo-section {
  padding-top: 0;
}

.promo-section .image-text__media img {
  object-fit: contain;
  border: none;
}

.promo-section .image-text__content h2 {
  font-size: clamp(22px, 3vw, 32px);
}

.promo-section .image-text__content p {
  font-size: 15px;
  margin-bottom: 12px;
}

.promo-section .image-text__content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.promo-section .image-text__content ul li {
  list-style: disc;
  margin-bottom: 4px;
  font-size: 15px;
}

.promo-section .image-text__content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-tab-menu {
  padding-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.gallery-tab-menu ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.gallery-tab-menu ul li a {
  color: #917355;
  text-decoration: none;
  padding: 3px 4px;
  transition: 0.3s ease all;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.gallery-tab-menu ul li a.active {
  border-bottom: 2px solid #917355;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-main {
  padding-bottom: 40px;
}

.tab-box {
  display: none;
}

.tab-box.active {
  display: block;
}

.grid-item {
  overflow: hidden;
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

.grid-item.hidden {
  display: none;
}

.load-more {
  text-align: center;
  margin-top: 30px;
}

.load-more-btn {
  background-color: #917355;
  color: #EBE8E3;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.load-more-btn:hover {
  background-color: #5D4735;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #EBE8E3;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 300;
  line-height: 1;
}

/* ============================================
   LOCATION / KIOSK PAGE
   ============================================ */
.welcome-section {
  padding: 40px 0 52px;
  text-align: center;
  background-color: #DCD1C0;
}

.welcome-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 20px;
}

.welcome-section p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 20px;
}

.welcome-section .hours h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 8px;
}

.map-embed {
  width: 100%;
}

.map-embed iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.directions-section {
  padding: 60px 0;
  text-align: center;
}

.directions-section h2 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 15px;
}

.directions-section > p,
.directions-section .subtitle-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}

.directions-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.directions-content__image,
.directions-content__video {
  width: 100%;
  max-width: 48%;
}

.directions-content__image img {
  width: 100%;
  object-fit: cover;
  height: 500px;
}

.directions-content__video video {
  width: 100%;
  height: 500px;
}

.by-car-section {
  padding: 40px 0 32px;
  text-align: center;
}

.by-car-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 15px;
}

.by-car-section p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.parking-image-section {
  padding: 36px 0;
}

.parking-image-section img {
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: 36px 0;
  margin-top: 70px;
}

.contact-page h1 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

.contact-form .form-group {
  flex: 1;
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #DCD1C0;
  background: #EBE8E3;
  font-size: 14px;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #5D4735;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 10px;
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-page {
  padding: 36px 0;
  margin-top: 70px;
}

.careers-page h1 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: #EBE8E3;
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-block h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-block p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
  color: #5D4735;
}

.footer-block ul {
  list-style: none;
  padding: 0;
}

.footer-block ul li {
  margin-bottom: 8px;
}

.footer-block ul li a {
  font-size: 14px;
  color: #5D4735;
  transition: opacity 0.3s;
}

.footer-block ul li a:hover {
  opacity: 0.6;
}

/* Newsletter */
.footer-newsletter h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: none;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #DCD1C0;
  border-right: none;
  font-size: 14px;
  background: #EBE8E3;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #5D4735;
}

.newsletter-form button {
  padding: 10px 16px;
  background: #917355;
  color: #EBE8E3;
  border: 1px solid #917355;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #5D4735;
}

.footer-bottom {
  border-top: 1px solid #DCD1C0;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #5D4735;
}

/* ============================================
   RESPONSIVE: TABLETS (max-width: 1024px)
   ============================================ */
@media screen and (max-width: 1024px) {
  /* Hide inline nav and action buttons on tablet/mobile */
  .header-nav,
  .header-actions {
    display: none;
  }

  /* Show hamburger on tablet/mobile */
  .hamburger {
    display: block;
  }

  .header-inner {
    padding: 10px 20px;
    justify-content: space-between;
  }

  .image-text-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .image-text-grid--reverse .image-text__media {
    order: 0;
  }

  .image-text-grid--reverse .image-text__content {
    order: 0;
  }

  .halal-grid {
    grid-template-columns: 1fr;
  }

  .halal-grid__image {
    text-align: center;
  }

  .halal-grid__image img {
    margin: 0 auto;
  }

  .visit-grid {
    flex-direction: column;
    width: 95%;
  }

  .visit-grid__faq,
  .visit-grid__info {
    flex: 1 1 100%;
  }

  .vc-split-container {
    grid-template-columns: 1fr;
  }

  .host-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .directions-content {
    flex-direction: column;
    padding: 0 20px;
  }

  .directions-content__image,
  .directions-content__video {
    max-width: 100%;
  }

  .directions-content__image img {
    height: auto;
  }
}

/* ============================================
   RESPONSIVE: MOBILE (max-width: 767px)
   ============================================ */
@media screen and (max-width: 767px) {
  .hero-banner {
    min-height: 50vh;
  }

  .hero-banner--large {
    min-height: 60vh;
  }

  .visit-grid__faq h2 {
    font-size: 30px;
  }

  .info-buttons .btn {
    width: 70%;
  }

  .info-address-row {
    flex-direction: column;
  }

  .host-events-section {
    padding: 40px 15px 50px;
  }

  .host-events-heading {
    font-size: 24px;
  }

  .directions-section {
    padding: 30px 0;
  }

  .directions-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .promo-section {
    padding: 40px 0;
  }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (max-width: 540px)
   ============================================ */
@media screen and (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .host-events-grid {
    grid-template-columns: 1fr;
  }
}

/* Screen reader only - for SEO H1 tags */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   EVENT MENU PAGE
   ============================================ */

/* Section titles */
.em-section-title {
  text-align: center;
  font-size: 32px;
  color: #5D4735;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Intro */
.em-intro {
  padding: 60px 20px 40px;
  text-align: center;
}
.em-intro-text {
  font-size: 17px;
  color: #917355;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Quick nav cards */
.em-quick-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.em-quick-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  background: #EBE8E3;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.em-quick-nav__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.em-quick-nav__price {
  font-size: 26px;
  font-weight: 700;
  color: #917355;
}
.em-quick-nav__price sup {
  font-size: 14px;
}
.em-quick-nav__label {
  font-size: 14px;
  font-weight: 600;
  color: #5D4735;
  margin-top: 4px;
}
.em-quick-nav__pax {
  font-size: 12px;
  color: #917355;
  margin-top: 2px;
}

/* Package sections */
.em-package {
  padding: 60px 20px;
}
.em-package--light {
  background: #EBE8E3;
}
.em-package--dark {
  background: #5D4735;
  color: #EBE8E3;
}
.em-package--dark .em-course__title {
  color: #DCD1C0;
}
.em-package--dark .em-cn {
  color: #917355;
}

/* Package header */
.em-package__header {
  text-align: center;
  margin-bottom: 40px;
}
.em-package__badge {
  display: inline-block;
  background: #626354;
  color: #EBE8E3;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.em-package__badge--premium {
  background: #917355;
}
.em-package__name {
  font-size: 36px;
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.em-package--dark .em-package__name {
  color: #EBE8E3;
}
.em-package__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.em-package__price {
  font-size: 32px;
  font-weight: 700;
  color: #917355;
}
.em-package--dark .em-package__price {
  color: #EBE8E3;
}
.em-package__price small {
  font-size: 14px;
  font-weight: 400;
}
.em-package__price sup {
  font-size: 16px;
}
.em-package__pax {
  font-size: 14px;
  color: #917355;
  background: rgba(0,0,0,0.06);
  padding: 6px 14px;
  border-radius: 20px;
}
.em-package--dark .em-package__pax {
  color: #DCD1C0;
  background: rgba(255,255,255,0.1);
}

/* Course grid */
.em-package__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.em-course {
  background: rgba(255,255,255,0.07);
  padding: 24px;
  border-radius: 12px;
}
.em-package--light .em-course {
  background: #EBE8E3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.em-course__title {
  font-size: 18px;
  color: #917355;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(90,74,59,0.15);
}
.em-package--dark .em-course__title {
  border-bottom-color: rgba(255,255,255,0.15);
}
.em-course__title small {
  font-weight: 400;
  font-size: 13px;
  color: #917355;
}
.em-package--dark .em-course__title small {
  color: #917355;
}
.em-freeflow {
  display: inline-block;
  background: #626354;
  color: #EBE8E3 !important;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.em-course__items {
  list-style: none;
  padding: 0;
}
.em-course__items li {
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.em-package--dark .em-course__items li {
  border-bottom-color: rgba(255,255,255,0.06);
}
.em-course__items li:last-child {
  border-bottom: none;
}
.em-cn {
  display: block;
  font-size: 13px;
  color: #917355;
  margin-top: 2px;
}

/* Venue & Pricing */
.em-venue {
  padding: 60px 20px;
  background: #DCD1C0;
}
.em-venue-card {
  background: #DCD1C0;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  max-width: 700px;
  margin: 0 auto 20px;
}
.em-venue-card--full {
  max-width: 700px;
  text-align: center;
  border: 2px solid #917355;
}
.em-venue-card__title {
  font-size: 24px;
  color: #917355;
  margin-bottom: 6px;
}
.em-venue-card__subtitle {
  font-size: 14px;
  color: #917355;
  margin-bottom: 20px;
}
.em-venue-card--full .em-venue-card__subtitle {
  text-align: center;
}
.em-venue-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.em-venue-rate {
  text-align: center;
  padding: 16px;
  background: #EBE8E3;
  border-radius: 10px;
}
.em-venue-rate__label {
  display: inline-block;
  background: #5D4735;
  color: #EBE8E3;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.em-venue-rate__prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
}
.em-venue-rate__prices strong {
  font-size: 20px;
  color: #917355;
}
.em-venue-rate small {
  display: block;
  margin-top: 8px;
  color: #917355;
  font-size: 12px;
}

/* Exclusive use */
.em-venue-exclusive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.em-venue-card__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.em-venue-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #EBE8E3;
  border-radius: 8px;
  font-size: 14px;
}
.em-venue-row strong {
  color: #917355;
  font-size: 18px;
}

/* AV note */
.em-av-note {
  max-width: 700px;
  margin: 30px auto 0;
  background: #DCD1C0;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.em-av-note h4 {
  font-size: 16px;
  color: #917355;
  margin-bottom: 10px;
}
.em-av-note ul {
  list-style: disc;
  padding-left: 20px;
}
.em-av-note li {
  font-size: 14px;
  color: #5D4735;
  line-height: 1.7;
}

/* T&Cs */
.em-terms {
  padding: 60px 20px;
  background: #5D4735;
  color: #EBE8E3;
}
.em-terms .em-section-title {
  color: #EBE8E3;
}
.em-terms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.em-terms__block {
  background: rgba(255,255,255,0.06);
  padding: 24px;
  border-radius: 12px;
}
.em-terms__block h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #DCD1C0;
}
.em-terms__block ul {
  list-style: disc;
  padding-left: 18px;
}
.em-terms__block li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #DCD1C0;
}

/* CTA section */
.em-cta {
  padding: 60px 20px;
  background: #EBE8E3;
}
.em-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn--whatsapp {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid #25D366;
  background: #25D366;
  color: #EBE8E3;
  cursor: pointer;
  transition: background 0.3s;
}
.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

/* Responsive */
@media (max-width: 768px) {
  .em-quick-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .em-package__grid {
    grid-template-columns: 1fr;
  }
  .em-package__name {
    font-size: 28px;
  }
  .em-venue-exclusive {
    grid-template-columns: 1fr;
  }
  .em-venue-card__grid {
    grid-template-columns: 1fr;
  }
  .em-terms__grid {
    grid-template-columns: 1fr;
  }
  .em-venue-row {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .em-quick-nav {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .em-quick-nav__price {
    font-size: 22px;
  }
  .em-package__price {
    font-size: 26px;
  }
  .em-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}

.btn--outline {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid #917355;
  background: transparent;
  color: #917355;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn--outline:hover {
  background: #5D4735;
  color: #EBE8E3;
}
.btn--outline-light {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid #EBE8E3;
  background: transparent;
  color: #EBE8E3;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.2);
  color: #EBE8E3;
}
