/*!
 * =============================================================================
 * FUTONS BAND WEBSITE - MAIN STYLESHEET
 * =============================================================================
 * 
 * A comprehensive CSS file for the Futons band website featuring:
 * - Modern gradient backgrounds and glass morphism effects
 * - Responsive gallery system with compressed album covers
 * - Interactive lightbox viewer with smooth animations
 * - Mobile-first responsive design with breakpoints
 * - Custom color variables and design system
 * - Hover effects and smooth transitions
 * 
 * Structure:
 * 1. CSS Variables & Design System
 * 2. Base Styles & Typography
 * 3. Header & Navigation
 * 4. Hero Section
 * 5. Content Sections (About, Gallery, Concerts, Music)
 * 6. Gallery & Lightbox System
 * 7. Forms & Interactive Elements
 * 8. Responsive Design & Media Queries
 * 9. Utility Classes & Animations
 * 
 * Author: Futons Band Development Team
 * Version: 2.0.0 - Production Ready
 * =============================================================================
 */

/* =============================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ============================================================================= */

:root {
  /* Color Palette - Primary Colors */
  --red: #ff4757;
  --red-alt: #c44569;
  --blue: #2f3542;
  --blue-alt: #1e2328;
  --accent: #6c5ce7;
  --accent-light: #a29bfe;
  --yellow: #ffeaa7;
  --orange: #fd79a8;
  --green: #00b894;

  /* Neutral Colors */
  --black: #2d3436;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #e9ecef;

  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.8) 100%);

  /* Shadow System */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* =============================================================================
   BASE STYLES & TYPOGRAPHY
   ============================================================================= */

/**
 * Global reset and base font family
 * Sets consistent box-sizing and removes default margins/padding
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/**
 * Main body styling with gradient background
 * Creates the foundational look and typography for the entire site
 */
body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--black);
  line-height: 1.6;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/**
 * Global image performance optimizations
 * Improves loading speed and rendering performance
 */
img {
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: auto;
  max-width: 100%;
  height: auto;
}

/**
 * Home section with fixed background attachment
 * Creates parallax effect for better visual engagement
 */
#home {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* =============================================================================
   HEADER & NAVIGATION
   ============================================================================= */

/**
 * Main site header with glass morphism effect
 * Provides elegant navigation with backdrop blur and transparency
 */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--black);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

footer {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-medium);
}

.title {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.section {
  color: var(--black);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  width: 95%;
  max-width: 1200px;
  height: auto;
  margin: 3rem auto;
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}


/* Other */
.btn {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn: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:hover:before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

section {
  padding: 3rem 2rem;
}

#title-img {
  width: 450px;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
  transition: all 0.4s ease;
  animation: float 3s ease-in-out infinite;
}

#title-img:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

#title-btn {
  padding: 1rem 2.5rem;
  margin-top: 2rem;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

#title-btn:hover:before {
  left: 100%;
}

#title-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}


/** NavBar Styles */
nav {
  width: 100%;
  top: 0;
  padding: 0.5rem;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  gap: 15px;
}

.navBar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  padding: 0.75rem 1.5rem;
  list-style-type: none;
  text-decoration: none;
  z-index: 10;
  border: 2px solid transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.navBar:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  z-index: -1;
}

.navBar:hover:before {
  width: 100%;
}

nav li {
  display: inline;
  font-size: 1.2rem;
  font-weight: 600;
}

