/* =========================================
   Babis Hinkiamis — Official Website
   Style Sheet v1.0
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&family=Noto+Serif+Greek:wght@400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-primary: #080810;
  --bg-secondary: #0f0f1a;
  --bg-card: #14141f;
  --bg-card-hover: #1c1c2a;
  --color-gold: #c9a84c;
  --color-gold-light: #e8d5a3;
  --color-gold-dark: #9a7a30;
  --color-text: #f0ece4;
  --color-text-muted: #7a7a90;
  --color-text-light: #b0a8c0;
  --color-border: #22223a;
  --color-border-gold: rgba(201, 168, 76, 0.3);
  --color-success: #4caf7d;
  --color-error: #e25555;
  --font-serif: 'Playfair Display', 'Noto Serif Greek', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 76px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--color-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-gold-light); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  color: var(--color-text-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* --- Language Selector --- */
.lang-selector {
  position: relative;
}

.lang-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.lang-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  min-width: 160px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}

.lang-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--color-text-light);
  font-size: 0.85rem;
  transition: var(--transition);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
}

.lang-flag { font-size: 1.1rem; }

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, #1a1040 0%, #080810 60%),
              url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-primary) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeInUp 1s ease forwards;
}

.hero-tag {
  display: inline-block;
  font-size: 13.2px; /* +20% from 11px */
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3rem, 8.4vw, 6.6rem); /* +20% from clamp(2.5rem, 7vw, 5.5rem) */
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.05;
  margin-bottom: 8px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

.hero h1 span { color: var(--color-gold); }

.hero-subtitle {
  font-size: clamp(1.08rem, 2.4vw, 1.38rem); /* +20% from clamp(0.9rem, 2vw, 1.15rem) */
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Scroll indicator --- */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-down::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--bg-primary);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-gold-outline:hover {
  background: var(--color-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 0.78rem; }

/* =========================================
   EVENT CARDS
   ========================================= */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

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

.event-card-header {
  background: linear-gradient(135deg, #1a1030 0%, #0f0f20 100%);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--color-border);
}

.event-date-box {
  background: var(--color-gold);
  color: var(--bg-primary);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}

.event-date-box .day {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-serif);
}

.event-date-box .month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.event-info h3 {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 6px;
  font-weight: 700;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.event-meta span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-meta i { color: var(--color-gold); width: 12px; }

.event-card-body {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.event-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
}

.event-price.free { color: var(--color-success); font-size: 1rem; }

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.badge-upcoming { background: rgba(201, 168, 76, 0.15); color: var(--color-gold); }
.badge-past { background: rgba(122, 122, 144, 0.15); color: var(--color-text-muted); }
.badge-free { background: rgba(76, 175, 125, 0.15); color: var(--color-success); }

/* =========================================
   CALENDAR
   ========================================= */
.calendar-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
}

.fc {
  --fc-border-color: var(--color-border) !important;
  --fc-today-bg-color: rgba(201, 168, 76, 0.08) !important;
  --fc-event-bg-color: var(--color-gold) !important;
  --fc-event-border-color: var(--color-gold-dark) !important;
  --fc-button-bg-color: var(--color-gold) !important;
  --fc-button-border-color: var(--color-gold-dark) !important;
  --fc-button-hover-bg-color: var(--color-gold-light) !important;
  --fc-page-bg-color: transparent !important;
}

.fc .fc-toolbar-title { color: var(--color-text) !important; font-family: var(--font-serif) !important; }
.fc .fc-col-header-cell-cushion { color: var(--color-gold) !important; font-size: 0.8rem !important; letter-spacing: 1px; text-transform: uppercase; }
.fc .fc-daygrid-day-number { color: var(--color-text-muted) !important; }
.fc .fc-event { border-radius: 4px !important; font-size: 0.75rem !important; }
.fc .fc-button { border-radius: var(--radius-sm) !important; font-weight: 600 !important; }
.fc .fc-button-primary { color: var(--bg-primary) !important; }
.fc-theme-standard td, .fc-theme-standard th { border-color: var(--color-border) !important; }

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-grid.large {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay p {
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--color-gold);
  color: var(--bg-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* --- Facebook Photo Card --- */
.fb-photo-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.fb-photo-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.fb-photo-card .photo-thumb {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1a1030, #0f0f20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-gold);
  position: relative;
  overflow: hidden;
}

.fb-photo-card .photo-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23c9a84c' stroke-width='0.5' fill='none' opacity='0.2'/%3E%3C/svg%3E") center/cover;
}

.fb-photo-card .photo-info {
  padding: 16px;
}

.fb-photo-card .photo-info h4 {
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.fb-photo-card .photo-info p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  animation: zoomIn 0.3s ease;
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
}

.lightbox-close:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--bg-primary); }

