/* Anna's NOLA - Raw Authenticity + Neon & Night */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #0F0F23;
  --text: #E2E8F0;
  --accent: #00D9FF;
  --warm: #FFB800;
  --danger: #FF0080;
  --muted: #64748B;
  --border: #1E293B;
  --neon-blue: #00D9FF;
  --neon-pink: #FF0080;
  --neon-yellow: #FFB800;
  --neon-green: #00FF88;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 184, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 65ch;
}

/* Status Bar */
.status-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--neon-pink);
  color: var(--bg);
  padding: 0.5rem 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 0, 128, 0.3);
}

.status-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.status-hours {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Navigation */
.nav {
  position: fixed;
  top: 3rem;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 35, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.logo {
  text-decoration: none;
  color: var(--text);
}

.logo-img {
  height: 40px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
  transition: all 0.3s var(--ease);
}

.logo:hover .logo-img {
  filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
  transform: scale(1.05);
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
  .logo-img {
    height: 35px;
  }
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  transition: width 0.3s var(--ease);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

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

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

.nav-mobile {
  display: none;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

/* Main Content */
main {
  padding-top: 8rem;
  min-height: 100vh;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 4rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: sepia(20%) saturate(80%) brightness(0.8);
}

.neon-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 217, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  margin-bottom: 2rem;
}

.hero-main {
  display: block;
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
  font-weight: 800;
}

.hero-sub {
  display: block;
  color: var(--neon-blue);
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  font-size: 0.6em;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-address {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.25rem;
  transition: all 0.3s var(--ease);
  border: 2px solid;
  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-primary {
  background: var(--neon-blue);
  color: var(--bg);
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: var(--neon-blue);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-pink);
  border-color: var(--neon-pink);
}

.btn-secondary:hover {
  background: var(--neon-pink);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

/* Quick Info Section - Sophisticated Design */
.quick-info {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.quick-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(0, 217, 255, 0.02) 50%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(255, 0, 128, 0.02) 100%);
  pointer-events: none;
}

.info-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.info-card {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(30, 41, 59, 0.4) 100%);
  border: 1px solid rgba(0, 217, 255, 0.1);
  border-radius: 0;
  padding: 3rem 2rem;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}

.info-card:hover::before {
  transform: translateX(100%);
}

.info-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(30, 41, 59, 0.6) 100%);
  box-shadow: 
    0 20px 40px rgba(0, 217, 255, 0.15),
    0 0 60px rgba(0, 217, 255, 0.05);
}

.info-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.icon-text {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.icon-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: -0.25rem;
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.info-description {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.info-highlight {
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.info-meta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 184, 0, 0.7);
  font-style: italic;
}

.info-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
  transition: height 0.3s var(--ease);
}

.info-card:hover .info-accent {
  height: 6px;
  opacity: 1;
}

.info-accent.pink {
  background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.info-accent.yellow {
  background: linear-gradient(90deg, transparent, var(--neon-yellow), transparent);
}

/* Location Section */
.location-section {
  padding: 8rem 4rem;
  text-align: center;
}

.location-content {
  max-width: 600px;
  margin: 0 auto;
}

.location-content h2 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.location-content p {
  margin: 0 auto 2rem;
  font-size: 1.25rem;
}

.location-gallery {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.location-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 2px solid var(--border);
  transition: all 0.3s var(--ease);
  filter: sepia(10%) saturate(90%);
}

.location-image:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
  transform: translateY(-5px);
  filter: sepia(0%) saturate(100%);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: var(--muted);
}

.contact-item strong {
  color: var(--neon-blue);
}

/* Page Styles */
.page {
  padding: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-header h1 {
  margin-bottom: 1rem;
  color: var(--text);
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0 auto;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  color: var(--text);
  margin: 3rem 0 1.5rem;
}

.page-content h3 {
  color: var(--neon-blue);
  margin: 2rem 0 1rem;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: var(--muted);
}

.page-content li {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

/* Community Guidelines Widget */
.community-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.community-toggle {
  background: var(--danger);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 0, 128, 0.3);
  transition: all 0.3s var(--ease);
}

.community-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 0, 128, 0.4);
}

.community-panel {
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 0;
  width: 300px;
  background: var(--bg);
  border: 2px solid var(--danger);
  border-radius: 0.5rem;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.community-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.community-panel h3 {
  color: var(--danger);
  margin-bottom: 1rem;
}

.community-panel ul {
  list-style: none;
  margin-bottom: 1rem;
}

.community-panel li {
  padding: 0.25rem 0;
  color: var(--text);
  font-weight: 500;
}

.community-panel li::before {
  content: '•';
  color: var(--danger);
  margin-right: 0.5rem;
}

.community-panel p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Large Logo Showcase */
.logo-showcase {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}

.logo-hero {
  width: clamp(300px, 40vw, 500px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.5));
  opacity: 0.9;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  animation: pulse 3s ease-in-out infinite;
}

