
/*
Theme Name: Panjiri
Author: Raj Mina
Version: 5.0
Description: Luxury cinematic WordPress theme inspired by West Social
*/

/* ======================================================
   ROOT VARIABLES
====================================================== */

:root {
  --black: #0b0b0b;
  --dark: #111;
  --gold: #d4af37;
  --gold-soft: rgba(212,175,55,0.3);

  --text-main: rgba(255,255,255,0.9);
--text-muted: rgba(255,255,255,0.55);
p {
  color: var(--text-muted);
  max-width: 62ch;
}


  --font-serif: "Canela","Noe Display","Tiempos Headline",serif;
  --font-sans: "Söhne","Neue Haas Grotesk","Inter",sans-serif;

  --grid-line: rgba(255,255,255,0.035);
}

/* ======================================================
   RESET & GLOBAL
====================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }

/* =========================================
   EDITORIAL VIDEO LAYOUT
========================================= */

.editorial-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

/* Text */
.editorial-content h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 24px;
}

.editorial-content p {
  max-width: 420px;
  margin-bottom: 40px;
  font-size: 15px;
}

/* Media */
.editorial-media {
  display: flex;
  gap: 32px;
}

/* Arch mask */
.media-arch {
  width: 260px;
  height: 480px;
  overflow: hidden;
  border-radius: 140px;
  border: 1px solid rgba(212,175,55,0.25);
}

.media-arch video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.05);
}

/* ======================================================
   TYPOGRAPHY
====================================================== */

h1,h2,h3,h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.04em;
}

p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ======================================================
   BUTTON SYSTEM (ONE ONLY)
====================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 42px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  transition: all 0.35s ease;
}

.btn:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-1px);
}


/* =========================================
   HEADER – SHOW ONLY AFTER HERO
========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;

  z-index: 9999;
}

/* visible state */
.site-header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



/* ======================================================
   HEADER (HIDDEN ON HERO)
====================================================== */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  display: none;
}

body.scrolled .site-header { display: block; }

.header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panjiri-logo { height: 42px; }

.header-nav {
  display: flex;
  gap: 34px;
}

.header-nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header-nav a:hover { color: var(--gold); }

/* ======================================================
   SECTION SYSTEM
====================================================== */

.section {
  padding: 120px 20px;
}

.section.dark {
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95));
}

.section-cta {
  margin-top: 60px;
  text-align: center;
}

/* ======================================================
   HERO – VIDEO (WEST SOCIAL)
====================================================== */

.hero-video {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT: keeps hero full-bleed */
  object-position: center center; /* Adjust if needed */
  filter: brightness(1.05) contrast(1.08) saturate(1.05);
}

/* Desktop */
@media (min-width: 1025px) {
  .video-desktop {
    object-fit: cover;
    object-position: center center; /* tweak if needed */
  }
}

/* Mobile */
@media (max-width: 1024px) {
  .video-mobile {
    object-fit: cover;
    object-position: center center;
  }
}

.hero-video .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.65)
  );
  z-index: 1;
}

