/* Overall Font */
@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham-Bold.woff2') format('woff2'),
       url('assets/fonts/Gotham-Bold.woff') format('woff'),
       url('assets/fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: 'Gotham', sans-serif;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #F61B79;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

/* Navbar Styles */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
}
.navbar-brand {
  color: #F61B79 !important;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.navbar-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
}
.navbar-nav .nav-link {
  color: #340441 !important;
  font-size: 16px;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease-in-out;
}
.navbar-nav .nav-link:hover {
  color: #F61B79 !important;
}
/* Specific style for navbar toggler icon */
.navbar-toggler-icon {
  padding: 0 !important;
}
@media (max-width: 768px) {
  .navbar-logo {
    height: 30px;
  }
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0.5rem 0.75rem;
  }
  .navbar-brand {
    font-size: 18px;
  }
}

/* Button Display */
.btn-primary {
  background-color: #ffffff !important;
  outline-style: solid;
  outline-color: #622081;
  color: #622081 !important;
  border: none !important;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #F61B79 !important;
  outline-style: solid;
  outline-color: #F61B79;
  color: #ffffff !important;
  border: none !important;
}

/* Base card */
.special-item {
  border: 5px solid #622081; /* default purple border */
  padding: -1px;
  border-radius: 13px;
  background: #fff;
  height: 100%;
  text-align: center;
}

/* Active special → Pink border */
.special-active {
  border-color: #F61B79 !important;
}

/* Expired special → Purple border (already default, but ensures consistency) */
.special-expired {
  border-color: #622081 !important;
}


.special-item img {
  max-width: 100%;
  height: auto;
}

/* Wrap for countdown + expiry */
.special-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

/* Countdown active */
.countdown-active {
  font-size: 1.6rem;
  font-weight: bold;
  /* color: #28a745; */
  color: #F61B79;
  margin-bottom: 5px;
}

/* Expired text */
.countdown-expired {
  font-size: 1.4rem;
  font-weight: bold;
  /* color: #dc3545; */
  color: #622081;
  margin-bottom: 5px;
}

/* Expiry text */
.expiry-text {
  /* font-size: 1rem; */
  font-size: 15px;
  text-decoration: underline;
  color: #000000; /* grey */
}

