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

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background: #0f0f0f;
  /* Unified Dark Background */
  color: #e0e0e0;
  padding: 16px 24px 40px;
}



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

.navbar {
  width: 100%;
  height: 80px;
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  /* Centered like main nav */
  align-items: center;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

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

.nav-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

.nav-logo span {
  color: #E34935;
}

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

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

.nav-links li a:hover,
.nav-links li a.active {
  color: #E34935;
}



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

.hero {
  width: 100%;
  height: 350px;
  background: radial-gradient(circle at center, #2a1a35 0%, #0f0f0f 70%);
  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(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-content p {
  color: #ccc;
  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: #E34935;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
  user-select: none;
}

.slide-btn:hover {
  opacity: 1;
  transform: scale(1.2);
  color: #E34935;
}

.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: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  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: #1a1a1a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.option:hover {
  border-color: #E34935;
  color: #E34935;
  transform: translateY(-2px);
}



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

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

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

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

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

  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;

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

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: 0.3s;
}

.card:hover::after {
  background: rgba(227, 73, 53, 0.2);
  /* Red tint */
}

.card:hover {
  transform: translateY(-5px);
  border-color: #E34935;
}