/* Global */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  background: #0a0a0a; /* Unified Dark Background */
  color: #e0e0e0;
  padding: 16px 24px 40px;
}



/* ============================= */
/*            NAVBAR             */
/* ============================= */

.navbar {
  width: 100%;
  height: 70px;
  background: #000;
  border-bottom: 2px solid #FFD700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

.nav-left { display: flex; align-items: center; gap: 40px; }

.nav-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 1px;
}

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

.nav-links li a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 1.1rem;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}



/* ============================= */
/*             HERO              */
/* ============================= */

.hero {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #FFD700, #DAA520); /* Gradient Gold */
  border-radius: 20px;
  padding: 40px;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
  border: 1px solid #B8860B;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-content p {
  color: #111;
  font-weight: 600;
  font-size: 1.2rem;
}



/* ============================= */
/*       SLIDING OPTIONS         */
/* ============================= */

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 80px;
  margin-bottom: 20px;
}

.slide-btn {
  font-size: 40px;
  background: none;
  border: none;
  color: #FFD700;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
  user-select: none;
}

.slide-btn:hover { opacity: 1; transform: scale(1.2); color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }

.options-slider {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 20px;
  scrollbar-width: none;
  width: 100%;
}

.options-slider::-webkit-scrollbar { display: none; }

.options-track {
  display: inline-flex;
  gap: 10px;
}

/* NEW OPTION BUTTON WITH BG IMAGE */
.option {
  height: 100px;
  width: 200px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 215, 0, 0.3);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: bold;
  color: #e0e0e0;
  text-decoration: none;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  cursor: pointer;
  transition: 0.3s ease;
  background-color: #111;
}

.option:hover {
  border-color: #FFD700;
  color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}



/* ============================= */
/*             CARDS             */
/* ============================= */

.cards-row {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 0 40px;
}

.card {
  border-radius: 20px;
  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;

  border: 2px solid #FFD700;
  color: #FFD700;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  transition: 0.25s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(255, 215, 0, 0.5);
}