/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: #000;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.logo span {
  color: red;
}
.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: red;
}

/* Hero */
.hero {
  height: 100vh;
  background: url('assets/images/bg.jpg') no-repeat center center/cover;
  position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.6);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}
.hero-content h1 span {
  color: red;
}
.hero-content p {
  margin-top: 15px;
  font-size: 1.2rem;
}
.cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  font-size: 1rem;
  color: #fff;
  background-color: red;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #c10000;
}

