/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0d0d0d;
  color: white;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.6);
  position: fixed;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 28px;
  font-weight: 800;
}

.white { color: white; }
.blue { color: #3fa9f5; }

.navbar nav {
  display: flex;
  gap: 25px;
}

.navbar nav a {
  font-weight: 500;
  transition: 0.2s;
}

.navbar nav a:hover {
  color: #3fa9f5;
}

.subscribe-btn {
  background: #3fa9f5;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.2s;
}

.subscribe-btn:hover {
  background: #2b7fc0;
}

/* HERO */
.hero {
  height: calc(100vh - 80px);
  background: url('background.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero .welcome {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 0.9;
}

.hero h1 {
  font-size: 80px;
  font-weight: 800;
  margin: 10px 0;
  color: white;
  line-height: 1.1;
}

.hero h1 .blue {
  color: #3fa9f5; /* GOD in blue */
}

.tagline {
  font-size: 20px;
  opacity: 0.8;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: 0.25s;
}

.primary {
  background: #3fa9f5;
  color: black;
}

.primary:hover {
  background: #2b7fc0;
}

.secondary {
  background: #ffffff;
  color: black;
}

.secondary:hover {
  background: #dcdcdc;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 60px 50px;
}

.card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  background: #222;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card p {
  opacity: 0.8;
  margin-bottom: 10px;
}

.card a {
  color: #3fa9f5;
  font-weight: 600;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #0d0d0d;
  opacity: 0.7;
  font-size: 14px;
}
