/*
Theme Name: Home Gym Debrecen
Theme URI: https://homegym-debrecen.hu
Author: Home Gym
Author URI: https://homegym-debrecen.hu
Description: Egyedi WordPress téma a Home Gym Debrecen edzőterem számára. Tartalmaz személyedzők és árak kezelését ACF mezőkkel.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: homegym
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --yellow: #F9C22E;
  --black:  #0D0D0D;
  --dark:   #1A1A1A;
  --gray:   #2A2A2A;
  --white:  #F5F0E8;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =============================================
   NAV
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
}
.site-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: 4px;
  font-weight: 700;
}
.site-logo img { height: 48px; width: auto; }
.main-nav ul { display: flex; gap: 36px; list-style: none; }
.main-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav .current-menu-item > a { color: var(--yellow); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--yellow); transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(249,194,46,0.04) 80px, rgba(249,194,46,0.04) 82px),
    repeating-linear-gradient(0deg,  transparent, transparent 80px, rgba(249,194,46,0.04) 80px, rgba(249,194,46,0.04) 82px);
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,194,46,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: center; animation: fadeUp 0.9s ease both; }
.hero-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  letter-spacing: 5px; font-size: 0.85rem;
  color: var(--yellow); text-transform: uppercase;
  border: 1px solid rgba(249,194,46,0.4);
  padding: 6px 18px; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.9; color: var(--white); letter-spacing: 4px;
}
.hero-title .accent { color: var(--yellow); display: block; }
.hero-sub {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 1.3rem; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(245,240,232,0.55); margin: 20px 0 40px;
}
.hero-cta { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: var(--yellow); color: var(--black);
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 40px; border: none; cursor: pointer; display: inline-block;
  transition: transform 0.2s, background 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover { transform: translateY(-3px); background: #ffd14d; color: var(--black); }
.btn-outline {
  border: 2px solid var(--yellow); color: var(--yellow);
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 40px; display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); }
.btn-dark {
  background: var(--black); color: var(--yellow);
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 40px; border: none; cursor: pointer; width: 100%;
  transition: transform 0.2s, background 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-dark:hover { transform: translateY(-2px); background: #1a1a1a; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--yellow); padding: 24px 60px;
  display: flex; justify-content: center; gap: 80px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Oswald', sans-serif; font-size: 2.8rem;
  color: var(--black); line-height: 1; letter-spacing: 2px; font-weight: 700;
}
.stat-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(13,13,13,0.65);
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section-pad { padding: 100px 60px; }
.section-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1; letter-spacing: 2px; margin-bottom: 24px;
  text-transform: uppercase;
}
.container { max-width: 1300px; margin: 0 auto; }

/* =============================================
   ABOUT
   ============================================= */