.hero-brand {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo {
  height: 90px;
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}


/* ======================================================
   ABOUT
====================================================== */

.about-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-grid h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.about-image {
  height: 520px;
  border: 1px solid var(--gold-soft);
  overflow: hidden;
}

.about-image img {
  height: 100%;
  object-fit: cover;
}


/* =====================================
   GALLERY PAGE – EDITORIAL SHOWCASE
===================================== */

/* HERO */
.gallery-hero {
  padding: 200px 20px 160px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.gallery-hero-inner {
  max-width: 680px;
  margin: auto;
}

.gallery-hero h1 {
  font-size: clamp(52px, 6vw, 72px);
  margin-bottom: 18px;
}

.gallery-hero p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* GRID */
.gallery-wrapper {
  padding: 140px 20px;
}

.gallery-grid {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 18px;
}

.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.6s ease;
  filter: brightness(0.95);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* STORY */
.gallery-story {
  padding: 160px 20px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.gallery-story-inner {
  max-width: 640px;
  margin: auto;
}

.gallery-story h2 {
  font-size: clamp(38px, 4vw, 52px);
  margin-bottom: 22px;
}

.gallery-story p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* CTA */
.gallery-cta {
  padding: 140px 20px;
  background: radial-gradient(circle at center, #111, #000);
  text-align: center;
}

.gallery-cta-inner h3 {
  font-size: clamp(32px, 3vw, 44px);
  margin-bottom: 32px;
}



/* ======================================================
   SIGNATURE
====================================================== */

.signature-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}

.signature-card {
  height: 460px;
  border: 1px solid var(--gold-soft);
  overflow: hidden;
}

.signature-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.signature-card:hover img {
  transform: scale(1.08);
}

/* ======================================================
   GALLERY
====================================================== */

.gallery-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.gallery-item {
  height: 420px;
  overflow: hidden;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}
/* =====================================
   RESERVE SECTION – EDITORIAL CARD
===================================== */

.reserve-editorial-card {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1.1fr;

  background: #0f0f0f;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

/* IMAGE */
.reserve-card-image {
  position: relative;
}

.reserve-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT */
.reserve-card-content {
  padding: 90px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0.6)
  );
}

.reserve-card-content h2 {
  font-size: clamp(38px, 4vw, 54px);
  margin-bottom: 22px;
}

.reserve-card-content .reserve-text {
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .reserve-editorial-card {
    grid-template-columns: 1fr;
  }

  .reserve-card-image {
    height: 320px;
  }

  .reserve-card-content {
    padding: 60px 40px;
  }
}
/* ======================================================
   MENU PDF
====================================================== */

.menu-wrapper { padding: 80px 20px; }

.menu-pdf iframe {
  width: 100%;
  height: 1800px;
  border-radius: 18px;
  border: 1px solid var(--gold-soft);
  background: #111;
}

/* ======================================================
   CONTACT
====================================================== */

.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-map iframe {
  width: 100%;
  min-height: 380px;
  border: 1px solid var(--gold-soft);
}

/* =====================================
   FOOTER – WEST SOCIAL INSPIRED
===================================== */

.site-footer {
  padding: 140px 20px 40px;
  background: transparent;
}

.footer-main {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}

/* HOURS */
.footer-hours h2 {
  font-size: clamp(38px, 4vw, 52px);
  margin-bottom: 36px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 420px;

  font-size: 15px;
  color: var(--text-muted);
}

.hours-row strong {
  color: var(--text-main);
}

/* FIND US */
.footer-find h2 {
  font-size: clamp(38px, 4vw, 52px);
  margin-bottom: 28px;
}

.footer-map {
  width: 100%;
  max-width: 520px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 16px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTACT CARDS */
.footer-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.contact-card {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-card span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.5);
}

.contact-card a {
  color: var(--text-main);
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-socials a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-socials a:hover {
  color: var(--gold);
}

/* BOTTOM */
.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--gold-soft);

  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 900px) {
  .about-grid,
  .signature-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .header-nav { display: none; }
}
/* ======================================================
   WEST SOCIAL – EDITORIAL DOT GRID (EXACT)
====================================================== */
.editorial-section {
  min-height: 600px;
}

.ws-grid::before {
  background-color: rgba(255,0,0,0.1);
}

.ws-grid {
  position: relative;
  overflow: hidden;
}

.ws-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image:
    radial-gradient(circle, rgba(255,255,255,0.055) 0.8px, transparent 0.8px);
  background-size: 56px 56px;

  mask-image: radial-gradient(
    ellipse at center,
    rgba(0,0,0,1) 38%,
    rgba(0,0,0,0.6) 58%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0,0,0,1) 38%,
    rgba(0,0,0,0.6) 58%,
    transparent 78%
  );
}

/* keep content above grid */
.ws-grid > * {
  position: relative;
  z-index: 2;
}

/* ================================
   WEST-SOCIAL STYLE EDITORIAL CARD
================================ */

.editorial-card-section {
  padding: 140px 20px;
}

.editorial-card {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: #0e0e0e;
  border-radius: 28px;
  overflow: hidden;
}

.editorial-text {
  padding: 100px 90px;
}

