/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-image: url("assets/images/hero-rain.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Grain/Shadow overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)),
              radial-gradient(circle at top, rgba(0,0,0,0.25), transparent 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.site-title {
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #ccc;
  text-transform: uppercase;
}

.main-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 2rem;
}

/* Button */
.button {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.button:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.8rem;
  padding: 2rem 0;
  color: #aaa;
}

/* Footer Link Styling */
.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer a:hover {
  text-decoration: underline overline;
  text-decoration-thickness: 1px;
  color: #ffffff;
}