.about-section { background: var(--dark); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-body { font-size: 1.05rem; line-height: 1.8; color: rgba(245,240,232,0.7); }
.about-body strong { color: var(--yellow); font-weight: 600; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px;
}
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.feature-text {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(245,240,232,0.75); padding-top: 8px;
}
.about-box {
  background: var(--black); border: 2px solid var(--yellow);
  padding: 50px; position: relative;
}
.about-box::before {
  content: ''; position: absolute;
  top: 10px; left: 10px; right: -10px; bottom: -10px;
  border: 1px solid rgba(249,194,46,0.2); z-index: -1;
}
.about-box-num {
  font-family: 'Oswald', sans-serif; font-size: 5rem;
  color: var(--yellow); line-height: 1; letter-spacing: 4px; font-weight: 700;
}
.about-box-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,240,232,0.5); font-size: 0.9rem; margin-bottom: 32px;
}
.about-box-text { font-size: 1rem; line-height: 1.75; color: rgba(245,240,232,0.65); }
.about-box-stats {
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid rgba(249,194,46,0.2);
  display: flex; gap: 40px;
}
.about-stat-num {
  font-family: 'Oswald', sans-serif; font-size: 2.5rem;
  color: var(--yellow); letter-spacing: 2px; font-weight: 700;
}
.about-stat-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section { background: var(--black); }
.prices-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; background: rgba(249,194,46,0.15);
  margin-top: 60px;
}
.price-card {
  background: var(--dark); padding: 50px 40px;
  transition: transform 0.3s; position: relative;
}
.price-card:hover { transform: translateY(-8px); z-index: 2; }
.price-card.featured { background: var(--yellow); }
.price-badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  background: var(--black); color: var(--yellow);
  padding: 4px 12px; margin-bottom: 20px;
}
.price-card.featured .price-badge { background: var(--black); color: var(--yellow); }
.price-name {
  font-family: 'Oswald', sans-serif; font-size: 2rem;
  letter-spacing: 2px; margin-bottom: 8px; font-weight: 700;
}
.price-card.featured .price-name,
.price-card.featured .price-desc,
.price-card.featured .price-includes li { color: var(--black); }
.price-amount {
  font-family: 'Oswald', sans-serif; font-size: 4rem;
  line-height: 1; color: var(--yellow); letter-spacing: 2px; font-weight: 700;
}
.price-card.featured .price-amount { color: var(--black); }
.price-amount span { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 600; }
.price-desc { font-size: 0.9rem; color: rgba(245,240,232,0.5); margin: 12px 0 24px; line-height: 1.5; }
.price-includes { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-includes li {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 1px;
  color: rgba(245,240,232,0.7);
  display: flex; align-items: center; gap: 10px;
}
.price-includes li::before { content: '▸'; color: var(--yellow); font-size: 0.7rem; }
.price-card.featured .price-includes li::before { color: var(--black); }

/* =============================================
   TRAINERS – CHECKERBOARD
   ============================================= */
.trainers-section { background: var(--dark); padding-bottom: 0; }
.trainers-header { padding: 100px 60px 60px; }
.trainer-row {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-bottom: 1px solid rgba(249,194,46,0.1);
}
.trainer-row:nth-child(even) .trainer-photo-col { order: 2; }
.trainer-row:nth-child(even) .trainer-info-col  { order: 1; }
.trainer-photo-col {
  background: var(--gray); position: relative;
  overflow: hidden; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.trainer-photo-col img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.trainer-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; width: 100%; height: 100%;
  min-height: 420px;
}
.trainer-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(249,194,46,0.06) 0%, transparent 60%);
}
.trainer-initials {
  width: 120px; height: 120px;
  border: 3px solid var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 2.5rem;
  color: var(--yellow); letter-spacing: 4px; font-weight: 700;
  position: relative; z-index: 1;
}
.trainer-info-col {
  padding: 60px; display: flex; flex-direction: column; justify-content: center;
  background: var(--black);
}
.trainer-row:nth-child(even) .trainer-info-col { background: var(--dark); }
.trainer-specialty {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 10px;
}
.trainer-name {
  font-family: 'Oswald', sans-serif; font-size: 3.5rem;
  letter-spacing: 3px; line-height: 1; margin-bottom: 20px; font-weight: 700;
}
.trainer-bio {
  font-size: 1rem; line-height: 1.75;
  color: rgba(245,240,232,0.65); max-width: 420px; margin-bottom: 28px;
}
.trainer-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.trainer-tag {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(249,194,46,0.4); color: rgba(249,194,46,0.8);
  padding: 5px 14px;
}

/* =============================================
   CONTACT & MAP
   ============================================= */
