/*
Theme Name: Ginu K-Pop Art
Theme URI: https://ginu.vascoai.com
Author: Ginu
Description: Tema personalizzato per Ginu - Artista K-Pop Contemporary Art
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ginu-kpop-art
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --primary: #E91E63;
  --primary-light: #FF6090;
  --primary-dark: #AD1457;
  --secondary: #7C4DFF;
  --secondary-light: #B47CFF;
  --accent: #00E5FF;
  --accent-pink: #FF80AB;
  --neon-blue: #00B0FF;
  --neon-purple: #D500F9;
  --neon-pink: #FF1744;
  --dark-bg: #0a0a0f;
  --dark-surface: #121218;
  --dark-card: #1a1a24;
  --dark-border: #2a2a3a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0c0;
  --text-muted: #707080;
  --gradient-1: linear-gradient(135deg, #E91E63, #7C4DFF);
  --gradient-2: linear-gradient(135deg, #00E5FF, #7C4DFF);
  --gradient-3: linear-gradient(135deg, #FF6090, #D500F9, #00E5FF);
  --gradient-hero: linear-gradient(180deg, rgba(10,10,15,0) 0%, rgba(10,10,15,0.8) 100%);
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Noto Sans KR', sans-serif;
  --shadow-glow: 0 0 30px rgba(233,30,99,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-light);
}

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

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.kpop-bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.kpop-bg-animation .floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: floatShape 20s infinite ease-in-out;
}

.kpop-bg-animation .floating-shape:nth-child(1) {
  width: 400px; height: 400px;
  background: var(--primary);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.kpop-bg-animation .floating-shape:nth-child(2) {
  width: 300px; height: 300px;
  background: var(--secondary);
  top: 50%; right: -80px;
  animation-delay: -5s;
  animation-duration: 25s;
}

.kpop-bg-animation .floating-shape:nth-child(3) {
  width: 250px; height: 250px;
  background: var(--accent);
  bottom: -50px; left: 30%;
  animation-delay: -10s;
  animation-duration: 30s;
}

.kpop-bg-animation .floating-shape:nth-child(4) {
  width: 350px; height: 350px;
  background: var(--neon-purple);
  top: 30%; left: 60%;
  animation-delay: -7s;
  animation-duration: 22s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -80px) scale(1.1); }
  50% { transform: translate(-30px, 60px) scale(0.9); }
  75% { transform: translate(80px, 30px) scale(1.05); }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(0px);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 0.7rem 2rem;
}

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

.site-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 3px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  position: relative;
}

.site-logo::after {
  content: '아트';
  font-family: var(--font-accent);
  font-size: 0.5em;
  position: absolute;
  bottom: -2px;
  right: -35px;
  opacity: 0.6;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--text-primary);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: var(--transition-smooth);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2rem;
}

.hero-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: saturate(1.3);
  animation: heroZoom 30s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(10,10,15,0.4) 0%, rgba(10,10,15,0.85) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-korean-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 8px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 8px;
  text-transform: uppercase;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s 0.6s forwards;
  background-size: 200% 200%;
  animation: fadeSlideUp 1s 0.6s forwards, gradientShift 5s infinite ease-in-out;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s 0.9s forwards;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeSlideUp 1s 1.2s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gradient-1);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-3px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeSlideUp 1s 1.5s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gradient-1);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
  padding: 120px 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 6px;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-1);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--dark-surface);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  pointer-events: none;
}

.about-floating-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-1);
  padding: 15px 25px;
  border-radius: 15px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  box-shadow: var(--shadow-glow);
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   GALLERY / PORTFOLIO
   ============================================ */