nav a:hover {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.logo {
  margin-left: 2rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

header img {
  width: 100px;
  height: auto;
  background: transparent;
  border-radius: 15px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

header img:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: var(--shadow-medium);
}


/* Hero Styles */
.hero {
  background: var(--gradient-hero);
  background-image: url('/assets/img/LionsDen/IMG_1941.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
  border-radius: 0;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 30vh;
  height: 100%;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
  font-size: 2rem;
  margin: 2rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Music Styles */
#music {
  background: var(--white);
}

.music h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.music h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.music-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  perspective: 1000px;
}

.music-item {
  background: var(--white);
  color: var(--black);
  padding: 2rem;
  border-radius: 25px;
  width: 320px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--gray-medium);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.music-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.music-item:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: var(--shadow-strong);
}

.music-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

#btn-music {
  padding: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#btn-music:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}


/* Concerts styles */
.concerts {
  color: var(--black);
  height: auto;
  margin: 3rem auto;
  border-radius: 25px;
  text-align: center;
}

.concerts h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.concerts h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.concerts .concert-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.concerts .concert-item {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: var(--white);
  color: var(--black);
  padding: 2rem;
  border-radius: 20px;
  margin: 0;
  width: 85%;
  max-width: 600px;
  box-shadow: var(--shadow-medium);
  border-left: 5px solid var(--accent);
  transition: all 0.3s ease;
  position: relative;
}

.concerts .concert-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-strong);
}

.concerts .concert-item h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.concerts .concert-item p {
  margin: 0.5rem 0;
  font-weight: 500;
}

#book-now {
  width: auto;
  height: auto;
  border-radius: 20px;
}

#book-now: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;
}

#book-now:hover:before {
  left: 100%;
}

#book-now:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.book-now-form {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.book-now-form.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.book-now-form input,
.book-now-form textarea {
  padding: 1rem;
  border: 2px solid var(--gray-medium);
  border-radius: 15px;
  background-color: var(--gray-light);
  color: var(--black);
  transition: all 0.3s ease;
  font-family: inherit;
  resize: none;
}

.book-now-form input:focus,
.book-now-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
  transform: translateY(-2px);
}

/* About styles */
#about {
  background: var(--gradient-secondary);
  color: var(--white);
}

#about h3 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#about p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.band-members {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 2rem;
}

.cont {
  margin-top: 2rem;
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
  transition: all 0.4s ease;
}

.cont:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cont img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cont:hover .img {
  transform: scale(1.1);
}

.info {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  top: 0px;
  left: 0px;
  color: var(--white);
  background: linear-gradient(135deg,
      rgba(108, 92, 231, 0.9) 0%,
      rgba(162, 155, 254, 0.9) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.info h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.info p {
  margin: 0 1rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease 0.2s;
}

.cont:hover .info {
  opacity: 1;
}

.cont:hover .info h3,
.cont:hover .info p {
  transform: translateY(0);
}

/* Contact Form Styles */
.contact {
  padding: 3rem 2rem;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--gray-medium);
  grid-area: contact;
  background: var(--white);
  border-radius: 25px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--gray-medium);
  transition: all 0.3s ease;
}

.contact:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.btn {
  font-weight: 600;
  color: var(--white);
  background: var(--gradient-primary);
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  min-width: 120px;
  margin: auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.btn: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:hover:before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

h1 {
  color: var(--accent);
  font-size: 2.5rem;
  text-shadow: none;
}

input,
textarea {
  background: var(--gray-light);
  font-size: 16px;
  border-radius: 15px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--gray-medium);
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
  transform: translateY(-2px);
}

#title {
  grid-area: title;
  text-align: center;
  font-size: 2.5rem;
  width: 100%;
  height: 70px;
}

#name {
  grid-area: name;
}

#email {
  grid-area: email;
}

#phone {
  grid-area: phone;
}

#subject {
  grid-area: subject;
}

#message {
  grid-area: message;
  width: 100%;
  height: 100%;
  align-self: stretch;
  justify-self: stretch;
  resize: none;
}

#submit {
  grid-area: submit;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: .25fr .25fr .25fr 1.5fr 0.25fr;
  grid-template-areas:
    "title title"
    "name email"
    "phone subject"
    "message message"
    "submit submit";
  gap: 1rem;
  border-radius: 25px;
  margin: auto;
}

/* links styles */
.links {
  grid-area: links;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.links a {
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.links a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-medium);
}

.links img {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}