.contact-section { background: var(--black); padding-bottom: 0; }
.contact-header { padding: 100px 60px 60px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.map-col { background: var(--gray); position: relative; overflow: hidden; }
.map-col iframe {
  width: 100%; height: 100%; min-height: 500px;
  border: none; filter: grayscale(60%) contrast(1.1);
}
.contact-col {
  background: var(--yellow); padding: 70px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-col .section-label { color: rgba(13,13,13,0.6); }
.contact-col .section-title { color: var(--black); margin-bottom: 40px; }
.contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.contact-text-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(13,13,13,0.55); margin-bottom: 4px;
}
.contact-text-value {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.15rem; letter-spacing: 1px; color: var(--black);
}
.contact-form { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea {
  background: rgba(13,13,13,0.1); border: 2px solid rgba(13,13,13,0.2);
  padding: 14px 18px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  color: var(--black); outline: none; transition: border-color 0.2s; resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(13,13,13,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--black); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark); border-top: 2px solid var(--yellow);
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Oswald', sans-serif; font-size: 2rem;
  color: var(--yellow); letter-spacing: 4px; font-weight: 700;
}
.footer-copy {
  font-family: 'Rajdhani', sans-serif; font-size: 0.85rem;
  letter-spacing: 2px; color: rgba(245,240,232,0.35); text-transform: uppercase;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid rgba(249,194,46,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 1rem; transition: background 0.2s;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .site-header { padding: 16px 24px; }
  .main-nav { display: none; }
  .main-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--black); border-top: 1px solid var(--yellow); padding: 20px; }
  .main-nav.open ul { flex-direction: column; gap: 16px; }
  .menu-toggle { display: flex; }
  .section-pad { padding: 70px 24px; }
  .stats-bar { padding: 20px 24px; gap: 40px; }
  .trainer-row { grid-template-columns: 1fr; }
  .trainer-row:nth-child(even) .trainer-photo-col { order: 1; }
  .trainer-row:nth-child(even) .trainer-info-col  { order: 2; }
  .trainer-info-col { padding: 40px 24px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-col { padding: 50px 24px; }
  .site-footer { padding: 30px 24px; }
  .trainers-header, .contact-header { padding: 70px 24px 40px; }
}

/* =============================================
   LOGO – HEADER & FOOTER
   ============================================= */
.site-logo img,
.site-logo .custom-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.site-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: 4px;
  font-weight: 700;
}
.footer-logo img,
.footer-logo .custom-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Fehér logóhoz: filter: brightness(0) invert(1); */
}
.footer-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: 4px;
  font-weight: 700;
}

/* =============================================
   TRAINER – SOCIAL LINKS
   ============================================= */
.trainer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.trainer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(249,194,46,0.3);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.trainer-social-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.trainer-social-icon {
  font-size: 1rem;
  line-height: 1;
}
.trainer-social-phone { border-color: rgba(249,194,46,0.4); }
.trainer-social-fb    { border-color: rgba(59,89,152,0.5); }
.trainer-social-ig    { border-color: rgba(193,53,132,0.5); }

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section { background: var(--black); }

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gray);
}

/* Első kép nagy (2x2) */
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(13,13,13,0.55);
}

.gallery-zoom {
  font-size: 2.2rem;
  color: var(--yellow);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s, transform 0.3s;
  line-height: 1;
}

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

.gallery-caption {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Empty state */
.gallery-empty { margin-top: 60px; }
.gallery-empty-box {
  background: var(--dark);
  border: 2px dashed rgba(249,194,46,0.3);
  padding: 60px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.gallery-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.gallery-empty-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.gallery-empty-box p { color: rgba(245,240,232,0.6); margin-bottom: 16px; }
.gallery-empty-box ol {
  text-align: left;
  display: inline-block;
  color: rgba(245,240,232,0.7);
  line-height: 2;
}
.gallery-empty-box strong { color: var(--yellow); }

/* =============================================
   LIGHTBOX
   ============================================= */
.hg-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.hg-lightbox.active {
  opacity: 1; pointer-events: all;
}
.hg-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
.hg-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 2px solid rgba(249,194,46,0.2);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.hg-lightbox-caption {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-top: 14px;
  text-align: center;
}
.hg-lightbox-close {
  position: fixed; top: 24px; right: 30px;
  font-size: 2rem; color: var(--yellow);
  background: none; border: none; cursor: pointer;
  font-family: 'Oswald', sans-serif;
  line-height: 1; transition: transform 0.2s;
}
.hg-lightbox-close:hover { transform: rotate(90deg); }
.hg-lightbox-prev,
.hg-lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(249,194,46,0.1);
  border: 1px solid rgba(249,194,46,0.3);
  color: var(--yellow);
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.hg-lightbox-prev { left: 20px; }
.hg-lightbox-next { right: 20px; }
.hg-lightbox-prev:hover,
.hg-lightbox-next:hover { background: rgba(249,194,46,0.3); }
.hg-lightbox-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 3px;
  color: rgba(245,240,232,0.35);
}

/* Responsive gallery */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
}
