
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
}
.hero {
  background: url('../assets/ROSSER Photo.jpeg') top center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
}
.hero-logo {
  max-width: 300px;
  margin-bottom: 1rem;
}
.tagline {
  font-size: 1.2rem;
  color: #cba3e3;
  max-width: 700px;
  margin: 0 auto;
}
section {
  padding: 2rem 5vw;
  border-bottom: 1px solid #444;
}
h2 {
  color: #cba3e3;
}
a {
  color: #cba3e3;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.socials a {
  margin-right: 1rem;
}
footer {
  background-color: #111;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 768px) {
  .hero {
    background-position: center top;
    background-size: contain;
    height: auto;
    padding-top: 56.25%; /* Maintain aspect ratio */
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    background-position: center top;
    background-size: contain;
    height: auto;
    padding-top: 56.25%;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
  }
  .hero-logo {
    max-width: 180px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
