/* Preethi Catering - Custom Luxury Dark Glassmorphism & Gold Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #7a0e28;
  --primary-light: #9e183a;
  --primary-dark: #3a0614;
  --gold: #d4a843;
  --gold-light: #f7d572;
  --gold-dark: #997415;
  --dark-bg: #07070d;
  --card-bg: rgba(14, 14, 22, 0.88);
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --text-light: #ffffff;
  --text-gray: #a0a0b8;
  --border-color: rgba(212, 168, 67, 0.25);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glow: 0 8px 30px rgba(212, 168, 67, 0.25);
  --glow-crimson: 0 8px 30px rgba(122, 14, 40, 0.4);
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Futuristic Keyframe Animations */
@keyframes floatCyberGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.18; }
  50% { transform: translate(30px, -25px) scale(1.1); opacity: 0.28; }
}

@keyframes laserShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulseGlowRing {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 168, 67, 0.4), inset 0 0 10px rgba(122, 14, 40, 0.2); }
  50% { box-shadow: 0 0 30px rgba(212, 168, 67, 0.8), inset 0 0 20px rgba(212, 168, 67, 0.4); }
}

/* Scroll Entrance Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Luxury Ambient Background Glows */
body::before {
  content: '';
  position: fixed;
  top: -15%;
  left: -15%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(122, 14, 40, 0.22) 0%, rgba(7, 7, 13, 0) 70%);
  pointer-events: none;
  z-index: -1;
  animation: floatCyberGlow 12s ease-in-out infinite;
}

body::after {
  content: '';
  position: fixed;
  bottom: -15%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.16) 0%, rgba(7, 7, 13, 0) 70%);
  pointer-events: none;
  z-index: -1;
  animation: floatCyberGlow 15s ease-in-out infinite reverse;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 67, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Global Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography & Section Titles */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 0.8rem;
  color: var(--text-light);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% 100%;
  animation: laserShimmer 3s linear infinite;
  margin: 0.8rem auto 0;
  border-radius: 2px;
  box-shadow: 0 0 12px var(--gold);
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  max-width: 680px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  font-weight: 300;
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 7, 13, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.4));
  transition: var(--transition);
}

.logo-link:hover .logo-img {
  transform: scale(1.06);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--gold);
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  padding: 0.4rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: var(--transition);
  box-shadow: 0 0 8px var(--gold);
}

nav a:hover {
  color: var(--gold);
}

nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-header-contact {
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid rgba(212, 168, 67, 0.4);
  transition: var(--transition);
  box-shadow: var(--glow-crimson);
}

.btn-header-contact:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.7rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 7, 13, 0.2) 0%, rgba(7, 7, 13, 0.85) 100%);
  z-index: 1;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: 10%;
  left: 5%;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--gold);
  bottom: 10%;
  right: 5%;
  opacity: 0.2;
}

.hero-centered {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-center-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 1.2rem;
  display: block;
  align-self: center;
  filter: drop-shadow(0 0 15px rgba(212, 168, 67, 0.6));
  animation: pulseLogo 4s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(212, 168, 67, 0.5)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(212, 168, 67, 0.8)); }
}

.hero-slogan-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.6rem;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 auto 1.2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.2);
  align-self: center;
  text-align: center;
}

.hero-title-large {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  text-align: center;
  width: 100%;
}

.hero-desc-centered {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
}

.hero-btns-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 2.2rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  border: 1px solid rgba(212, 168, 67, 0.4);
  box-shadow: var(--glow-crimson);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(212, 168, 67, 0.5);
  border-color: var(--gold);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-light);
  background: rgba(14, 14, 22, 0.6);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--glow);
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.75;
  transition: var(--transition);
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(212, 168, 67, 0.6);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* Stats Bar Section */
.stats-bar-section {
  background: linear-gradient(90deg, rgba(14, 14, 22, 0.95), rgba(30, 10, 20, 0.95));
  border-y: 1px solid var(--border-color);
  padding: 2.5rem 0;
  position: relative;
  z-index: 5;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-bar-item {
  padding: 1rem;
}

.stat-bar-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-bar-text {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-card {
  position: relative;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.4), rgba(122, 14, 40, 0.4));
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, var(--gold), transparent, transparent);
  animation: rotateGlow 8s linear infinite;
  z-index: 0;
}