/* Avant-Garde Image Section */
.visual-break {
  position: relative;
  height: 60vh;
  margin: 4rem 0;
  overflow: hidden;
}

.image-split {
  position: relative;
  height: 100%;
  display: flex;
}

.image-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.image-panel.right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  margin-left: -15%;
}

.avant-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2) saturate(0.8);
  transition: transform 0.6s var(--ease);
}

.image-panel:hover .avant-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, transparent 50%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.image-overlay.neon {
  background: linear-gradient(45deg, rgba(255, 0, 128, 0.3) 0%, transparent 50%);
}

.floating-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
}

.neon-text {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: transparent;
  -webkit-text-stroke: 2px var(--neon-blue);
  text-shadow: 
    0 0 10px var(--neon-blue),
    0 0 20px var(--neon-blue),
    0 0 40px var(--neon-blue);
  animation: flicker 2s ease-in-out infinite;
}

.neon-text.accent {
  -webkit-text-stroke: 2px var(--neon-pink);
  text-shadow: 
    0 0 10px var(--neon-pink),
    0 0 20px var(--neon-pink),
    0 0 40px var(--neon-pink);
  animation-delay: 0.5s;
}

/* Experience Showcase */
.experience-showcase {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(30, 41, 59, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.experience-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.showcase-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.1);
  transition: all 0.6s var(--ease);
}

.showcase-image:hover .showcase-img {
  filter: grayscale(0) contrast(1.2);
  transform: scale(1.05);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.showcase-image:hover .showcase-overlay {
  transform: translateY(0);
}

.showcase-overlay h3 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.showcase-overlay p {
  color: var(--neon-pink);
  font-weight: 600;
  font-size: 1rem;
}

.showcase-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.showcase-content > p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.showcase-features {
  display: flex;
  gap: 2rem;
}

.feature {
  text-align: center;
}

.feature-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-yellow);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

.feature-text {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Award-Winning Gallery Showcase */
.gallery-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin: 4rem 0;
  min-height: 500px;
}

.gallery-hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0, 217, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.1);
}

.gallery-hero-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.9) contrast(1.1);
}

.gallery-hero:hover .gallery-hero-image {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

.gallery-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 15, 35, 0.9));
  padding: 3rem 2rem;
  transform: translateY(20px);
  transition: transform 0.6s var(--ease);
}

.gallery-hero:hover .gallery-hero-overlay {
  transform: translateY(0);
}

.hero-overlay-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.hero-overlay-content p {
  font-size: 1.25rem;
  color: var(--text);
  opacity: 0.9;
}

.gallery-feature {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 240px;
  background: rgba(255, 0, 128, 0.05);
  box-shadow: 0 15px 40px rgba(255, 0, 128, 0.1);
}

.gallery-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.95);
}

.feature-image-wrapper:hover .gallery-feature-image {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.feature-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-yellow));
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.feature-image-wrapper:hover .feature-glow {
  opacity: 0.3;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.feature-content p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.feature-stats {
  display: flex;
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neon-blue);
  font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Elegant Contact Info */
.contact-info-elegant {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(0, 217, 255, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-grid .contact-item {
  text-align: center;
}

.contact-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contact-value {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Parallax */
.parallax-container {
  position: relative;
  overflow: hidden;
}

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--accent);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--warm);
}

.footer-tagline {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-tagline p {
  color: var(--neon-pink);
  font-size: 1rem;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
  75% { opacity: 0.95; }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s var(--ease);
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-showcase {
    top: 15%;
  }
  
  .logo-hero {
    width: clamp(200px, 60vw, 300px);
  }
  
  .visual-break {
    height: 40vh;
  }
  
  .experience-showcase {
    padding: 4rem 1rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .showcase-features {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .gallery-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .gallery-hero {
    margin-bottom: 1rem;
  }
  
  .gallery-hero-image {
    min-height: 300px;
  }
  
  .gallery-hero-overlay {
    padding: 2rem 1.5rem;
  }
  
  .hero-overlay-content h3 {
    font-size: 1.5rem;
  }
  
  .hero-overlay-content p {
    font-size: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info-elegant {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .feature-stats {
    justify-content: center;
  }
  
  .neon-text {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 2rem;
  }
  
  .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease);
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-mobile {
    display: block;
  }
  
  .hero {
    padding: 0 2rem;
    text-align: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .quick-info,
  .location-section,
  .page {
    padding: 4rem 2rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .status-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .community-widget {
    bottom: 1rem;
    right: 1rem;
  }
  
  .community-panel {
    width: 280px;
  }
}

/* Menu specific styles */
.menu-content h2 {
  color: var(--neon-yellow);
  border-bottom: 2px solid var(--neon-yellow);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.menu-content h3 {
  color: var(--neon-blue);
}

/* High contrast focus for accessibility */
*:focus {
  outline: 2px solid var(--neon-blue);
  outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
button, a, .info-card {
  transition: all 0.3s var(--ease);
}

/* Hover states for better UX */
.contact-item:hover strong {
  color: var(--neon-pink);
}