@font-face {
  font-family: "YourFont";
  src: url("./assets/your-font.otf") format("opentype");
}

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

html, body {
  height: 100%;
}

body {
  font-family: "YourFont", sans-serif;
}

.hero {
  width: 100%;
  height: 100vh;
  background-image: url("./assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
}

/* Centered text */
.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: clamp(20px, 2.4vw, 38px);
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.center-text a {
  color: white;
  text-decoration: underline;
  margin-left: 6px;
}

.cta-line {
  margin-top: 10px;
}

/* Bottom bar: aligns logo + icons together */
.bottom-bar {
  position: absolute;
  bottom: 0px;
  left: 24px;
  right: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Your large padded logo */
.logo {
  height: 164px;
  max-width: 300px;
}

/* Social icons container */
.socials {
  display: flex;
  gap: 16px;
  align-items: center;
  filter: invert(1);
}

/* Make all icons the same size */
.socials img {
  width: 32px;
  height: 32px;
  display: block;
}

/* Slight hover polish */
.socials a {
  transition: transform 0.1s ease;
}

.socials a:hover {
  transform: translateY(-1px);
}