.editorial-image {
  position: relative;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================
   ELEGANT PRIMARY BUTTON
===================================== */

.menu-cta {
  margin-top: 36px;
}

.btn-elegant {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 46px;
  border-radius: 999px;

  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(212,175,55,0.95);
  background: transparent;
  border: 1px solid rgba(212,175,55,0.7);

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* subtle inner line for richness */
.btn-elegant::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* hover = calm confidence */
.btn-elegant:hover {
  background: rgba(212,175,55,0.95);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 10px 40px rgba(212,175,55,0.25);
}

.btn-elegant:hover::after {
  opacity: 1;
}

/* =====================================
   MENU PREVIEW – EDITORIAL
===================================== */

.menu-preview {
  padding: 140px 0;
}

.menu-preview-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.menu-preview-content h2 {
  font-size: clamp(42px, 5vw, 56px);
  margin-bottom: 28px;
}

.menu-preview-text {
  max-width: 520px;
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--text-muted);
}

.menu-preview-media {
  display: flex;
  gap: 36px;
}

/* Larger, more dominant than previous videos */
.media-arch.large {
  width: 320px;
  height: 560px;
  border-radius: 170px;
}

.site-header,
header,
header.site-header {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999 !important;
}

/* =====================================
   GALLERY PREVIEW – EDITORIAL CARD STYLE
===================================== */

.gallery-editorial-card {
  max-width: 1400px;
  margin: auto;
  border-radius: 26px;
  overflow: hidden;

  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.06);
}



/* =====================================
   FRONT PAGE – TYPOGRAPHY SYSTEM
===================================== */

.front-page {
  --font-heading: "Playfair Display", serif;
  --font-body: "DM Sans", sans-serif;
}

/* HEADINGS */
.front-page h1,
.front-page h2,
.front-page h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* BODY */
.front-page p,
.front-page a,
.front-page span,
.front-page li {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* =====================================
   FRONT PAGE – COLOR ACCENTS
===================================== */

.front-page {
  --accent-gold: #d4af37;
  --accent-saffron: #e09b3d;
  --accent-wine: #5a1a1a;
  --accent-emerald: #1f4d3a;
}

/* headings slight warmth */
.front-page h2 {
  color: rgba(255,255,255,0.92);
}

/* highlighted words (optional span) */
.front-page .accent {
  color: var(--accent-gold);
}

/* buttons stay premium */
.front-page .btn {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* tiny detail lines / dividers */
.front-page hr,
.front-page .divider {
  border-color: rgba(212,175,55,0.25);
}

/* ================================
   TYPOGRAPHY SCALE – FRONT PAGE
================================ */

/* Hero only */
.front-page .hero-brand h1 {
  font-size: clamp(56px, 7vw, 84px);
  letter-spacing: 0.04em;
}

/* Section headlines */
.front-page section h2 {
  font-size: clamp(38px, 4vw, 54px);
  letter-spacing: 0.02em;
}

/* Secondary headlines (cards, footer titles) */
.front-page .card h2,
.front-page .footer-hours h2,
.front-page .footer-find h2 {
  font-size: clamp(32px, 3vw, 42px);
}

/* BODY COPY REFINEMENT */
.front-page p {
  max-width: 48ch;   /* was effectively wider */
  line-height: 1.75;
}



/* ======================================================
   ABOUT PAGE – WEST SOCIAL EDITORIAL
====================================================== */

/* HERO */
.about-hero {
  padding: 180px 20px 140px;
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  text-align: center;
}

.about-hero-inner {
  max-width: 760px;
  margin: auto;
}

.about-hero h1 {
  font-size: clamp(46px, 5vw, 64px);
  margin-bottom: 18px;
}

.about-hero p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* EDITORIAL SPLIT */
.about-editorial {
  padding: 160px 20px;
}

.about-editorial-inner {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

/* TEXT */
.about-editorial-content h2 {
  font-size: clamp(40px, 4vw, 54px);
  margin-bottom: 24px;
}

.about-intro {
  max-width: 520px;
  margin-bottom: 40px;
  font-size: 16px;
  color: var(--text-muted);
}

.about-points {
  list-style: none;
  padding: 0;
  max-width: 560px;
}

.about-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
}

.about-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 18px;
}

/* IMAGE */
.about-editorial-media {
  max-width: 540px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 22px;
}

.about-editorial-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* EXPERIENCE */
.about-experience {
  padding: 160px 20px;
  background: linear-gradient(#0b0b0b, #111);
}

.about-experience-inner {
  max-width: 720px;
  justify-self: center;   /* 🔥 grid override */
  text-align: center;
}

.about-experience h2 {
  font-size: clamp(38px, 4vw, 52px);
  margin-bottom: 22px;
}

.about-experience p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;   /* 🔑 aligns P with H2 */
}

/* MOBILE */
@media (max-width: 900px) {
  .about-editorial-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-editorial-media {
    margin-left: 0;
    max-width: 100%;
  }
}

/* ======================================================
   FRONT PAGE – LUXURY ATMOSPHERE SYSTEM
====================================================== */

.front-page section {
  position: relative;
  overflow: hidden;
}

/* warm cinematic wash */
.front-page section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background: radial-gradient(
    ellipse at left,
    rgba(60,20,15,0.28),
    rgba(11,11,11,0.92) 65%
  );
}

