/* ============================================
   Min Al Rimal - Dubai City Anthem 2025
   Cinematic, Reverent, Hopeful Design
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Primary Colors - Deep Navy & Gold */
  --color-navy: #0a1628;
  --color-navy-light: #142238;
  --color-navy-dark: #060d17;
  --color-gold: #d4af37;
  --color-gold-light: #e8c967;
  --color-gold-dark: #b8942e;

  /* UAE Flag Colors */
  --color-uae-green: #00732f;
  --color-uae-white: #ffffff;
  --color-uae-black: #000000;
  --color-uae-red: #ce1126;

  /* Neutral Colors */
  --color-white: #ffffff;
  --color-cream: #f5f3ee;
  --color-text: #e8e6e3;
  --color-text-muted: #a0a0a0;

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic: 'Amiri', 'Traditional Arabic', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

/* ---------- 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(--color-navy);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 16px auto 0;
}

.section-intro {
  font-size: 1.125rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  color: var(--color-text-muted);
}

/* ---------- Sections Base ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section:nth-child(even) {
  background-color: var(--color-navy-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(135deg,
      rgba(10, 22, 40, 0.85) 0%,
      rgba(10, 22, 40, 0.7) 50%,
      rgba(20, 34, 56, 0.8) 100%
    ),
    url('../images/burj.jpeg') center center / cover no-repeat fixed;
  overflow: hidden;
}

/* Animated background effect */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 115, 47, 0.05) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero-overlay {
  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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" fill-opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

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

.hero-title {
  margin-bottom: 16px;
}

.title-main {
  display: block;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  color: var(--color-gold);
  text-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
  letter-spacing: 2px;
}

.title-sub {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--color-text);
  font-style: italic;
  margin-top: 8px;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-white);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-tribute {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-medium);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-navy-dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

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

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

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: var(--color-gold);
  font-size: 1.5rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.scroll-indicator a:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   FULL SONG SECTION - GLOBAL EDITION
   ============================================ */
.full-song-section {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  text-align: center;
}

.release-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-navy-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.release-badge i {
  font-size: 0.75rem;
}

.release-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 32px;
}

.release-date i {
  font-size: 1rem;
}

.video-wrapper.featured {
  box-shadow: 0 20px 80px rgba(212, 175, 55, 0.2), 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-dark);
  font-size: 2rem;
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.4);
}

.video-placeholder p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  background: var(--color-navy-light);
}

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

.story-content p {
  font-size: 1.125rem;
  margin-bottom: 24px;
  text-align: center;
  color: var(--color-text);
}

.story-content strong {
  color: var(--color-gold);
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-section {
  background: var(--color-navy);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.quote-card {
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-top: 3px solid var(--color-uae-green);
  position: relative;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.quote-icon {
  color: var(--color-gold);
  font-size: 2rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.quote-card cite {
  display: block;
  color: var(--color-gold);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
}

.vision-closing {
  text-align: center;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   STRATEGIC DRIVERS SECTION
   ============================================ */
.drivers-section {
  background: var(--color-navy);
}

.drivers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.drivers-grid .driver-card:last-child {
  grid-column: 2 / 3;
}

@media (max-width: 900px) {
  .drivers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .drivers-grid .driver-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .drivers-grid {
    grid-template-columns: 1fr;
  }
  .drivers-grid .driver-card:last-child {
    max-width: 100%;
  }
}

.driver-card {
  background: rgba(20, 34, 56, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-medium);
}

.driver-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(20, 34, 56, 0.8);
}

.driver-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: 50%;
}

.driver-icon i {
  font-size: 1.5rem;
  color: var(--color-navy);
}

.driver-card h3 {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.driver-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   LYRICS SECTION
   ============================================ */
.lyrics-section {
  background: linear-gradient(180deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
}

.lyrics-block {
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 32px;
  background: rgba(10, 22, 40, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-left: 3px solid var(--color-uae-red);
}

.lyrics-block h3 {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;
}

/* Arabic Text Styling */
.arabic-text {
  font-family: var(--font-arabic);
  font-size: 1.75rem;
  line-height: 2.2;
  text-align: center;
  color: var(--color-white);
}

.arabic-text p {
  margin-bottom: 8px;
}

/* Transliteration */
.transliteration-text {
  text-align: center;
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 2;
}

.transliteration-text p {
  margin-bottom: 4px;
}

/* Translation */
.translation-text {
  text-align: center;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 2;
}

.translation-text p {
  margin-bottom: 4px;
}

/* English Verse */
.verse-text {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  line-height: 2;
  color: var(--color-text);
  font-style: italic;
}

.verse-text p {
  margin-bottom: 4px;
}

/* ============================================
   DEDICATION SECTION
   ============================================ */
.dedication-section {
  background: var(--color-navy);
  text-align: center;
}

.dedication-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
  position: relative;
}

.dedication-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--color-uae-green),
    var(--color-uae-white),
    var(--color-uae-red)
  );
  border-radius: 12px 12px 0 0;
}

.dedication-content p {
  font-size: 1.25rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.dedication-content strong {
  color: var(--color-gold);
}

/* ============================================
   PHASE 2 - EXTENDED ARABIC EDITION
   ============================================ */
.phase2-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 50%, var(--color-navy) 100%);
  text-align: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.coming-soon-badge i {
  font-size: 0.875rem;
}

.phase2-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 16px;
}

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

.phase2-content p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.phase2-content strong {
  color: var(--color-gold);
}

.phase2-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.phase2-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  position: relative;
  cursor: pointer;
  aspect-ratio: 16 / 10;
}

