:root {
  --green: #071B16;
  --green2: #0E3B2E;
  --gold: #D4A64A;
  --white: #F5F2EA;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #071B16;
  color: white;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cinzel', serif;
}

.navbar {
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-family: 'Cinzel', serif;
  color: var(--gold) !important;
  font-weight: 700;
}

.nav-link {
  color: white !important;
  margin-left: 0.75rem;
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.gold {
  color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  border: none;
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-weight: 600;
}

.section {
  padding: 100px 0;
}

.card-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 166, 74, 0.2);
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  transition: 0.4s;
}

.card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.625rem 1.5625rem rgba(212, 166, 74, 0.2);
}

.card-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.footer {
  background: #020B08;
  padding: 4rem 0 0.5rem;
}

.section-title {
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 3rem;
  color: var(--gold);
}

.banner {
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
}

.banner img {
  width: 100%;
}

.page-header {
  padding-top: 120px;
  padding-bottom: 60px;
}

@media(max-width:768px) {
  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 2.6rem !important;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}