@keyframes rotateGlow {
  100% { transform: rotate(360deg); }
}

.about-card-inner {
  position: relative;
  z-index: 1;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(16px);
}

.about-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
  border: 3px solid rgba(255,255,255,0.2);
}

.about-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.about-degree {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.about-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.about-card-desc {
  font-style: italic;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

.about-info p {
  color: var(--text-gray);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.about-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-bullets li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.98rem;
  color: var(--text-light);
}

.about-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Why Choose Us Grid */
.why-grid-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-row-1, .why-row-2 {
  display: grid;
  gap: 2rem;
}

.why-row-1 {
  grid-template-columns: repeat(3, 1fr);
}

.why-row-2 {
  grid-template-columns: repeat(2, 1fr);
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.08) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--glow);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  font-size: 1.6rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.6);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.why-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Menu Explorer Section */
.menu-search-container {
  max-width: 650px;
  margin: 0 auto 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.menu-search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.menu-search-box i {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.menu-search-box input {
  width: 100%;
  padding: 0.95rem 1.4rem 0.95rem 3.4rem;
  background: rgba(14, 14, 22, 0.85);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.menu-search-box input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
  background: rgba(20, 20, 32, 0.95);
}

.menu-search-box input:focus + i,
.menu-search-box input:focus ~ i {
  color: var(--gold-light);
  transform: translateY(-50%) scale(1.1);
}

.menu-explorer-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.menu-categories-sidebar {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.2rem;
  backdrop-filter: blur(16px);
  position: sticky;
  top: 105px;
  max-height: 75vh;
  overflow-y: auto;
}

.menu-categories-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.menu-cat-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-gray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.menu-cat-btn:hover {
  background: var(--surface-hover);
  color: var(--text-light);
}

.menu-cat-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(122,14,40,0.6) 100%);
  color: var(--text-light);
  font-weight: 500;
  border-left: 3px solid var(--gold);
}

.badge-counter {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
}

.menu-cat-btn.active .badge-counter {
  background: var(--gold);
  color: var(--dark-bg);
  font-weight: 600;
}

.menu-dishes-display {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(16px);
}

.menu-dishes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-dishes-header h3 {
  font-size: 1.8rem;
  color: var(--gold);
}

.menu-dishes-header span {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.menu-dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.menu-dish-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.menu-dish-item:hover {
  background: rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-3px);
}

.dish-bullet {
  color: var(--gold);
  font-size: 0.8rem;
}

.dish-name {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Gallery & Video Catalog */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--glow);
}

.video-thumbnail-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-element-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-card:hover .video-element-preview {
  transform: scale(1.06);
}

.video-overlay-btn {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(7, 7, 13, 0.8);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  z-index: 2;
}

.video-card:hover .video-overlay-btn {
  transform: scale(1.15);
  background: var(--gold);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.8);
}

.video-info {
  padding: 1.4rem;
}

.video-tag {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

.video-title {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.4;
}

/* Video & Lightbox Modals */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 13, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
}

.video-modal-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.video-modal-player {
  width: 100%;
  max-height: 70vh;
  background: #000;
  display: block;
}

.video-modal-info {
  padding: 1.5rem;
}

.video-modal-title {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.video-modal-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Upcoming Events Timeline */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.event-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--glow);
}

.event-card-header {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.event-calendar-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  text-align: center;
  min-width: 65px;
}

.event-calendar-month {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.event-calendar-day {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}

.event-calendar-year {
  font-size: 0.7rem;
  color: var(--text-gray);
}

.event-card-title-group h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.event-type-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  padding: 2px 10px;
  border-radius: 50px;
}

.event-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.event-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.event-detail-row i {
  color: var(--gold);
  width: 18px;
}

