/* styles.css */

/* Global reset and base styling */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

/* Hero section with fully responsive background */
.hero {
  width: 100vw;
  height: 100vh;

  background-image: url('cragx_b.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;   /* Ensures full-screen scaling */
  background-attachment: fixed; /* Desktop parallax effect */

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Mobile override (iOS/Android ignore fixed backgrounds) */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

/* Dark overlay behind text */
.overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem 3rem;
  text-align: center;
  border-radius: 8px;
}

/* Logo styling */
.logo {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

/* Tagline styling */
.tagline {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #ccc;
}