.gallery-section {
  background: var(--dark-bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-1);
  border-color: transparent;
  color: #fff;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--dark-card);
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(10,10,15,0.95) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-item-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.gallery-item-overlay span {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 1px;
}

/* ============================================
   AWARDS / ACHIEVEMENTS
   ============================================ */
.awards-section {
  background: var(--dark-surface);
}

.awards-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.award-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 40px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.award-card:hover {
  border-color: var(--primary);
  transform: translateX(10px);
  box-shadow: var(--shadow-glow);
}

.award-icon {
  font-size: 2.5rem;
  min-width: 60px;
  text-align: center;
}

.award-info h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

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

.award-year {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.7;
}

/* ============================================
   MARQUEE / TICKER
   ============================================ */
.kpop-marquee {
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  background: var(--dark-bg);
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--dark-border);
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee-track span.highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   EXHIBITIONS SECTION
   ============================================ */
.exhibitions-section {
  background: var(--dark-bg);
}

.exhibitions-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.exhibitions-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-1);
}

.exhibition-item {
  position: relative;
  padding: 30px 0 30px 40px;
  border-bottom: 1px solid var(--dark-border);
}

.exhibition-item::before {
  content: '';
  position: absolute;
  left: -45px;
  top: 38px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary);
}

.exhibition-item .exh-year {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: 2px;
}

.exhibition-item h4 {
  font-size: 1.3rem;
  margin: 8px 0 5px;
  font-weight: 600;
}

.exhibition-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--dark-surface);
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.contact-link:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.contact-link i {
  font-size: 1.2rem;
  color: var(--primary);
  width: 20px;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(233,30,99,0.15);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  padding: 60px 2rem 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--dark-border);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   GLITCH EFFECT
   ============================================ */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
}

.glitch::before {
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: inset(0 0 80% 0);
  -webkit-text-fill-color: var(--neon-pink);
}

.glitch::after {
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: inset(80% 0 0 0);
  -webkit-text-fill-color: var(--accent);
}

@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
  96% { transform: translate(-2px, 2px); }
  98% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(3px, 1px); }
  93% { transform: translate(-3px, -1px); }
  95% { transform: translate(2px, 2px); }
  97% { transform: translate(-2px, -2px); }
}

/* ============================================
   PARTICLE CURSOR TRAIL
   ============================================ */
.cursor-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: var(--primary);
  animation: particleFade 0.8s forwards;
}

@keyframes particleFade {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
}

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

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark-surface);
    padding: 80px 40px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--dark-border);
  }
  
  .main-nav.open { right: 0; }
  
  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  
  .hero-title { letter-spacing: 4px; }
  .hero-cta { flex-direction: column; align-items: center; }
  
  .about-stats { flex-wrap: wrap; gap: 20px; }
  
  .award-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .award-year { margin-left: 0; }
  
  .footer-inner { justify-content: center; text-align: center; }
  
  .section { padding: 80px 1.5rem; }
}

/* ============================================
   WP ADMIN BAR FIX
   ============================================ */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ============================================
   HERO PHOTO SHOWCASE
   ============================================ */
.hero-photos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 2.5rem 0;
  opacity: 0;
  animation: fadeSlideUp 1s 0.8s forwards;
}

.hero-photo-frame {
  position: relative;
  width: 200px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(233, 30, 99, 0.5);
  box-shadow: 0 0 30px rgba(233, 30, 99, 0.3), 0 0 60px rgba(124, 77, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-photo-frame:hover {
  transform: scale(1.05) translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(233, 30, 99, 0.5), 0 0 80px rgba(124, 77, 255, 0.25);
}

.hero-photo-frame:hover img {
  transform: scale(1.1);
}

.hero-photo-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(233, 30, 99, 0.3), transparent);
  pointer-events: none;
}

.hero-photo-1 {
  transform: rotate(-3deg);
  animation: fadeSlideUp 1s 0.8s forwards, photoFloat1 6s 2s infinite ease-in-out;
}

.hero-photo-2 {
  transform: rotate(3deg);
  animation: fadeSlideUp 1s 1s forwards, photoFloat2 6s 2.5s infinite ease-in-out;
}

@keyframes photoFloat1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-10px); }
}

@keyframes photoFloat2 {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-10px); }
}

/* Mobile responsive for hero photos */
@media (max-width: 600px) {
  .hero-photos {
    gap: 15px;
  }
  .hero-photo-frame {
    width: 140px;
    height: 200px;
    border-radius: 14px;
  }
}
