/* assets/css/styles.css */
:root{
  --navy: #071a39;
  --gold: #b98b2c;
}
body {font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;}
.bg-navy {background-color: #00233f;}
.navbar-brand .brand-text {color:#f5dca3;font-weight:700;}
.hero{background:url('../images/Celebrity/Equinox.jpg') center/cover no-repeat;min-height:420px;position:relative;}
.hero-overlay{width:100%;background:rgba(7,26,57,0.65);min-height:420px;}
.cruise-scroll-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.navbar-gold {
    background-color: #c8a96b;
}

.navbar-gold .nav-link {
    color: #111 !important;
    font-weight: 600;
}

.navbar-gold .nav-link:hover,
.navbar-gold .nav-link.active {
    color: #fff !important;
}

.btn-gold {
    background: #c8a96b;
    border: 1px solid #c8a96b;
    color: #111;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    background: #b69556;
    border-color: #b69556;
    color: #111;
}

.cruise-scroll {
  overflow-x: auto;
  display: flex;
  gap: 1rem;
  padding-bottom: 10px;
}

.cruise-card {
  min-width: 360px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(2, 10, 26, 0.35);
}
/* --- Cruise Card Shimmer Effect --- */
.cruise-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Create the shimmer overlay */
.cruise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 215, 0, 0) 0%,
    rgba(255, 215, 0, 0.5) 50%,
    rgba(255, 215, 0, 0) 100%
  );
  transform: skewX(-25deg);
  opacity: 0;
}

/* Hover effect: shimmer + slight lift */
.cruise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.cruise-card:hover::before {
  animation: shimmer 1s forwards;
  opacity: 1;
}

/* Keyframes for shimmer animation */
@keyframes shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.img-thumb{width:110px;height:80px;object-fit:cover;border-radius:12px;}
.price{font-size:1.4rem;font-weight:700;margin-top:6px;color:#071a39;}
.deal-card{background:linear-gradient(180deg,#0c2a44 0%,#071a39 100%);color:#fff;}
.badge-top{background:rgba(3,21,41,0.85);display:inline-block;padding:6px 10px;border-radius:10px;margin-bottom:8px;font-size:.85rem;}
.cruise-scroller {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #f8f9fa;
}
.cruise-scroller::-webkit-scrollbar {
  height: 8px;
}
.cruise-scroller::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}
.cruise-scroller::-webkit-scrollbar-track {
  background: #f8f9fa;
}
.clause-indent {
  margin-left: 1.5rem;
}

.clause-indent p {
  padding-left: 2rem;
  text-indent: -2rem;
  margin-bottom: 0.75rem;
}
/* ==================================================
   OFFERS DASHBOARD (PUBLIC)
================================================== */

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.offer-link {
  color: inherit;
  text-decoration: none;
}

.offer-image {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.offer-price {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.offer-body {
  padding: 18px;
}

.offer-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.offer-meta {
  font-size: 0.9rem;
  color: #666;
}

/* ==================================================
   PAGINATION
================================================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.page-link {
  padding: 8px 14px;
  background: #0a1d44;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
}

.page-status {
  font-weight: 500;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1200px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}


/* ==================================================
   OFFER LIST TABLE (offers_dashboard)
================================================== */

.offer-list-table thead tr {
  background: #0a1d44;
  color: #fff;
}

.offer-list-table thead th {
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  padding: 12px 14px;
}

.offer-list-table tbody td {
  padding: 10px 14px;
  vertical-align: middle;
  font-size: 0.95rem;
}

.offer-list-thumb-cell { width: 90px; }

.offer-list-thumb {
  width: 80px;
  height: 55px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

footer{background:#071026;}