.event-status-pill {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-status-pill.booked {
  background: rgba(122, 14, 40, 0.3);
  color: #ff6b8b;
  border: 1px solid rgba(122, 14, 40, 0.6);
}

.event-status-pill.scheduled {
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold-light);
  border: 1px solid var(--border-color);
}

/* Featured Event Highlight Box */
.featured-event-box {
  background: linear-gradient(135deg, rgba(122, 14, 40, 0.25) 0%, rgba(212, 168, 67, 0.15) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--glow);
}

/* Footer Section */
.footer {
  background: #040408;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.4fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  height: 42px;
}

.footer-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-gray);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail span {
  font-size: 0.78rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.contact-detail p, .contact-detail a {
  color: var(--text-light);
  font-size: 0.95rem;
  text-decoration: none;
}

.link-phone:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.copyright {
  color: var(--text-gray);
  font-size: 0.88rem;
}

.mithun-credit {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.mithun-credit:hover {
  text-decoration: underline;
  color: var(--gold-light);
}

.fssai-badge {
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border-color);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.fssai-badge:hover {
  background: var(--gold);
  color: var(--dark-bg);
  box-shadow: var(--glow);
}

/* ==========================================================================
   ADMIN PANEL STYLING
   ========================================================================== */

.admin-body {
  background: #05050a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-header {
  background: rgba(14, 14, 22, 0.95);
  border-bottom: 1px solid var(--border-color);
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.admin-header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-logo span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gold);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.admin-logout {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.admin-logout:hover {
  background: var(--primary);
  border-color: var(--primary-light);
  box-shadow: var(--glow-crimson);
}

/* Executive Login Card */
.login-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.login-logo {
  width: 90px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px rgba(212, 168, 67, 0.5));
}

.login-title {
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.login-subtitle {
  color: var(--text-gray);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.login-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--glow-crimson);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(212, 168, 67, 0.6);
}

/* Admin Dashboard Layout */
.admin-container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 2rem;
  flex: 1;
  width: 100%;
}

.dashboard-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  backdrop-filter: blur(16px);
}

.dashboard-title h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.dashboard-title p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.admin-tabs {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  backdrop-filter: blur(16px);
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-gray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn i {
  font-size: 1.1rem;
  width: 20px;
}

.tab-btn:hover {
  background: var(--surface-hover);
  color: var(--text-light);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(122,14,40,0.6) 100%);
  color: var(--text-light);
  font-weight: 500;
  border-left: 3px solid var(--gold);
  box-shadow: -5px 0 15px rgba(212, 168, 67, 0.2);
}

.admin-content {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Form Controls */
.form-group {
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(7, 7, 13, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: var(--glow);
  background: rgba(14, 14, 22, 0.95);
}

.textarea-input {
  min-height: 120px;
  resize: vertical;
}

/* File Upload Drag-and-Drop Area */
.file-upload-area {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-area:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.05);
  box-shadow: var(--glow);
}

.file-upload-area p {
  color: var(--text-light);
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.file-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.file-preview-item {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.file-preview-item img, .file-preview-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Admin Add Form Box */
.admin-add-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
}

/* Video & Photo Row Cards in Admin */
.admin-video-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-video-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  transition: var(--transition);
}

.admin-video-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-color);
}

.admin-video-preview {
  width: 90px;
  height: 65px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.admin-video-preview video,
.admin-video-preview img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 4px;
}

.admin-event-date-preview {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid var(--border-color) !important;
}

.event-date-month {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.event-date-day {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.admin-video-info-col {
  width: 180px;
  flex-shrink: 0;
  min-width: 0;
}

.admin-video-title-text {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-light);
}

.admin-video-filename {
  font-size: 0.8rem;
  color: var(--text-gray);
  word-break: break-all;
}

.admin-video-input-col {
  flex: 1;
  min-width: 180px;
}

.admin-video-input-col .form-label {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  display: block;
}

.admin-video-input-col .form-input {
  width: 100%;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  background: rgba(7, 7, 13, 0.9);
}

.admin-video-row-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.admin-video-visible-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.admin-video-visible-box .form-label {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Toggle Switch Styling */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: .3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--gold);
  border-color: var(--gold);
}

