﻿/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: Arial, sans-serif;
  background: #000;
  color: white;
  line-height: 1.5;
}


/* HEADER – NOT FIXED ANYMORE */
.site-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #000;
}


.logo img {
  height: 55px;
}


.nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-size: 1.1rem;
}


.nav a:hover {
  color: #d4af37;
}


/* HERO – COVER ONLY, FULLY VISIBLE */
.hero {
  background: #000;
  padding: 20px 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.hero img {
  max-width: 90vw;   /* keep it inside the screen width */
  max-height: 80vh;  /* keep whole image on screen */
  height: auto;
  display: block;
}


/* INTRO TEXT BELOW THE IMAGE */
.intro {
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 0 20px;
  text-align: left;
}


.intro h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}


.intro h2 {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 20px;
}


.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
}


/* BUTTONS */
.hero-buttons a,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 26px;
  margin: 8px 8px 16px 0;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}


.btn-primary {
  background: #d4af37;
  color: #000;
}


.btn-primary:hover {
  background: #b9972f;
}


.btn-secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
}


.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}


/* PROMISE LIST */
.hero-promises {
  list-style: none;
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.7;
}


/* CHAPTER SECTION (unchanged – you liked this) */
.chapter {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 20px;
}


.chapter h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}


.chapter p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}


.chapter .btn-primary {
  font-size: 1.3rem;
  padding: 14px 32px;
}


/* MOBILE */
@media (max-width: 768px) {
  .intro h1 {
    font-size: 2.4rem;
  }
  .intro h2 {
    font-size: 1.3rem;
  }
}