/* Lafayette A. Taylor - Cinematic Brand Styles */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Bebas+Neue&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
  --color-black: #0a0a0a;
  --color-gold: #d4af37;
  --color-gold-light: #f4d03f;
  --color-gold-dark: #b8941f;
  --color-white: #ffffff;
  --color-gray: #1a1a1a;
  --color-gray-light: #2a2a2a;
  --color-red: #dc2626;
  --color-red-glow: #ff0000;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Splash Screen */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: splashFadeOut 1s ease-out 3.5s forwards;
  overflow: hidden;
}

#splash-screen::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  animation: splashRotate 20s linear infinite;
}

@keyframes splashRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes splashFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.splash-photo {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 100px rgba(212, 175, 55, 0.6), 0 0 200px rgba(212, 175, 55, 0.3);
  animation: splashPhotoZoom 3s ease-out forwards;
  z-index: 1;
}

@keyframes splashPhotoZoom {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.splash-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.2);
}

.splash-name {
  position: relative;
  z-index: 2;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(212, 175, 55, 0.8);
  animation: splashNameReveal 2s ease-out 0.5s both;
  text-transform: uppercase;
}

@keyframes splashNameReveal {
  0% {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.splash-tagline {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  margin-top: 1rem;
  animation: splashTagline 2s ease-out 1s both;
}

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

.splash-loader {
  position: absolute;
  bottom: 100px;
  width: 300px;
  height: 4px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  overflow: hidden;
  animation: splashLoaderReveal 1s ease-out 1.5s both;
}

@keyframes splashLoaderReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.splash-loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  border-radius: 10px;
  animation: splashLoad 2s ease-in-out forwards;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

@keyframes splashLoad {
  from { width: 0%; }
  to { width: 100%; }
}

@media (max-width: 768px) {
  .splash-photo {
    width: 400px;
    height: 400px;
  }
  .splash-name {
    margin-top: 2rem;
  }
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-black);
  color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/static/images/lafayette-hero-3.jpg');
  background-size: cover;
  background-position: center;
  animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { 
    transform: scale(1) translateX(0); 
    filter: brightness(0.6) contrast(1.1);
  }
  50% { 
    transform: scale(1.1) translateX(-20px); 
    filter: brightness(0.5) contrast(1.2);
  }
  100% { 
    transform: scale(1) translateX(0); 
    filter: brightness(0.6) contrast(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(212,175,55,0.1) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(212,175,55,0.1) 100%);
  animation: overlayShimmer 10s ease-in-out infinite;
}

@keyframes overlayShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 1.5s ease-out 3.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 100px rgba(212, 175, 55, 0.8);
  animation: titleGlow 3s ease-in-out infinite;
  text-transform: uppercase;
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
}

@keyframes titleGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  color: var(--color-gold-light);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  min-height: 3rem;
  animation: fadeIn 1.2s ease-out 4s both;
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.6);
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 1s both;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-black);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-3px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Section Container */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-gray-light) 100%);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
  border-color: var(--color-gold);
}

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

.card-icon {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.card-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Music Player */
.music-highlight {
  background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-black) 100%);
  border-radius: 30px;
  padding: 3rem;
  margin: 3rem 0;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 60px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 80px rgba(212, 175, 55, 0.5); }
}

.music-highlight-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: var(--color-gray);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

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

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

/* Footer */
.footer {
  background: var(--color-gray);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    padding: 2rem;
    gap: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 1rem;
  }

  /* Music Section Responsive */
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .splash-photo {
    width: 300px !important;
    height: 300px !important;
  }

  .splash-name {
    font-size: 3rem !important;
  }
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-out;
}

.slide-up {
  animation: fadeInUp 1s ease-out;
}

/* Parallax Effect */
.parallax {
  transition: transform 0.5s ease-out;
}

/* Store Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--color-gray);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  border-color: var(--color-gold);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--color-gray-light);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-new {
  background: var(--color-gold);
  color: var(--color-black);
}

/* Glassmorphism */
.glass-panel {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

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

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

/* Rain Animation Effect */
.rain-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.rain-drop {
  position: absolute;
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.6), transparent);
  animation: rainFall linear infinite;
  opacity: 0.7;
}

@keyframes rainFall {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

/* Generate multiple rain drops with different timings */
.rain-drop:nth-child(1) { left: 5%; animation-duration: 2.5s; animation-delay: 0s; }
.rain-drop:nth-child(2) { left: 15%; animation-duration: 2.8s; animation-delay: 0.3s; }
.rain-drop:nth-child(3) { left: 25%; animation-duration: 2.3s; animation-delay: 0.6s; }
.rain-drop:nth-child(4) { left: 35%; animation-duration: 3s; animation-delay: 0.9s; }
.rain-drop:nth-child(5) { left: 45%; animation-duration: 2.6s; animation-delay: 1.2s; }
.rain-drop:nth-child(6) { left: 55%; animation-duration: 2.9s; animation-delay: 1.5s; }
.rain-drop:nth-child(7) { left: 65%; animation-duration: 2.4s; animation-delay: 1.8s; }
.rain-drop:nth-child(8) { left: 75%; animation-duration: 2.7s; animation-delay: 2.1s; }
.rain-drop:nth-child(9) { left: 85%; animation-duration: 3.2s; animation-delay: 2.4s; }
.rain-drop:nth-child(10) { left: 95%; animation-duration: 2.5s; animation-delay: 2.7s; }
.rain-drop:nth-child(11) { left: 10%; animation-duration: 2.8s; animation-delay: 0.2s; }
.rain-drop:nth-child(12) { left: 20%; animation-duration: 2.6s; animation-delay: 0.5s; }
.rain-drop:nth-child(13) { left: 30%; animation-duration: 3.1s; animation-delay: 0.8s; }
.rain-drop:nth-child(14) { left: 40%; animation-duration: 2.4s; animation-delay: 1.1s; }
.rain-drop:nth-child(15) { left: 50%; animation-duration: 2.9s; animation-delay: 1.4s; }
.rain-drop:nth-child(16) { left: 60%; animation-duration: 2.7s; animation-delay: 1.7s; }
.rain-drop:nth-child(17) { left: 70%; animation-duration: 3s; animation-delay: 2s; }
.rain-drop:nth-child(18) { left: 80%; animation-duration: 2.5s; animation-delay: 2.3s; }
.rain-drop:nth-child(19) { left: 90%; animation-duration: 2.8s; animation-delay: 2.6s; }
.rain-drop:nth-child(20) { left: 3%; animation-duration: 2.6s; animation-delay: 0.1s; }

/* Gallery Modal/Lightbox */
#gallery-modal {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#modal-image {
  animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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