:root {
  --gold: #c9a23f;
  --black: #111;
  --white: #fff;
  --gray: #f5f5f5;
  --light-gray: #e8e8e8;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* Header & Navigation */
header {
  background: #000;
  color: #fff;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.5em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  margin: 10px;
  background: var(--gold);
  color: #000;
  font-weight: bold;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
  border-radius: 4px;
  cursor: pointer;
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2em;
  color: var(--black);
}

.section h1 {
  margin-bottom: 40px;
  font-size: 2.5em;
}

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

.card {
  background: var(--gray);
  padding: 30px;
  border-left: 5px solid var(--gold);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 4px;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 15px;
  color: var(--gold);
}

.card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
}

.card p {
  color: #555;
  font-size: 0.95em;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

footer p {
  margin-bottom: 10px;
}

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

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 20px;
  }
}
