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

html,
body {
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noir Pro", sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #212529;
  line-height: 1.6;
  font-size: 16px;
}

.hero-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.content-wrapper {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  animation: fadeInUp 1s ease-out;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

/* Brand Section */
.brand-section {
  margin-bottom: 4rem;
}

.brand-logo {
  height: clamp(4rem, 12vw, 8rem);
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
  transform: scale(1.02);
}

.brand-accent {
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #6c757d, #495057);
  margin: 0 auto;
  border-radius: 2px;
}

/* Hero Content */
.hero-content {
  margin-bottom: 4rem;
}

.hero-title {
  font-family: "Noir Pro", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: #212529;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #6c757d;
  margin-bottom: 0;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  margin-bottom: 3rem;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact-link {
  color: #212529;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: block;
}

.contact-link:hover {
  color: #495057;
  transform: scale(1.05);
}

/* Social Section */
.social-section {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #212529;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
  text-align: center;
  margin-top: auto;
  padding-bottom: 1rem;
}

.footer p {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    padding: 1.5rem;
  }

  .content-wrapper {
    width: 100%;
  }

  .brand-section {
    margin-bottom: 3rem;
  }

  .brand-logo {
    height: clamp(3rem, 10vw, 6rem);
  }

  .hero-content {
    margin-bottom: 4rem;
  }

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

  .contact-grid {
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
    max-width: 350px;
  }

  .contact-item {
    padding: 1.5rem 1.75rem;
    max-width: none;
    min-width: auto;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  .footer {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 1rem;
  }

  .brand-logo {
    height: clamp(2.5rem, 8vw, 4.5rem);
  }

  .brand-accent {
    width: 80px;
    height: 3px;
  }

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

  .contact-item {
    padding: 1.25rem 1.5rem;
  }

  .contact-link {
    font-size: 1rem;
    word-break: break-all;
  }
}

/* Loading animation */
.loading {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