/* subtle editorial dot grid */
.front-page section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image:
    radial-gradient(circle, rgba(255,255,255,0.045) 0.7px, transparent 0.7px);
  background-size: 60px 60px;

  mask-image: radial-gradient(
    ellipse at center,
    black 35%,
    rgba(0,0,0,0.6) 60%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 35%,
    rgba(0,0,0,0.6) 60%,
    transparent 78%
  );
}

/* keep all real content above effects */
.front-page section > * {
  position: relative;
  z-index: 2;
}

/* =====================================
   CONTACT PAGE – EDITORIAL LUXURY
===================================== */

/* HERO */
.contact-hero {
  padding: 200px 20px 160px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.contact-hero-inner {
  max-width: 640px;
  margin: auto;
}

.contact-hero h1 {
  font-size: clamp(52px, 6vw, 72px);
  margin-bottom: 18px;
}

.contact-hero p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* GRID */
.contact-wrapper {
  padding: 140px 20px;
}

.contact-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}

/* INFO CARD */
.contact-info-card {
  background: rgba(255,255,255,0.02);
  border-radius: 28px;
  padding: 80px 70px;
}

.contact-info-card h2 {
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 40px;
}

/* ITEMS */
.contact-item {
  margin-bottom: 28px;
}

.contact-item span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 16px;
}

/* SOCIALS */
.contact-socials {
  margin-top: 40px;
  display: flex;
  gap: 24px;
}

.contact-socials a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* MAP */
.contact-map-card {
  border-radius: 28px;
  overflow: hidden;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-info-card {
    padding: 60px 40px;
  }
}
/* =====================================
   CONTACT PAGE – IMAGE CARD
===================================== */

.contact-image-card {
  border-radius: 28px;
  overflow: hidden;
}

.contact-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}
/* ABOUT HERO – TYPOGRAPHY REFINEMENT */
.about-hero-inner {
  max-width: 760px;
  margin: auto;
  padding-top: 40px; /* pushes content slightly down */
  text-align: center;
}

/* Main heading */
.about-hero h1 {
  margin-bottom: 28px;     /* space below heading */
  line-height: 1.15;       /* elegant, not cramped */
}

/* Sub text */
.about-hero p {
  max-width: 560px;        /* controls line length */
  margin: 0 auto;          /* centers paragraph */
  font-size: 16px;
  line-height: 1.75;       /* luxury spacing */
  color: var(--text-muted);
}


/* ======================================================
   MOBILE + iPAD REFINEMENT LAYER (SAFE DROP-IN)
   DO NOT EDIT EXISTING STYLES ABOVE
====================================================== */

/* Prevent horizontal scroll */
@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }
}

/* ===============================
   HERO (MOBILE + iPAD)
================================ */