input:checked + .slider:before {
  transform: translateX(22px);
  background-color: var(--dark-bg);
}

.btn-delete {
  background: var(--primary);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-delete:hover {
  background: #a01435;
  box-shadow: 0 0 15px rgba(160, 20, 53, 0.6);
}

/* Export Panel */
.export-panel {
  background: rgba(212, 168, 67, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}

.export-panel p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.btn-success {
  background: linear-gradient(135deg, #107c41 0%, #1f9a55 100%);
  color: #fff;
  border: 1px solid #2be480;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(16, 124, 65, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(43, 228, 128, 0.6);
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(14, 14, 22, 0.95);
  border: 1px solid var(--gold);
  color: var(--text-light);
  padding: 1rem 1.8rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--glow);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--gold);
  font-size: 1.3rem;
}

/* Mobile Responsiveness & Animations */
@keyframes slideDownNav {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .hero-title-large {
    font-size: 3.2rem;
  }
  .about-grid, .menu-explorer-layout, .admin-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .why-row-1, .why-row-2, .gallery-grid, .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .nav-container {
    height: 75px;
    padding: 0 1rem;
  }
  .logo-link {
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
  }
  .logo-img {
    height: 42px;
    flex-shrink: 0;
  }
  .logo-text {
    font-size: 1.25rem;
    white-space: nowrap;
  }
  .logo-text span {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  .header-right {
    gap: 0.8rem;
    flex-shrink: 0;
  }
  .btn-header-contact {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
  }

  nav#nav-menu {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(14, 14, 22, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    z-index: 999;
  }

  nav#nav-menu.active {
    display: block;
    animation: slideDownNav 0.3s ease forwards;
  }

  nav#nav-menu ul {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  nav#nav-menu a {
    font-size: 1.1rem;
    display: block;
    width: 100%;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 768px) {
  /* Website Header Mobile Alignment */
  .nav-container {
    height: 70px;
    padding: 0 0.75rem;
    gap: 0.5rem;
  }
  .logo-link {
    gap: 8px;
    min-width: 0;
    flex-shrink: 1;
  }
  .logo-img {
    height: 36px;
    flex-shrink: 0;
  }
  .logo-text {
    font-size: 1.1rem;
    line-height: 1.05;
    white-space: nowrap;
  }
  .logo-text span {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
  }
  .header-right {
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .btn-header-contact {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .mobile-menu-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  nav#nav-menu {
    top: 70px;
  }

  /* Admin Header */
  .admin-header {
    padding: 0.8rem 1rem;
  }
  .admin-header-container {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  .admin-logo {
    font-size: 1.3rem;
    flex-direction: column;
    gap: 4px;
  }
  .admin-logo span {
    border-left: none;
    padding-left: 0;
  }
  .admin-logout {
    padding: 0.4rem 1.2rem;
    font-size: 0.82rem;
  }

  /* Admin Dashboard Container & Title Bar */
  .admin-container {
    padding: 0 0.8rem;
    margin: 1rem auto;
  }
  .dashboard-title-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    padding: 1.4rem 1rem;
    text-align: center;
  }
  .dashboard-title h2 {
    font-size: 1.5rem;
  }
  .dashboard-title-bar .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Admin Tabs Sidebar */
  .admin-tabs {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    padding: 0.8rem 0.6rem !important;
    gap: 0.6rem !important;
    scrollbar-width: none;
    margin-bottom: 1.5rem !important;
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius) !important;
  }
  .admin-tabs::-webkit-scrollbar {
    display: none !important;
  }
  .tab-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 0.65rem 1.2rem !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    border: 1px solid var(--border-color) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--text-gray) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .tab-btn.active {
    border-left: none !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    color: var(--text-light) !important;
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.3) !important;
    border-color: rgba(212, 168, 67, 0.5) !important;
  }

  /* Admin Content Box */
  .admin-content {
    padding: 1.5rem 1rem !important;
  }
  .tab-content h3 {
    font-size: 1.5rem !important;
    margin-bottom: 1.2rem !important;
  }

  /* Admin Video / Photo / Event Rows */
  .admin-video-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.2rem !important;
    padding: 1.2rem !important;
    overflow: hidden !important;
  }
  .admin-video-preview {
    width: 100% !important;
    height: 160px !important;
  }
  .admin-video-info-col {
    width: 100% !important;
  }
  .admin-video-input-col {
    width: 100% !important;
  }
  .admin-video-row-actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 0.5rem;
  }
  .admin-video-row input[type="text"], .admin-video-row select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .admin-video-row div[title] {
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* Hero & Website Layout */
  .hero-centered {
    padding: 0 1rem !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-center-logo {
    width: 95px !important;
    margin: 0 auto 0.8rem !important;
    display: block !important;
    align-self: center !important;
  }
  .hero-slogan-gold {
    font-size: 0.78rem !important;
    padding: 0.35rem 1.2rem !important;
    letter-spacing: 2px !important;
    margin: 0 auto 0.8rem !important;
    align-self: center !important;
    text-align: center !important;
  }
  .hero-title-large {
    font-size: 2.2rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0.8rem !important;
    text-align: center !important;
  }
  .hero-desc-centered {
    font-size: 0.95rem !important;
    margin: 0 auto 1.5rem !important;
    text-align: center !important;
  }
  .menu-search-container {
    margin-bottom: 1.5rem !important;
    padding: 0 !important;
  }
  .menu-search-box i {
    left: 1.1rem !important;
    font-size: 0.95rem !important;
  }
  .menu-search-box input {
    padding: 0.75rem 1rem 0.75rem 2.8rem !important;
    font-size: 0.85rem !important;
  }
  .why-row-1, .why-row-2, .gallery-grid, .events-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .file-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Website Menu Explorer Pills & 2-Column Grid */
  .menu-categories-sidebar {
    position: static;
    max-height: none;
    padding: 0.6rem;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  .menu-categories-list {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.4rem;
    scrollbar-width: none;
  }
  .menu-categories-list::-webkit-scrollbar {
    display: none;
  }
  .menu-cat-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
  }
  .menu-cat-btn.active {
    border-left: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.3);
  }
  .menu-dishes-display {
    padding: 1.2rem 0.8rem;
  }
  .menu-dishes-header {
    margin-bottom: 1.2rem;
  }
  .menu-dishes-header h3 {
    font-size: 1.3rem;
  }
  .menu-dishes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
  }
  .menu-dishes-grid::-webkit-scrollbar {
    width: 4px;
  }
  .menu-dishes-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
  }
  .menu-dish-item {
    padding: 0.6rem 0.7rem;
    gap: 6px;
  }
  .dish-bullet {
    font-size: 0.7rem;
  }
  .dish-name {
    font-size: 0.82rem;
    line-height: 1.3;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 64px;
    padding: 0 0.5rem;
    gap: 0.35rem;
  }
  .logo-img {
    height: 32px;
  }
  .logo-text {
    font-size: 0.96rem;
  }
  .logo-text span {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }
  .btn-header-contact {
    padding: 0.38rem 0.65rem;
    font-size: 0.76rem;
  }
  .mobile-menu-btn {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }
  nav#nav-menu {
    top: 64px;
    padding: 1.2rem;
  }
}