.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--bg-primary);
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  z-index: 10000;
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #0f0f1a;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-thumb:hover .video-thumb-img { transform: scale(1.05); }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--bg-primary);
  transition: var(--transition);
  cursor: pointer;
}

.video-play-btn:hover { background: var(--color-gold); transform: translate(-50%, -50%) scale(1.1); }

.video-info { padding: 16px 20px; }

.video-info h3 {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 6px;
}

.video-info p { font-size: 0.82rem; color: var(--color-text-muted); }

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.video-modal-content {
  position: relative;
  width: min(90vw, 900px);
  aspect-ratio: 16/9;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.video-modal-close:hover { background: var(--color-gold); }

/* =========================================
   SHOP
   ========================================= */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.product-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1030, #0f0f20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-gold);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-info { padding: 20px; }

.product-info h3 {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 6px;
}

.product-info p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-section {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--color-text);
}

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--color-border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-detail .text h4 { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 2px; }
.contact-detail .text a, .contact-detail .text p { color: var(--color-text); font-size: 0.9rem; }

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-text-muted); }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success, .form-error {
  display: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 16px;
}

.form-success { background: rgba(76, 175, 125, 0.1); border: 1px solid rgba(76, 175, 125, 0.3); color: var(--color-success); }
.form-error { background: rgba(226, 85, 85, 0.1); border: 1px solid rgba(226, 85, 85, 0.3); color: var(--color-error); }

/* =========================================
   MAP SECTION
   ========================================= */
.map-section { padding: 0; }

