/* --------------------------------------------------------------
# Hero
-------------------------------------------------------------- */

#hero {
  width: 100%;
  height: 100vh;
  background: url("../../assets/img/Hero/Hero-bg.png") top left no-repeat;
  background-size: cover;
  position: relative;
  color: #fff;
}

@media (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 48px;
    line-height: 36px;
  }
}

/* Enable smooth scrolling */

html {
  scroll-behavior: smooth;
}

/* Make the hero banner the positioning context for the button */

.hero-banner {
  position: relative;
  /*IMPORTANT: Makes the absolute button position relative to this div;*/
  min-height: 100vh;
  /*Example: Takes up the full viewport height;*/
}

/* Style for the button (Absolute Position) */

#scroll-down-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 1.5em;
  padding: 0;
  transition: opacity 0.3s ease;
}

/* This is the class we will use to hide the button */

.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Enable smooth scrolling */

html {
  scroll-behavior: smooth;
}

/* Style for the button (fixed position and look) */

#scroll-down-btn {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.3s ease;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

/* The class we will use to hide the button */

.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Removed 'position: fixed' or 'position: absolute' to ensure clickability */

#hero {
  width: 100%;
  height: 100vh;
  /*background-color: dark-teal (or whatever color you are using);*/
}

#hero .container {
  z-index: 10;
  padding-left: 0;
}

/* --- NEW SOCIAL LINKS STYLES (For Boxed/Circular Look) --- */

/* Target the individual social link wrappers */

#hero .social-links {
  margin-top: 25px;
}

#hero .social-links a {
  font-size: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10%;
  margin-right: 15px;
  text-decoration: none;
}

/* Hover Effect */

#hero .social-links a:hover {
  background: #0749ff;
  color: #111;
}