@media (max-width: 360px) {
  .logo-text span {
    display: none;
  }
  .btn-header-contact {
    padding: 0.35rem 0.55rem;
    font-size: 0.72rem;
  }
}

/* ═══════════════════════════════════════════════
   MENU EDITOR — Admin Panel Styles
═══════════════════════════════════════════════ */

.menu-cat-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.menu-cat-block:hover {
  border-color: rgba(212,168,67,0.35);
}

.menu-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.04);
  gap: 0.8rem;
  flex-wrap: wrap;
}

.menu-cat-header-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.menu-cat-toggle {
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 6px;
  color: var(--gold, #d4a843);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.menu-cat-toggle:hover { background: rgba(212,168,67,0.3); }

.menu-chevron {
  transition: transform 0.25s ease;
}

.menu-cat-name-input {
  min-width: 160px;
  max-width: 260px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(212,168,67,0.25) !important;
}
.menu-cat-name-input:focus {
  border-color: var(--gold, #d4a843) !important;
  box-shadow: 0 0 0 2px rgba(212,168,67,0.15) !important;
}

.menu-item-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
}

.menu-cat-body {
  padding: 1rem 1.1rem 1.1rem;
}

.menu-items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  min-height: 32px;
}

.menu-item-chip {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 20px;
  padding: 0.28rem 0.55rem 0.28rem 0.75rem;
  transition: border-color 0.15s, background 0.15s;
  min-width: 80px;
  max-width: 100%;
}
.menu-item-chip:hover {
  border-color: rgba(212,168,67,0.55);
  background: rgba(212,168,67,0.15);
}

.menu-item-input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  min-width: 60px;
  max-width: 240px;
  width: auto;
  padding: 0 !important;
  box-shadow: none !important;
}

