/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', 'Segoe UI', sans-serif; background: #000000; color: #F5F5F5; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* CONTAINER */
.container { max-width: 1200px; margin: auto; padding: 20px; }

/* HEADER */
.site-header { background: #000000; border-bottom: 1px solid #333333; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; position: relative; }
.site-header .logo { font-size: 1.8rem; font-weight: bold; color: #D4AF37; letter-spacing: 2px; }
.site-header .logo span { color: #F5F5F5; }
.site-header nav ul { list-style: none; display: flex; gap: 25px; }
.site-header nav a { color: #F5F5F5; font-weight: 500; text-transform: uppercase; transition: 0.3s; }
.site-header nav a.active, .site-header nav a:hover { color: #D4AF37; }

/* HAMBURGER MENU */
#menu-toggle { display: none; }
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #F5F5F5;
}

/* HERO */
.hero { position: relative; height: 75vh; display: flex; justify-content: center; align-items: center; color: #F5F5F5; text-align: center; background: url('../images/hero.jpg') center/cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 3.5rem; margin-bottom: 15px; color: #D4AF37; }
.hero p { font-size: 1.2rem; margin-bottom: 25px; }

/* BUTTONS */
.btn, .btn-outline { padding: 12px 30px; border-radius: 30px; margin: 5px; font-weight: 600; letter-spacing: 1px; transition: 0.3s; cursor: pointer; }
.btn { background: #D4AF37; color: #000000; }
.btn:hover { background: #b8932a; }
.btn-outline { border: 2px solid #D4AF37; color: #D4AF37; background: transparent; }
.btn-outline:hover { background: #D4AF37; color: #000000; }

/* GRID & CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin: 40px 0; }
.card { background: #111111; border: 1px solid #333333; border-radius: 12px; padding: 25px; box-shadow: 0 6px 18px rgba(0,0,0,0.6); transition: 0.3s; }
.card:hover { transform: translateY(-5px); border-color: #D4AF37; }
.card img { width: 100%; border-radius: 8px; margin-bottom: 15px; }
.card h2, .card h3 { color: #D4AF37; margin-bottom: 12px; }
.card p { margin-bottom: 12px; color: #F5F5F5; }
.card .link { font-weight: bold; color: #D4AF37; }

/* HIGHLIGHT */
.highlight { background: #111111; padding: 50px 20px; text-align: center; border-top: 2px solid #D4AF37; border-bottom: 2px solid #D4AF37; }
.highlight h2 { margin-bottom: 15px; color: #D4AF37; }

/* CTA */
.cta { text-align: center; padding: 50px 20px; background: #D4AF37; color: #000000; }
.cta h2 { margin-bottom: 20px; }

/* FOOTER */
footer { background: #000000; color: #F5F5F5; padding: 30px; margin-top: 50px; border-top: 1px solid #333333; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center; }
footer nav a { color: #D4AF37; margin-left: 10px; }

/* FORM */
form input, form textarea { width: 100%; padding: 12px; margin: 12px 0; border: 1px solid #333333; border-radius: 8px; background: #111111; color: #F5F5F5; }
form input::placeholder, form textarea::placeholder { color: #777; }
form button { display: inline-block; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }

  /* Show hamburger menu */
  .menu-icon { display: block; }

  /* Hide nav menu by default */
  .site-header nav { display: none; width: 100%; }
  #menu-toggle:checked + .menu-icon + nav { display: block; }

  .site-header nav ul { flex-direction: column; gap: 12px; padding: 10px 0; }
  .site-header nav ul li a { display: block; padding: 10px 15px; border-top: 1px solid #333; }

  .footer-content { flex-direction: column; gap: 15px; text-align: center; }
}
