* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background: #0a0a0a;
  color: #f5f5f5;
}


.navbar {
  display: flex;
  justify-content: space-between;
  padding: 24px 70px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  letter-spacing: 4px;
  font-size: 1.2rem;
  color: #d4af37;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

.navbar a {
  color: #aaa;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: 0.4s;
}

.navbar a:hover {
  color: #fff;
}


.hero {
  height: 92vh;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.95)),
    url("background.jpg.1.jpg");
  background-size: cover;
  display: flex;
  align-items: center;
  padding-left: 90px;
}

.hero-content {
  max-width: 600px;
  animation: heroFade 1.8s ease;
}

.hero-content h2 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  color: #bbb;
  margin-bottom: 40px;
}

.hero-content button {
  padding: 14px 46px;
  border: none;
  background: linear-gradient(135deg, #d4af37, #9f7c1f);
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

/* SECTIONS */
.section {
  padding: 120px 80px;
  text-align: center;
}

.section.dark {
  background: #111;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 70px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #d4af37;
  display: block;
  margin: 20px auto 0;
}

.hidden {
  display: none;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  width: 280px;
  padding: 22px;
  background: linear-gradient(180deg, #111, #000);
  border-radius: 18px;
  transition: all 0.6s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.card h4 {
  margin-bottom: 6px;
}

.card span {
  color: #d4af37;
}

.card:hover {
  transform: translateY(-16px) scale(1.05);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
}


footer {
  background: #000;
  padding: 30px;
  text-align: center;
  color: #777;
}


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.back-btn {
  position: fixed;
  top: 90px;
  left: 40px;
  padding: 10px 22px;
  background: rgba(0,0,0,0.7);
  color: #d4af37;
  border: 1px solid #d4af37;
  font-size: 0.85rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border-radius: 30px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 200;
}

.back-btn:hover {
  background: #d4af37;
  color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.back-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
