/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  color: white;
  background: black;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: #0b1c2d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}


/* CONTENT */
.content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 12px 24px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background: #ddd;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: black;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}

.responsive-img {
  width: 100%;       /* Spans the full width of the parent container */
  height: auto;      /* Keeps the aspect ratio so it doesn't look squashed */
  display: block;    /* Removes the tiny gap at the bottom of images */
}


.container {
  max-width: 800px;
  margin: auto;
}

h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
  background: #000;
  opacity: 0.7;
}
