/* ================= BASE ================= */
:root{
  --bg: #0a0a0a;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.75);
  --border: rgba(255,255,255,0.18);

  --primary: #c30000;
  --primary-dark: #8f0000;

  --shadow: 0 20px 55px rgba(0,0,0,0.7);
  --radius: 18px;
  --container: 1100px;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ================= NAVBAR ================= */
.site-header{
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
}

/* BIGGER NAVBAR LOGO */
.brand-logo{
  height: 64px;       /* 🔴 SIZE CONTROL */
  width: auto;
  display: block;
}

/* Navbar buttons */
.nav-actions{
  display: flex;
  gap: 12px;
}

.nav-link,
.nav-btn{
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

/* ================= HERO IMAGE ================= */
.home{
  min-height: calc(100vh - 90px);
}

/* CENTER THE IMAGE */
.hero{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

/* MAIN IMAGE STYLING */
.hero-image{
  max-width: 85%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ================= INFO SECTION ================= */
.info{
  padding: 20px 0 60px;
}

.info-box{
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 20px;
}

.info-box h1{
  margin-bottom: 14px;
}

.info-box p{
  color: var(--muted);
  line-height: 1.7;
}

.info-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 20px 0;
}

.btn{
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
}

.btn-black{
  background: #000000;
  color: #ffffff;
}

.small{
  font-size: 13.5px;
  color: var(--muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px){
  .hero-image{
    max-width: 95%;
    max-height: 60vh;
  }

  .info-actions{
    flex-direction: column;
  }
}
