/* ============================================
   80s Ladies Forever - Main Stylesheet
   ============================================

   COLOR GUIDE (edit these to match your branding):
   --primary: Hot pink / magenta
   --secondary: Electric purple
   --accent: Cyan / electric blue
   --gold: Gold accent
   --dark: Dark background
   --light: Light text
   ============================================ */

:root {
  --primary: #ff2d95;
  --primary-dark: #cc1a75;
  --secondary: #8b5cf6;
  --accent: #00e5ff;
  --gold: #fbbf24;
  --dark: #0a0a1a;
  --dark-mid: #141428;
  --dark-light: #1e1e3a;
  --light: #f0f0ff;
  --light-dim: #b0b0cc;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1a2e 100%);
  --font-display: 'Cute Font', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  text-transform: uppercase;
}

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

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--light-dim);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--light-dim);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 45, 149, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 45, 149, 0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  color: var(--light-dim);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 700;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 45, 149, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tagline {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--light-dim);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating glow elements */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-glow-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.hero-glow-2 {
  width: 250px;
  height: 250px;
  background: var(--secondary);
  bottom: 10%;
  right: -5%;
  animation-delay: -3s;
}

.hero-glow-3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 60%;
  left: 50%;
  opacity: 0.2;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ---- Sections ---- */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--dark-mid);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

/* Decorative line under section headers */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ---- About Section (Home Page) ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-image-placeholder {
  color: var(--light-dim);
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
}

.about-text h2 {
  text-align: left;
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 45, 149, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.highlight-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--light);
}

.highlight-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ---- Video Section ---- */
.video-container {
  max-width: 380px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 vertical */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--light-dim);
  gap: 1rem;
}

.video-placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 45, 149, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 5rem 0;
  background: var(--gradient-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  color: var(--primary-dark);
}

/* ---- Shows Page ---- */
.shows-widget-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--dark-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 400px;
}

.shows-placeholder {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--light-dim);
}

.shows-placeholder h3 {
  margin-bottom: 1rem;
  color: var(--light);
}

.shows-placeholder code {
  display: block;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 8px;
  margin: 1.5rem auto;
  max-width: 500px;
  font-size: 0.85rem;
  color: var(--accent);
  word-break: break-all;
}

/* ---- EPK / Press Kit Page ---- */
.epk-hero {
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  background: var(--gradient-hero);
  text-align: center;
}

.epk-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.epk-stat {
  text-align: center;
}

.epk-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.epk-stat-label {
  font-size: 0.85rem;
  color: var(--light-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* EPK Bio */
.epk-bio {
  max-width: 800px;
  margin: 0 auto;
}

.epk-bio p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* EPK Simple Layout */
.epk-simple-section {
  max-width: 900px;
  margin: 0 auto;
}

.epk-simple-section h2 {
  margin-bottom: 0.5rem;
}

.epk-section-intro {
  color: var(--light-dim);
  margin-bottom: 2rem;
}

/* EPK Photo Grid */
.epk-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.epk-photo-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.epk-photo-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.epk-photo-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.epk-photo-label {
  display: block;
  padding: 0.6rem 0.75rem;
  font-size: 0.8rem;
  color: var(--light-dim);
  background: var(--dark-mid);
}

/* EPK Document List */
.epk-doc-list {
  list-style: none;
  max-width: 600px;
}

.epk-doc-list li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.epk-doc-list li:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.epk-doc-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.5rem;
  color: var(--light);
  transition: color 0.2s ease, background 0.2s ease;
}

.epk-doc-list a:hover {
  color: var(--primary);
}

.epk-doc-list a .fa-solid:first-child {
  color: var(--accent);
  width: 20px;
  text-align: center;
}

.epk-doc-list a .fa-download {
  margin-left: auto;
  color: var(--light-dim);
  font-size: 0.85rem;
}

.epk-doc-list span {
  flex: 1;
}

.epk-doc-list em {
  font-style: normal;
  color: var(--light-dim);
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

/* EPK Media Gallery */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.media-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.media-card:hover {
  transform: translateY(-4px);
}

.media-card-image {
  aspect-ratio: 16/9;
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-dim);
  font-size: 0.9rem;
}

.media-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.media-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card-body {
  padding: 1.25rem;
}

.media-card-body h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--light);
}

.media-card-body p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* EPK Downloads */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--dark-light);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  color: var(--light);
}

.download-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  color: var(--light);
}

.download-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 45, 149, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.download-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.download-info p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--light-dim);
}

/* ---- Contact Page ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 45, 149, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail-item span {
  font-size: 0.95rem;
  color: var(--light-dim);
}

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

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-dim);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Contact Form */
.contact-form {
  background: var(--dark-light);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b0b0cc' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn {
  width: 100%;
}

/* Submit button spinner */
.form-submit .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
  font-size: 0.9rem;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-nav h4,
.footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: var(--light-dim);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--light);
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--light-dim);
  margin-bottom: 0;
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  background: var(--gradient-hero);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text h2 {
    text-align: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 90vh;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .epk-stats {
    gap: 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .epk-stats {
    flex-direction: column;
    align-items: center;
  }
}
