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

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
}

.hero {
  background: url('bg.jpg') no-repeat center center/cover;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

.overlay {
  /* background-color: rgba(0, 0, 0, 0.6); */
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  text-align: center;
  color: white;
  max-width: 900px;
}

.logo-section .logo-placeholder {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.main-title h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.main-title h1 span {
  font-weight: bold;
  color: white;
}

.separator span {
  font-size: 1.5rem;
  margin: 1rem 0;
  display: inline-block;
}

.footer {
  font-size: 0.9rem;
  margin-top: 2rem;
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .main-title h1 {
    font-size: 1.8rem;
  }

  .logo-section .logo-placeholder {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .footer {
    font-size: 0.8rem;
  }
}
