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

body {
  font-family: 'Inter', sans-serif;
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.hero-logo {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.hero-content p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 4;
}

.footer-logo {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.footer p {
  font-size: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.socials a {
  display: flex;
  align-items: center;
}

.socials img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

.socials a:hover img {
  opacity: 1;
}