@media (max-width: 900px) {
  .hero-video {
    height: 90vh;
  }

  .hero-logo {
    height: 64px;
  }

  .hero-tagline {
    font-size: 10px;
    letter-spacing: 0.32em;
    margin-top: 6px;
  }
}

/* ===============================
   GLOBAL SECTION STACKING
================================ */

@media (max-width: 900px) {
  .editorial-inner,
  .about-editorial-inner,
  .menu-preview-inner,
  .gallery-preview-inner,
  .reserve-editorial-card,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 48px;
  }

  section {
    padding: 90px 20px;
  }
}

/* ===============================
   ARCH IMAGES (FIX CROPPING)
================================ */

@media (max-width: 900px) {
  .media-arch,
  .media-arch.large {
    width: 220px;
    height: 380px;
    margin: 0 auto;
  }

  .editorial-media,
  .menu-preview-media {
    justify-content: center;
  }
}



/* ===============================
   BUTTONS (TOUCH FRIENDLY)
================================ */

@media (max-width: 768px) {
  .btn,
  .btn-elegant {
    padding: 14px 36px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}

/* ===============================
   TYPOGRAPHY READABILITY
================================ */

@media (max-width: 768px) {
  h1 {
    font-size: clamp(34px, 7vw, 46px);
  }

  h2 {
    font-size: clamp(30px, 6vw, 40px);
  }

  p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ===============================
   HEADER MOBILE SPACING
================================ */

@media (max-width: 768px) {
  .header-inner {
    padding: 14px 18px;
  }

  .panjiri-logo {
    height: 34px;
  }

  .header-cta .btn {
    padding: 10px 26px;
    font-size: 10px;
  }
}

/* ===============================
   FOOTER STACK FIX
================================ */

@media (max-width: 900px) {
  .footer-contact-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom {
    text-align: center;
    gap: 10px;
  }
}

/* ======================================================
   MOBILE & TABLET RESPONSIVE FIXES
   (DESKTOP UNTOUCHED)
====================================================== */

/* Prevent sideways scroll */
html, body {
  overflow-x: hidden;
}

/* =========================
   GLOBAL MOBILE TYPOGRAPHY
========================= */
@media (max-width: 1024px) {

  h1 {
    font-size: clamp(34px, 8vw, 44px);
    line-height: 1.25;
  }

  h2 {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.3;
  }

  p {
    font-size: 14px;
    max-width: 100%;
  }
}

/* =========================
   HERO FIX
========================= */
@media (max-width: 1024px) {

  .hero-video {
    height: 100svh; /* iOS-safe viewport */
  }

  .hero-brand {
    padding: 0 22px;
  }

  .hero-logo {
    height: 64px;
  }

  .hero-tagline {
    font-size: 10px;
    letter-spacing: 0.28em;
  }
}

/* =========================
   STACK ALL EDITORIAL GRIDS
========================= */
@media (max-width: 1024px) {

  .editorial-inner,
  .about-grid,
  .about-editorial-inner,
  .menu-preview-inner,
  .gallery-preview-inner,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 48px;
  }
}

/* =========================
   IMAGE & VIDEO SAFETY
========================= */
@media (max-width: 1024px) {

  img,
  video {
    max-width: 100%;
    height: auto;
  }

  .media-arch,
  .about-editorial-media,
  .gallery-preview-right,
  .contact-image-card {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .media-arch video,
  .media-arch img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
}

/* =========================
   GALLERY FIX
========================= */
@media (max-width: 1024px) {

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    aspect-ratio: 4 / 5;
    height: auto;
  }
}

/* =========================
   BUTTONS & SPACING
========================= */
@media (max-width: 1024px) {

  .btn,
  .btn-elegant {
    padding: 14px 34px;
    font-size: 11px;
  }

  section {
    padding: 90px 20px;
  }
}

/* =========================
   HEADER (SAFE AREA)
========================= */
@media (max-width: 1024px) {

  .site-header {
    padding-top: env(safe-area-inset-top);
  }
}

/* =========================
   FOOTER CLEANUP
========================= */
@media (max-width: 1024px) {

  .footer-contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* =========================================
   OUR MENU – MOBILE FIX ONLY
   (TEXT + VIDEO CROPPING)
========================================= */

@media (max-width: 1024px) {

  /* Ensure text block can grow */
  .menu-preview-content,
  .menu-preview-text {
    max-width: 100%;
    height: auto;
    overflow: visible;
  }

  .menu-preview-content h2 {
    font-size: clamp(30px, 7vw, 40px);
    line-height: 1.25;
  }

  .menu-preview-text {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Stack layout safely */
  .menu-preview-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Fix circular media cropping */
  .menu-preview-media {
    justify-content: center;
    gap: 24px;
  }

  .menu-preview-media .media-arch {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .menu-preview-media .media-arch video,
  .menu-preview-media .media-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Play button centering safety */
  .menu-preview-media .play-btn,
  .menu-preview-media button {
    inset: 50%;
    transform: translate(-50%, -50%);
  }
}



  // 🔒 MOBILE + TABLET ONLY
  if (!window.matchMedia("(max-width: 1024px)").matches) {
    return; // 🚫 desktop untouched
  }

  const videos = document.querySelectorAll("video");

  if (!videos.length) return;

  // Mobile autoplay safety
  videos.forEach(video => {
    video.muted = true;
    video.playsInline = true;
    video.setAttribute("muted", "");
    video.setAttribute("playsinline", "");
  });

  // Use Intersection Observer
  if (!("IntersectionObserver" in window)) {
    videos.forEach(video => {
      video.play().catch(() => {});
    });
    return;
  }

  const observer = new IntersectionObserver(
    (entries) => {
      entries.forEach(entry => {
        const video = entry.target;

        if (entry.isIntersecting) {
          video.play().catch(() => {});
        } else {
          video.pause();
        }
      });
    },
    { threshold: 0.6 }
  );

  videos.forEach(video => observer.observe(video));
});

@media (max-width: 1024px) {
  .hero-video,
  .editorial-section {
    height: auto !important;
    min-height: auto !important;
  }
}
<?php

/* ===============================
   RESERVATION PAGE – LUXURY
================================ */

.reservation-page {
  min-height: 100vh;
  padding: 140px 20px 100px;

  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
    url("https://images.pexels.com/photos/941861/pexels-photo-941861.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.reservation-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.reservation-card {
  width: 100%;
  max-width: 760px;
  padding: 60px;

  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);

  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 40px 90px rgba(0,0,0,0.85);
}

/* Header */
.reservation-header {
  text-align: center;
  margin-bottom: 50px;
}

.reservation-accent {
  display: block;
  width: 50px;
  height: 2px;
  background: #d4af37;
  margin: 0 auto 16px;
}

.reservation-header h1 {
  font-family: serif;
  font-size: 42px;
  color: #fff;
}

.reservation-header p {
  color: #ccc;
  font-size: 16px;
}

/* Form */
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 6px;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 16px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: #d4af37;
}

/* Submit Button */
.reserve-btn {
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;

  border: none;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 0.18em;
  font-weight: 700;
  cursor: pointer;

  transition: all 0.3s ease;
}

.reserve-btn:hover {
  background: #fff;
}

/* Success Message */
.reservation-success {
  background: rgba(212,175,55,0.15);
  border: 1px solid #d4af37;
  color: #fff;
  padding: 16px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .reservation-card {
    padding: 40px 24px;
  }

  .reservation-header h1 {
    font-size: 32px;
  }
}

/* Make date picker icon white */
.form-row input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.85;
  cursor: pointer;
}

