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

body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background-color: #ffffff;
  line-height: 1.6;
}

/* COLORS */
:root {
  --black: #0e0e0e;
  --red: #8b0d18;
  --white: #ffffff;
  --gray: #f4f4f4;
}

/* NAV */
.hero {
  background: var(--black);
  color: var(--white);
  padding-bottom: 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
}

/* ✅ LOGO SIZE FIX (THIS IS THE PART YOU WANTED) */
.logo {
  max-width: 160px;   /* smaller, controlled */
  height: auto;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* BUTTONS */
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* HERO CONTENT */
.hero-content {
  max-width: 900px;
  padding: 3rem 4rem 0;
}

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* VALUES SECTION */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem;
  background: var(--gray);
}

.value h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value p {
  font-size: 0.95rem;
}

/* FOOTER */
.footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  background: #fafafa;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-content {
    padding: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .logo {
    max-width: 140px;
  }
}
