:root {
  --red: #d40511;
  --yellow: #ffcc00;
  --dark: #0f0f0f;
  --light: #f5f6f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--light);
}

/* NAV */
header {
  background: var(--dark);
  color: #fff;
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}

header.scrolled {
  background: #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 22px;
}

/* HERO */
.hero {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--red), #8b0000);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.hero h1 {
  font-size: 48px;
  font-family: "Barlow Condensed";
}

.hero p {
  max-width: 600px;
  margin: 10px auto;
}

/* ABOUT */
.section {
  padding: 70px 8%;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-img {
  height: 320px;
  background: url("https://images.unsplash.com/photo-1601597111158-2fceff292cdc")
    center/cover;
  border-radius: 10px;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
}

.stat h3 {
  font-size: 28px;
  color: var(--red);
}

/* VALUES */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 800px) {
  nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }
  nav.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 32px;
  }
}

footer {
  background: #080808;
  color: #fff;
  padding: 60px 8% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin: 15px 0;
}

.brand-name {
  font-family: "Barlow Condensed";
  font-size: 26px;
  font-weight: 800;
}

.footer-col h5 {
  font-size: 14px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--yellow);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.logo-placeholder {
  width: 150px;
  height: 46px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: var(--dark);
  letter-spacing: 0.5px;
  overflow: hidden;
}

.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.brand-name span {
  color: var(--yellow);
}