/* Optional: on hover make it fully white */
.form-row input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Contact map card */
.contact-map-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  min-height: 420px;
  background: #000;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(80%) contrast(1.1);
}

/* -----------------------------
   MOBILE HEADER TOGGLE
----------------------------- */

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* Mobile breakpoint */
@media (max-width: 1024px) {

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .mobile-menu-btn {
    font-size: 28px;
    background: none;
    border: none;
    color: #d4af37;
    cursor: pointer;
  }
}

/* -----------------------------
   MOBILE SLIDE MENU
----------------------------- */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: #f6efe7; /* Mishree-style warm tone */
  z-index: 9999;
  padding: 40px 30px;
  transition: right 0.4s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.mobile-nav a {
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c4a4a;
  text-decoration: none;
}

/* Reserve button */
.mobile-reserve {
  margin-top: 40px;
  padding: 14px 24px;
  border: 2px solid #b88a5a;
  border-radius: 40px;
  text-align: center;
  color: #b88a5a;
  font-weight: 600;
}


/* ===== SIMPLE MOBILE HEADER MENU ===== */

/* Hide hamburger on desktop */
.mobile-hamburger,
.mobile-menu-simple {
  display: none;
}

/* Mobile & iPad only */
@media (max-width: 1024px) {

  /* Show hamburger */
  .mobile-hamburger {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: #d4af37;
    cursor: pointer;
  }

  /* Slide menu */
  .mobile-menu-simple {
    display: block;
    position: fixed;
    inset: 0;
    background: #111;
    z-index: 9999;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu-simple.active {
    transform: translateX(0);
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  .mobile-menu-links {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .mobile-menu-links a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 0.1em;
  }

  .mobile-reserve-btn {
    margin-top: 30px;
    padding: 14px;
    border: 1px solid #d4af37;
    border-radius: 30px;
    text-align: center;
    color: #d4af37;
  }
}


@media (max-width: 1024px) {
  body {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }
}

@media (max-width: 900px) {
  .about-hero {
    padding-top: 140px;
  }
}


/* FIX MOBILE LINK CLICK ISSUE */
.mobile-menu-simple {
  pointer-events: none;
}

.mobile-menu-simple.active {
  pointer-events: auto;
}

a, button {
  touch-action: manipulation;
}


/* ===============================
   HERO LOGO (PNG)
================================ */

.hero-logo {
  display: block;
  max-width: 180px;      /* desktop size */
  width: 100%;
  height: auto;

  margin: 0 auto 24px;  /* center + spacing */
  object-fit: contain;

  /* subtle premium touch */
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.35));
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-logo {
    max-width: 150px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 120px;
    margin-bottom: 20px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-logo {
    max-width: 100px;
  }
}

/* =====================================
   GALLERY PREVIEW – FINAL CLEAN VERSION
===================================== */

.gallery-preview {
  padding: 140px 20px;
  background: var(--black);
}

.gallery-preview-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: stretch;
}

