@font-face {
  font-family: 'ProximaNovaAltLight';
  src: url('public/fonts/ProximaNovaAltLight.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ProximaNovaBold';
  src: url('public/fonts/ProximaNovaBold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

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

:root {
  --light-blue: #4a9eff;
  --water-cyan: #00bcd4;
  --deep-blue: #0013bf;
  --text-light: #ffffff;
  --text-gray: #94a3b8;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0a1628;
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Container */
.container {
  background-image: url("public/images/hamza-slider.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 100vw rgba(5, 24, 159, 0.67);
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Logo */
.logo-container {
  margin-bottom: 1rem;
  animation: logoGlow 3s ease-in-out infinite;
}

.logo-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 188, 212, 0.5));
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(0, 188, 212, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(74, 158, 255, 0.8));
  }
}

/* Tagline */
.tagline {
  font-family: 'ProximaNovaAltLight', sans-serif;
  font-size: 1.4rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.03em;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Main Heading */
.main-heading {
  font-family: 'ProximaNovaBold', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, var(--text-light), var(--light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.6s both;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Description */
.description {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 600px;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.9s both;
}

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

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.social-link:hover {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  box-shadow: 0 10px 25px rgba(0, 188, 212, 0.4);
}

/* Contact Info */
.contact-info {
  font-family: 'ProximaNovaAltLight', sans-serif;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.95rem;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.contact-info span {
  color: var(--water-cyan);
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-image {
    max-width: 200px;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .main-heading {
    font-size: 2rem;
  }
}