.menu-item-delete {
  background: none;
  border: none;
  color: rgba(255,80,80,0.7);
  cursor: pointer;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  border-radius: 50%;
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s;
  padding: 0;
}
.menu-item-delete:hover {
  color: #ff5050;
  background: rgba(255,80,80,0.15);
}

.menu-add-item-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.menu-add-item-row .form-input {
  flex: 1;
  min-width: 160px;
}

@media (max-width: 600px) {
  .menu-cat-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-cat-name-input {
    max-width: 100%;
    width: 100%;
  }
  .menu-cat-header .btn-delete {
    width: 100%;
    justify-content: center;
  }
  .menu-add-item-row {
    flex-direction: column;
  }
  .menu-add-item-row .btn {
    width: 100%;
  }
}

/* ── Upload Progress Bar ────────────────────────────────────────── */
.upload-progress {
  display: none;
  margin-top: 0.8rem;
  padding: 0.85rem 1rem;
  background: rgba(212, 168, 67, 0.04);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 10px;
  animation: fadeInUp 0.2s ease;
}

.upload-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.upload-progress-label {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 75%;
}

.upload-progress-pct {
  font-size: 0.82rem;
  color: var(--text-gray);
  font-family: var(--font-body);
  font-weight: 600;
}

.upload-progress-track {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  height: 8px;
  overflow: hidden;
}

.upload-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 6px;
  width: 0%;
  transition: width 0.25s ease, background 0.4s ease;
}

/* ── Mobile Upload UI Improvements ─────────────────────────────── */
@media (max-width: 768px) {
  /* File upload zones — larger touch target on mobile */
  .file-upload-area {
    padding: 1.8rem 1rem;
    min-height: 120px;
  }

  /* Upload & Add buttons — full-width on mobile */
  #add-video-btn,
  #add-photo-btn {
    width: 100% !important;
    padding: 0.9rem 1rem !important;
    font-size: 1rem !important;
    margin-top: 0.8rem;
  }

  /* Preview thumbnails — 2 columns on mobile */
  .file-preview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem;
  }

  /* Video preview in admin rows — smaller on mobile */
  .admin-video-preview {
    width: 70px !important;
    height: 52px !important;
    min-width: 70px;
  }

  /* Admin video rows — better stacking on small screens */
  .admin-video-row {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .admin-video-info-col {
    flex: 1 1 60%;
    min-width: 0;
  }

  .admin-video-input-col {
    flex: 1 1 100%;
  }

  .admin-video-row-actions {
    flex: 1 1 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Upload progress bar — full width */
  .upload-progress {
    margin-top: 0.6rem;
  }

  /* Form rows — single column on mobile */
  .form-row {
    grid-template-columns: 1fr !important;
  }
}