/* LEFT PANEL */
.gallery-preview-left {
  padding: 90px 80px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0.6)
  );
}

.gallery-preview-left h2 {
  font-size: clamp(38px, 4vw, 52px);
  margin-bottom: 22px;
}

.gallery-preview-left p {
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* RIGHT PANEL : VIDEO */
.gallery-preview-right {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 520px;
}

/* VIDEO FILL */
.gallery-preview-right video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ENSURE IMAGE NEVER SHOWS */
.gallery-preview-right img {
  display: none !important;
}

/* MOBILE */
@media (max-width: 900px) {
  .gallery-preview-inner {
    grid-template-columns: 1fr;
  }

  .gallery-preview-left {
    padding: 60px 40px;
  }

  .gallery-preview-right {
    min-height: 320px;
  }
}

/* GALLERY VIDEO – PROPER FIT (NO CROP) */
.gallery-preview-right {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: transparent;
}

/* VIDEO */
.gallery-preview-right video {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* 👈 shows FULL video */
  object-position: center;
  display: block;
}


/* Show desktop by default */
.video-desktop {
  display: block;
}

.video-mobile {
  display: none;
}

/* Switch to vertical video on mobile & tablet */
@media (max-width: 1024px) {

  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }

}


.site-header {
  position: fixed;
  top: -120px; /* hide initially */
  left: 0;
  right: 0;
  transition: top 0.4s ease;
  z-index: 9999;
}

/* ===============================
   HIDE HEADER CTA BUTTONS ON MOBILE
   Must be at the VERY BOTTOM of style.css
================================ */

@media (max-width: 1024px) {
  .header-cta,
  .header-cta .btn,
  .header-cta .btn-reserve,
  .header-cta .btn-iorders {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
