:root {
  --bg: #f8f9fa;
  --text: #222;
  --accent: #d65a31;      /* orange beef accent */
  --card-bg: #fff;
  --card-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / Hero */
header {
  height: 600px;
  padding: 2rem;
  background: linear-gradient(135deg, #1e1e2e, #3a3a5a);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn:hover {
  background: #c04626;
  transform: translateY(-2px);
}

/* Angled divider below hero */
.hero-divider {
  height: 120px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: -120px;
  width: 100%;
}

/* Main content */
main {
  padding: 100px 2rem 80px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.8rem auto 0;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.card-img {
  height: 160px;
  background: linear-gradient(45deg, #eee, #ddd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #333;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  margin-top: 0.5rem;
  transform: rotate(-2deg); /* small angled badge */
}

/* Footer */
footer {
  padding: 60px 2rem 40px;
  background: #1e1e2e;
  color: #fff;
  position: relative;
}

.footer-divider {
  height: 100px;
  background: #1e1e2e;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  top: -100px;
  width: 100%;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}