/* Responsive styles */
@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "title"
      "name"
      "email"
      "phone"
      "subject"
      "message"
      "submit";
  }
}

@media (max-width: 600px) {
  .contact-form {
    width: 90%;
  }

  input,
  textarea {
    font-size: 16px;
  }

  #title {
    font-size: 2rem;
  }

  .contact-form {
    margin-top: 2rem;
  }
}

/* Fun Animated Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: hamburgerFloat 3s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

@keyframes hamburgerFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: translateY(-8px) rotate(2deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(108, 92, 231, 0.6), 0 6px 20px rgba(0, 0, 0, 0.3);
  }
}

.hamburger:hover {
  transform: scale(1.2) rotate(10deg);
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  box-shadow: 0 15px 40px rgba(255, 71, 87, 0.6), 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: hamburgerPulse 0.6s ease-in-out;
}

@keyframes hamburgerPulse {

  0%,
  100% {
    transform: scale(1.2) rotate(10deg);
  }

  50% {
    transform: scale(1.3) rotate(-5deg);
  }
}

.hamburger span {
  width: 28px;
  height: 4px;
  background: var(--white);
  margin: 4px 0;
  border-radius: 3px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hamburger span:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  border-radius: 3px;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }

  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}

.hamburger.active {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-alt) 100%);
  transform: scale(1.1) rotate(180deg);
  animation: activeRotate 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 12px 30px rgba(255, 71, 87, 0.8), 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: var(--yellow);
}

@keyframes activeRotate {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.3) rotate(90deg);
  }

  100% {
    transform: scale(1.1) rotate(180deg);
  }
}

.hamburger.active:hover {
  transform: scale(1.25) rotate(180deg);
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  box-shadow: 0 18px 45px rgba(255, 234, 167, 0.8), 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* X Animation for Active State */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg) scale(1.1);
  background: var(--white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0) rotate(180deg);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) scale(1.1);
  background: var(--white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Menu Trigger - Hidden by default */
.menu-trigger {
  display: none;
}

/* Menu Trigger X Animation */
.menu-trigger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--black);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.menu-trigger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: var(--red);
}

.menu-trigger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0) rotate(180deg);
}

.menu-trigger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--red);
}

/* Mobile Menu Trigger X Animation - Centered */
.mobile-menu .menu-trigger.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
  background: var(--red);
}

.mobile-menu .menu-trigger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0) rotate(180deg);
}

.mobile-menu .menu-trigger.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
  background: var(--red);
}

.menu-trigger:hover span {
  background: var(--accent);
}

.menu-trigger.active:hover span:nth-child(1),
.menu-trigger.active:hover span:nth-child(3) {
  background: var(--orange);
}

/* Responsive Mobile Menu Display */
@media (max-width: 800px) {
  .menu-trigger {
    display: flex !important;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
    padding: 10px;
    transition: all 0.3s ease;
  }

  .menu-trigger:hover {
    transform: scale(1.1);
  }

  .menu-trigger.active {
    transform: scale(1.1) rotate(180deg);
  }

  nav {
    display: none;
  }

  header {
    padding: 1rem;
    z-index: 100;
  }

  .logo {
    margin-left: 0;
  }

  header img {
    width: 80px;
  }

  .concerts .concert-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  #book-now {
    margin-top: 1rem;
    width: auto;
    height: auto;
    padding: 1rem;
  }

  #bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .contact,
  .login {
    width: 90%;
    padding: 2rem;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(248, 249, 250, 0.9) 50%,
      rgba(245, 245, 245, 0.6) 100%);
  backdrop-filter: blur(20px);
  z-index: 8000;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 4rem 2rem 2rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--accent);
  border-radius: 30px 0 0 30px;
  opacity: 0;
  transform: translateX(50px) scale(0.8) rotateY(15deg);
}