.phase2-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.phase2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.image-overlay i {
  font-size: 1rem;
}

.phase2-image:hover .image-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: var(--color-white);
  cursor: pointer;
  transition: color var(--transition-fast);
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--color-gold);
}

#lightbox-img {
  max-width: 95%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================
   CONTACT SECTION - PARTNERSHIPS & LICENSING
   ============================================ */
.contact-section {
  background: var(--color-navy-light);
  text-align: center;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--color-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-medium);
}

.contact-btn i {
  font-size: 1.5rem;
}

.contact-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-btn.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 119, 181, 0.3);
}

.contact-btn.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .phase2-gallery {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ============================================
   SHARE SECTION
   ============================================ */
.share-section {
  background: linear-gradient(180deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
  text-align: center;
}

.share-buttons,
.social-share,
.social-follow {
  margin-bottom: 48px;
}

.share-buttons h3,
.social-share h3,
.social-follow h3 {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Platform Links */
.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-medium);
}

.platform-btn i {
  font-size: 1.25rem;
}

.platform-btn.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: white;
}

.platform-btn.spotify:hover {
  background: #1db954;
  border-color: #1db954;
  color: white;
}

.platform-btn.apple:hover {
  background: #fa57c1;
  border-color: #fa57c1;
  color: white;
}

/* Social Links */
.social-links,
.follow-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.social-btn,
.follow-btn {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.25rem;
  transition: all var(--transition-medium);
}

.social-btn:hover,
.follow-btn:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.social-btn.whatsapp:hover { background: #25d366; color: white; border-color: #25d366; }
.social-btn.linkedin:hover { background: #0077b5; color: white; border-color: #0077b5; }
.social-btn.twitter:hover { background: #000; color: white; border-color: #000; }
.social-btn.facebook:hover { background: #1877f2; color: white; border-color: #1877f2; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 40px;
  text-align: center;
  border-top: 4px solid;
  border-image: linear-gradient(90deg,
    var(--color-uae-green) 0%,
    var(--color-uae-green) 25%,
    var(--color-uae-white) 25%,
    var(--color-uae-white) 50%,
    var(--color-uae-black) 50%,
    var(--color-uae-black) 75%,
    var(--color-uae-red) 75%,
    var(--color-uae-red) 100%
  ) 1;
  background:
    linear-gradient(
      rgba(6, 13, 23, 0.75) 0%,
      rgba(6, 13, 23, 0.85) 100%
    ),
    url('../images/group.jpeg') center center / cover no-repeat;
}

.footer-content h3 {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer-subtitle {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 24px;
}

.footer-credit {
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.footer-credit strong {
  color: var(--color-text);
}

.footer-blessing {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.footer-uae {
  color: var(--color-text);
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.footer-flags {
  margin-bottom: 32px;
}

.uae-flag {
  display: inline-block;
  width: 60px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    var(--color-uae-green) 0%,
    var(--color-uae-green) 33.33%,
    var(--color-uae-white) 33.33%,
    var(--color-uae-white) 66.66%,
    var(--color-uae-black) 66.66%,
    var(--color-uae-black) 100%
  );
  position: relative;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.uae-flag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 25%;
  background: var(--color-uae-red);
  border-radius: 4px 0 0 4px;
}

.footer-copyright {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-photo-credit {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  margin-top: 12px;
}

.footer-photo-credit a {
  color: var(--color-text-muted);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

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

  .quote-card {
    padding: 28px 24px;
  }

  .lyrics-block {
    padding: 24px 16px;
  }

  .arabic-text {
    font-size: 1.5rem;
  }

  .platform-links {
    flex-direction: column;
    align-items: center;
  }

  .platform-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .title-main {
    font-size: 2.5rem;
  }

  .hero-tribute {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .story-content p,
  .dedication-content p {
    font-size: 1rem;
  }

  .arabic-text {
    font-size: 1.25rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

/* Smooth section reveals */
.section {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.section:nth-child(1) { animation-delay: 0s; }
.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.1s; }
.section:nth-child(4) { animation-delay: 0.1s; }
.section:nth-child(5) { animation-delay: 0.1s; }
.section:nth-child(6) { animation-delay: 0.1s; }
.section:nth-child(7) { animation-delay: 0.1s; }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
