* {
  margin: 0;
  padding: 0;
}

:root {
  --content-font: 'Inter', sans-serif;
  --theme-primary-color: #011222;
  --theme-secondary-color: #E9BA24;
  --button-padding: 12px;
}

footer {
  padding: 30px;
}

.footer-outer-container {
  background-color: var(--theme-primary-color);
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.hero-section {
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFFE5;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--theme-secondary-color);
  border: 2px solid var(--theme-secondary-color);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--theme-secondary-color);
  color: var(--theme-primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.cta-button i {
  font-size: 0.875rem;
}

.footer {
  padding: 60px 20px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px;
  margin-bottom: 40px;
}

.footer-brand {
  width : 250px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  color: #0a1525;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.brand-subtitle {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.brand-description {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--theme-secondary-color);
  transform: translateX(4px);
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-bottom .heart {
  color: #ef4444;
  margin: 0 4px;
}

.footer-bottom a {
  color: var(--theme-secondary-color);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-outer-container > p {
  text-align: center;
  width: 100%;
  max-inline-size: none;
}

#play-icon{
  fill : var(--theme-primary-color);
}

.bottom-text {
  font-size: 16px;
  font-weight: 400;
  color: #9CA3AF;
}

.contact-details {
  color: #94a3b8;
}

@media (max-width: 548px) {
  .footer {
    padding: 0 20px 32px
  }

  .social-links {
    justify-content: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  .brand-logo {
    flex-direction: column;
    margin-bottom: 0;
  }

  .footer-container {
    flex-direction: column;
    gap : 24px;
  }
}

.arivugg {
  color: #DC2626;
  font-family: monospace;
}