.mobile-menu .menu-trigger {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  padding: 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.mobile-menu .menu-trigger span {
  width: 25px;
  height: 3px;
  background: var(--black);
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.mobile-menu.active {
  right: 0;
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0deg);
  animation: slideInBounce 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInBounce {
  0% {
    opacity: 0;
    transform: translateX(100px) scale(1) rotateY(0deg);
  }

  60% {
    opacity: 0.5;
    transform: translateX(0px) scale(1) rotateY(0deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
  }
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  font-size: 1.4rem;
  width: 100%;
  opacity: 0;
  transform: translateX(50px) rotateX(15deg) scale(0.8);
  animation: none;
}

.mobile-menu.active li {
  animation: menuItemSlide 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.mobile-menu.active li:nth-child(1) {
  animation-delay: 0.3s;
}

.mobile-menu.active li:nth-child(2) {
  animation-delay: 0.5s;
}

.mobile-menu.active li:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes menuItemSlide {
  0% {
    opacity: 0;
    transform: translateX(50px) rotateX(15deg) scale(0.8);
  }

  60% {
    opacity: 0.8;
    transform: translateX(-5px) rotateX(-2deg) scale(1.1);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotateX(0deg) scale(1);
  }
}

.mobile-menu a {
  display: block;
  padding: 1.5rem 2rem;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(108, 92, 231, 0.1) 100%);
  color: var(--black);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-align: center;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu a:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.5s ease;
  z-index: -1;
}

.mobile-menu a:hover {
  color: var(--white);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
  border-color: var(--accent);
}

.mobile-menu a:hover:before {
  left: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
      rgba(108, 92, 231, 0.4) 0%,
      rgba(0, 0, 0, 0.8) 100%);
  backdrop-filter: blur(10px);
  z-index: 7000;
  opacity: 0;
  transition: all 0.6s ease;
  animation: overlayPulse 0.8s ease-out;
  pointer-events: auto;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
  animation: overlayFadeIn 0.8s ease-out;
  pointer-events: auto;
}

@keyframes overlayFadeIn {
  0% {
    opacity: 0;
    backdrop-filter: blur(0px);
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    transform: scale(1.2);
  }

  50% {
    opacity: 0.6;
    backdrop-filter: blur(5px);
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    backdrop-filter: blur(10px);
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    transform: scale(1);
  }
}

@keyframes overlayPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Gallery Styles */
.gallery-grid,
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.gallery-grid img,
.gallery-container img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  z-index: 1;
  position: relative;
  filter: brightness(0.9) contrast(1.1) saturate(1.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-grid img:hover,
.gallery-container img:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 15px 30px rgba(108, 92, 231, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 10;
  border-radius: 15px;
  filter: brightness(1.1) contrast(1.2) saturate(1.3);
  border: 2px solid rgba(108, 92, 231, 0.5);
}

/* Gallery section styling */
#gallery {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 25px;
  padding: 3rem 2rem;
  margin: 2rem 0;
  backdrop-filter: blur(5px);
}

#gallery h3 {
  text-align: center;
  font-size: 2.5rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Optional: Add a subtle animation to images on load */
.gallery-container img {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.gallery-container img:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-container img:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-container img:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-container img:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-container img:nth-child(5) {
  animation-delay: 0.5s;
}

.gallery-container img:nth-child(6) {
  animation-delay: 0.6s;
}

.gallery-container img:nth-child(7) {
  animation-delay: 0.7s;
}

.gallery-container img:nth-child(8) {
  animation-delay: 0.8s;
}

.gallery-container img:nth-child(9) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Responsive Design */
@media (max-width: 1200px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .gallery-container img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }

  .gallery-container img {
    height: 200px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .gallery-container img {
    height: 150px;
    border-radius: 8px;
  }
}

/* =============================================================================
   LIGHTBOX VIEWER SYSTEM
   ============================================================================= */

/**
 * Main lightbox container
 * Full-screen overlay that displays enlarged images with backdrop blur
 * Hidden by default, shown via JavaScript when image is clicked
 */
.lightbox {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed positioning for full screen */
  z-index: 9999;
  /* Highest z-index to appear above everything */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  /* Dark semi-transparent background */
  backdrop-filter: blur(5px);
  /* Blur background content for focus */
  animation: lightboxFadeIn 0.3s ease;
  /* Smooth fade-in animation */
}

/**
 * Container for the main lightbox image
 * Centers the image and provides responsive sizing with elegant styling
 */
.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  /* Responsive width with padding */
  max-height: 80%;
  /* Maintain aspect ratio */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Perfect centering */
  border-radius: 10px;
  /* Rounded corners for modern look */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  /* Strong drop shadow */
  animation: lightboxZoomIn 0.3s ease;
  /* Smooth zoom-in effect */
}

/**
 * Close button for the lightbox
 * Circular button with hover effects positioned in top-right corner
 */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  /* Above lightbox content */
  transition: all 0.3s ease;
  /* Smooth hover transitions */
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* Circular button */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/**
 * Close button hover effect
 * Changes to accent color with scale animation for better UX
 */
.lightbox-close:hover {
  background: rgba(108, 92, 231, 0.8);
  /* Accent color background */
  transform: scale(1.1);
  /* Slight enlargement on hover */
}

/**
 * Image caption display
 * Shows image description at the bottom of the lightbox
 */
.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 25px;
  border-radius: 25px;
  font-size: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  font-weight: bold;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10000;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(108, 92, 231, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
  left: 30px;
}

.lightbox-nav.next {
  right: 30px;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lightboxZoomIn {
  from {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* Mobile responsive lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 70%;
  }

  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .lightbox-nav {
    font-size: 20px;
    width: 50px;
    height: 50px;
    padding: 10px 15px;
  }

  .lightbox-nav.prev {
    left: 15px;
  }

  .lightbox-nav.next {
    right: 15px;
  }

  .lightbox-caption {
    bottom: 10px;
    font-size: 14px;
    padding: 10px 20px;
  }
}


/* Album Gallery Styles */
.album-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.album-tab {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(108, 92, 231, 0.3);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.album-tab:hover {
  background: rgba(108, 92, 231, 0.2);
  border-color: rgba(108, 92, 231, 0.6);
  transform: translateY(-2px);
}

.album-tab.active {
  background: var(--gradient-primary);
  border-color: rgba(108, 92, 231, 0.8);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.album-container {
  display: none;
}

.album-container.active {
  display: block;
}

.album-header {
  text-align: center;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.album-header h4 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.album-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.album-controls {
  text-align: center;
  margin-top: 2rem;
}

.show-more-btn {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  position: relative;
  overflow: hidden;
}

.show-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.show-more-btn:active {
  transform: translateY(0);
}

.photo-count {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.more-photos {
  display: contents;
}

/* Mobile responsive album styles */
@media (max-width: 768px) {
  .album-tabs {
    flex-direction: column;
    align-items: center;
  }

  .album-tab {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .album-header {
    padding: 1.5rem;
  }

  .album-header h4 {
    font-size: 1.5rem;
  }

  .show-more-btn {
    width: 100%;
    max-width: 280px;
  }
}


/* Compressed Album Cover Styles */
.albums-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

.album-cover {
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  width: 250px;
  height: 250px;
}

.album-cover:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(108, 92, 231, 0.4);
}

.album-cover-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.album-cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.album-cover:hover .album-cover-image img {
  transform: scale(1.1);
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(108, 92, 231, 0.8) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.album-cover:hover .album-overlay {
  opacity: 1;
}

.album-info h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.album-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.view-album-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.view-album-btn:hover {
  background: white;
  color: var(--accent);
  transform: scale(1.05);
}

/* Album Detail View */
.album-detail {
  animation: fadeInUp 0.5s ease;
}

.album-detail-header {
  text-align: center;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  position: relative;
}

.back-to-albums {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(108, 92, 231, 0.8);
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.back-to-albums:hover {
  background: var(--accent);
  transform: translateX(-3px);
}

.album-detail-header h4 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.album-detail-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Thumbnail Grid */
.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.thumbnail-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  /* Performance optimizations */
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.thumbnail-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
  z-index: 2;
  position: relative;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .albums-grid {
    gap: 1.5rem;
    margin: 1rem 0;
  }

  .album-cover {
    width: 200px;
    height: 200px;
  }

  .thumbnail-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .back-to-albums {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 1rem;
    display: inline-block;
  }

  .album-detail-header {
    padding: 1.5rem;
  }

  .album-info h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .albums-grid {
    gap: 1rem;
    margin: 0.5rem 0;
  }

  .album-cover {
    width: 150px;
    height: 150px;
    border-radius: 15px;
  }

  .album-info h4 {
    font-size: 1.1rem;
  }

  .album-info p {
    font-size: 0.8rem;
  }
}

/* Admin Panel Access Link */
.admin-link {
  opacity: 0.6;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.admin-link:hover {
  opacity: 1;
  color: var(--accent) !important;
  transform: scale(1.1);
}

nav .admin-link {
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.2);
}

nav .admin-link:hover {
  background: rgba(108, 92, 231, 0.2);
  border-color: var(--accent);
}

.mobile-menu .admin-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem;
}

.mobile-menu .admin-link:hover {
  color: var(--accent-light) !important;
}

/* ========================================
   Album Creation Workflow Styling
   ======================================== */

/* Staged Photos Container */
.staged-photos {
  margin: 30px 0;
  padding: 20px;
  background: rgba(218, 165, 32, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.staged-photos h4 {
  margin-top: 0;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}

/* Photo Preview Grid */
.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 15px;
  min-height: 50px;
}

.photo-preview-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.photo-preview-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

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

.photo-preview-item .remove-photo {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.photo-preview-item .remove-photo:hover {
  background: rgba(255, 0, 0, 1);
  transform: scale(1.1);
}

/* Admin Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.photo-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid var(--gray-medium);
  transition: all 0.3s ease;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-item .photo-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.photo-item:hover .photo-actions {
  transform: translateY(0);
}

.photo-item .delete-photo {
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
}

.photo-item .delete-photo:hover {
  background: rgba(255, 0, 0, 1);
  transform: scale(1.05);
}

/* Items Grid for Albums */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.album-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}

.album-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.album-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.album-item .album-info {
  padding: 15px;
}

.album-item h4 {
  margin: 0 0 10px 0;
  color: var(--accent);
  font-size: 1.2rem;
}

.album-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.album-item .album-actions {
  padding: 15px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  gap: 10px;
}

.album-item .btn {
  flex: 1;
  padding: 8px 15px;
  font-size: 0.9rem;
}

/* Album Actions */
.album-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.album-actions .btn {
  flex: 1;
  max-width: 200px;
}

.album-actions .btn-secondary {
  background: var(--gray-medium);
  color: var(--black);
}

.album-actions .btn-secondary:hover {
  background: var(--gray-dark);
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .photo-preview-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }

  .items-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
}

/* Empty State Message */
.photo-preview-grid:empty::after {
  content: 'No photos staged yet. Upload some photos above!';
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-secondary);
  font-style: italic;
  padding: 40px 20px;
  border: 1px dashed var(--gray-medium);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
}

/* ========================================
   Admin Photo Grid Styling
   ======================================== */

/* Photo grid for admin album management */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding: 20px 0;
}

.photo-grid .photo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.photo-grid .photo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent);
}

.photo-grid .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid .photo-item .photo-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-grid .photo-item:hover .photo-actions {
  opacity: 1;
}

.photo-grid .photo-item .btn-delete {
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.photo-grid .photo-item .btn-delete:hover {
  background: rgba(255, 0, 0, 1);
  transform: scale(1.05);
}

/* Items grid for albums, concerts, music */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.items-grid .item {
  background: var(--white);
  border-radius: 15px;
  padding: 20px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.items-grid .item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .items-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}