.map-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(70%);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 340px;
  background: rgba(8, 8, 16, 0.92);
  backdrop-filter: blur(10px);
  border-right: 1px solid var(--color-border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.map-overlay h3 { font-size: 1.5rem; color: var(--color-text); }
.map-overlay p { color: var(--color-text-muted); font-size: 0.9rem; }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col ul a:hover { color: var(--color-text); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: var(--color-text-muted); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-hero .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.page-hero p { color: var(--color-text-muted); max-width: 500px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  justify-content: center;
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb .sep { color: var(--color-border); }
.breadcrumb .current { color: var(--color-gold); }

/* =========================================
   TABLE (concerts / events list)
   ========================================= */
.events-table {
  width: 100%;
  border-collapse: collapse;
}

.events-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-border);
}

.events-table td {
  padding: 18px 20px;
  font-size: 0.9rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.events-table tr:hover td { background: rgba(201, 168, 76, 0.04); }

.events-table tr:last-child td { border-bottom: none; }

.table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  overflow-x: auto;
}

/* =========================================
   WHATSAPP BUTTON
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #1fb855;
  transform: scale(1.1);
  color: white;
  animation: none;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

.animate-on-scroll {
  opacity: 1.0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   SEPARATORS & UTILITY
   ========================================= */
.bg-alt { background: var(--bg-secondary); }
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-4 { margin-bottom: 32px; }

/* Horizontal rule */
.hr-gold {
  border: none;
  border-top: 1px solid var(--color-border-gold);
  margin: 48px 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-overlay { width: 100%; position: relative; height: auto; border-right: none; border-bottom: 1px solid var(--color-border); }
  .map-wrapper { height: auto; flex-direction: column; display: flex; }
  .map-wrapper iframe { height: 320px; }
}

@media (max-width: 1024px) {
  .nav-right {
    gap: 4px;
  }
  .nav-logo a {
    font-size: 90%;
  }
  .nav-logo .logo-sub {
    font-size: 55%;
    letter-spacing: 2px;
    margin-top: 6px;
  }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }

  .nav-right {
    gap: 4px;
  }

  .nav-logo a {
    font-size: 90%;
  }

  .nav-logo .logo-sub {
    font-size: 55%;
    letter-spacing: 2px;
    margin-top: 6px;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(8, 8, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: 1px solid var(--color-border);
    display: none;
  }

  .nav-menu.open { display: flex; max-height: 500px; }
  .nav-menu a { padding: 12px 16px; font-size: 0.95rem; border-radius: var(--radius-sm); }

  .hamburger { display: flex; }
  .social-icons { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .events-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---- Cart & Checkout Modals ---- */
#cartModal, #checkoutModal, #ticketModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
}
#cartModal.open, #checkoutModal.open, #ticketModal.open {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media(max-width:768px) {
  #cartModal.open, #checkoutModal.open, #ticketModal.open {
    align-items: flex-end;
    justify-content: center;
  }
}
.cart-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.cart-modal-panel {
  position: relative;
  background: var(--bg-secondary);
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: 16px 0 0 16px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.3s ease;
}
@media(max-width:768px) {
  .cart-modal-panel {
    border-radius: 16px 16px 0 0;
    width: 100%;
    height: 85vh;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-bottom: none;
  }
}
.cart-modal-checkout { width: 480px; }
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-modal-header h3 { font-family: var(--font-serif); color: var(--color-gold); font-size: 1.2rem; margin: 0; }
.cart-modal-header .video-modal-close { position: static; top: auto; right: auto; color: #fff; margin-left: auto; flex-shrink: 0; }
#cartItemsContainer { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-modal-footer { padding: 16px 24px 24px; border-top: 1px solid var(--color-border); flex-shrink: 0; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; }
.cart-total-row strong { color: var(--color-gold); font-size: 1.3rem; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-emoji { font-size: 2rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; margin-bottom: 4px; }
.cart-item-price { font-size: 0.85rem; color: var(--color-gold); font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cart-item-qty button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--color-border-gold);
  background: transparent; color: var(--color-gold);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.cart-item-qty button:hover { background: rgba(201,168,76,0.15); }
.cart-item-qty span { font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; color: var(--color-text-muted); cursor: pointer; padding: 4px; transition: var(--transition); flex-shrink: 0; }
.cart-item-remove:hover { color: #ef4444; }

/* Cart nav button */
.cart-nav-btn {
  position: relative;
  background: none;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  padding: 6px 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.cart-nav-btn:hover { background: rgba(201,168,76,0.1); }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--color-gold);
  color: #080810;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Checkout steps */
.checkout-steps { display: flex; align-items: center; gap: 4px; margin-top: 8px; }
.checkout-steps .step {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.checkout-steps .step.active { border-color: var(--color-gold); color: var(--color-gold); background: rgba(201,168,76,0.1); }
.checkout-steps .step.done { border-color: #22c55e; color: #22c55e; background: rgba(34,197,94,0.1); }
.checkout-steps .step-line { flex: 1; height: 2px; background: var(--color-border); border-radius: 1px; min-width: 20px; }
.checkout-form { padding: 24px; }
.checkout-order-summary {
  background: var(--bg-primary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}
.checkout-card-display {
  background: linear-gradient(135deg, #1a1030, #2a1060);
  border: 1px solid var(--color-border-gold);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  font-family: monospace;
}
.card-chip { width: 36px; height: 28px; background: linear-gradient(135deg, #c9a84c, #f0d060); border-radius: 6px; margin-bottom: 20px; }
.card-number { font-size: 1.1rem; letter-spacing: 3px; color: var(--color-text); }

/* Scroll-to-top button */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 90px; /* left of whatsapp */
  width: 48px; height: 48px;
  background: rgba(20,16,40,0.9);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  text-decoration: none;
  backdrop-filter: blur(10px);
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: rgba(201,168,76,0.2);
  color: var(--color-gold);
}
@media(max-width:1024px) {
  /* tablets: invert positions — whatsapp on left, scroll on right */
  .whatsapp-float {
    left: 24px;
    right: auto;
  }
  .scroll-top-btn {
    right: 24px;
    left: auto;
    bottom: 24px;
  }
}
@media(max-width:768px) {
  /* mobile: same as tablet */
  .whatsapp-float {
    left: 16px;
    right: auto;
    bottom: 16px;
  }
  .scroll-top-btn {
    right: 16px;
    left: auto;
    bottom: 16px;
  }
}

/* Narrower/taller navbar letters */
.nav-menu a {
  font-size: 0.78rem !important;
  letter-spacing: 0.8px;
  font-stretch: condensed;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase;
}
