/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* Hero Background */
.hero {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlay */
.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Branding */
.center-content {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInText 2.5s ease-out;
}

.brand {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInText 2.5s ease-out forwards;
}

.tagline {
  font-size: 1.6rem;
  color: #eee;
  opacity: 0;
  animation: fadeInText 2.5s ease-out forwards;
  animation-delay: 0.5s;
}

/* Contact Card */
.contact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 900px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease-out;
}

.contact-item {
  text-align: left;
  min-width: 240px;
  line-height: 1.6;
}

.contact-item p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-item address {
  font-style: normal;
  font-size: 1.05rem;
  color: #fff;
  margin-top: 0.5rem;
  line-height: 1.6;
  display: inline-block;
}

.contact-item strong {
  color: #ffdf80;
  font-weight: 600;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .brand {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .contact-card {
    flex-direction: column;
    padding: 1.2rem;
  }

  .contact-item {
    text-align: center;
  }

  .contact-item address {
    text-align: center;
    display: block;
  }
}
