body {
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  background: #efeeea;
}
.amber-brown {
  background-color: #bc822c;
}
.text-amber-brown {
  color: #bc822c;
}

/* Desktop Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  padding: 1.5rem 3.5rem;
  z-index: 50;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 997;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Slide Animation */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  /* max-width: 350px; */
  height: 100vh;
  background: white;
  z-index: 998;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Close Button */
.mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10;
}

/* Stagger Animation for Mobile Links */
.mobile-menu-item {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .mobile-menu-item:nth-child(1) {
  transition-delay: 0.05s;
}
.mobile-menu.active .mobile-menu-item:nth-child(2) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-menu-item:nth-child(3) {
  transition-delay: 0.15s;
}
.mobile-menu.active .mobile-menu-item:nth-child(4) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-menu-item:nth-child(5) {
  transition-delay: 0.25s;
}

/* Mobile Submenu Animation */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-submenu.active {
  max-height: none;
}

.mobile-submenu-item {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-submenu.active .mobile-submenu-item {
  opacity: 1;
  transform: translateX(0);
}

.active-link {
  border-bottom: 3px solid #bc822c;
  padding-bottom: 1.95rem;
}

/* Hamburger Animation */
.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  top: 8px;
}
.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* Responsive breakpoint at 840px */
@media (min-width: 841px) {
  .mobile-menu-btn {
    display: none !important;
  }
  .desktop-menu {
    display: flex !important;
  }
}

@media (max-width: 840px) {
  .desktop-menu {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block !important;
  }
}

/* Chevron rotation for dropdowns */
.chevron {
  transition: transform 0.3s ease;
}

.chevron.rotate {
  transform: rotate(180deg);
}

.scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.card-image {
  max-height: 300px;
  object-fit: cover;
}
.scroll-container {
  scroll-behavior: smooth;
}

.pagination-container {
  display: none;
}
@media (max-width: 639px) {
  .pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  .pagination-dot {
    width: 10px;
    height: 10px;
    background-color: #9b8d7a; /* Matches button border color */
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  .pagination-dot.active {
    background-color: #231a18; /* Matches heading color */
    transform: scale(1.3);
  }
}
.scroll-container-unique {
  -ms-overflow-style: none; /* Internet Explorer, Edge */
  scrollbar-width: none; /* Firefox */
}
.scroll-container-unique::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.scroll-container-unique {
  scroll-behavior: smooth; /* Smooth scrolling for better UX */
}
.card-video-container-unique {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.play-button-unique {
  position: absolute;
  bottom: 0;
  left: 50px;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 9999px;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.relative:hover .play-button-unique {
  opacity: 1;
}
@media (max-width: 1024px) {
  .dropdown-menu {
    /* position: static; */
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 1rem;
  }
}
@media (max-width: 640px) {
  .dropdown-menu {
    padding: 0.5rem;
  }
  .grid-cols-6,
  .grid-cols-4 {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* Ticker styles */
.ticker-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ticker-content {
  display: flex;
  animation: scroll 60s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 4rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .ticker-container:hover .ticker-content {
    animation-play-state: paused;
  }
}

/* Entertainment section */
.entertainment-section {
  padding: 75px 160px 0 160px;
}

.entertainment-section .container {
  max-width: 100%;
  box-sizing: border-box;
  padding: 3rem;
  padding-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .entertainment-section {
    padding: 0 40px;
  }

  .entertainment-section .main-banner {
    padding: 0 40px;
  }

  .entertainment-section .container {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .entertainment-section {
    padding: 0 24px;
  }

  .entertainment-section .main-banner {
    padding: 0 24px;
  }

  .entertainment-section .text-5xl {
    font-size: 2rem;
  }

  .entertainment-section .text-xl {
    font-size: 1.125rem;
  }

  .entertainment-section .text-lg {
    font-size: 1rem;
  }

  .entertainment-section .grid-cols-1.md\:grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .entertainment-section {
    padding: 0 16px;
  }

  .entertainment-section .main-banner {
    padding: 0 16px;
  }

  .entertainment-section .text-5xl {
    font-size: 1.75rem;
  }

  .entertainment-section .text-xl {
    font-size: 1rem;
  }

  .entertainment-section .text-lg {
    font-size: 0.875rem;
  }

  .entertainment-section .flex-col-md {
    flex-direction: column;
  }

  .entertainment-section .md\:w-1\/2 {
    width: 100%;
  }

  .entertainment-section .md\:text-left {
    text-align: center;
  }

  .entertainment-section .space-y-6 > div {
    margin-bottom: 1.5rem;
  }
}

.banner {
  width: -webkit-fill-available;
  /* bottom: 0; */
}
.font-dmserif {
  font-family: "DM Serif Text";
}

/* Hide scrollbar for mobile pagination scroll */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.overflow-x-auto::-webkit-scrollbar {
  display: none;
}

.playlist-item.active {
  background-color: #fee2e2;
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

#tabs-container::-webkit-scrollbar {
  display: none;
}

#tabs-container {
  scroll-behavior: smooth;
}

#tab-next-button {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
}

@media (max-width: 1024px) {
  #tab-next-button {
    top: 43%;
  }
}

/* form */
.custom-placeholder::placeholder {
  color: #9d5b50;
}

.custom-select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239d5b50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:hover {
  background-color: #e7dfda;
  color: #7a1c0e;
}

.custom-select::-ms-expand {
  display: none;
}

input[type="checkbox"] {
  accent-color: #7a1c0e;
  width: 18px;
  height: 18px;
}

.checkbox-container:hover {
  background-color: rgba(157, 91, 80, 0.05);
}

.checkbox-container:has(input:checked) {
  background-color: rgba(157, 91, 80, 0.1);
}

/* Custom styles for date and time inputs */
.custom-date::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button {
  display: none;
  -webkit-appearance: none;
}

.remove-btn {
  cursor: pointer;
  transition: background-color 0.2s;
}

.remove-btn:hover {
  background-color: rgba(157, 91, 80, 0.2);
}

.overlay-text {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #9d5b50;
  pointer-events: none;
  transition: opacity 0.2s ease;
  font-size: 0.75rem;
  z-index: 10;
}

@media (min-width: 640px) {
  .overlay-text {
    font-size: 0.875rem;
  }
}

.overlay-text.hidden-overlay {
  opacity: 0;
}

.hide-dots {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: transparent !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.time-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

input[type="time"].hide-dots::-webkit-time-picker,
input[type="time"].hide-dots::-moz-time-picker {
  opacity: 0;
}

.act-container {
  padding: 1rem 1rem 0 1rem;
  background: #7a1c0e;
}

.card {
  border: 1px solid #c9c0b1;
}


  /* =========================
     Cookie Bar — Refined Theme Styling
     ========================= */
  #cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #D9D5CD; /* slightly darker beige for contrast */
    color: #231A18;
    font-family: "DM Serif Text", serif;
    font-weight: 500;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
  }

  #cookie-bar p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  #cookie-bar a.cb-enable {
    background-color: #7A1C0E;
    color: #fff;
    padding: 0.3rem 1.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
  }
  #cookie-bar a.cb-enable:hover {
    background-color: #5c150a;
    transform: translateY(-1px);
  }

  #cookie-bar a.cb-policy {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    padding: 0.3rem 0.75rem;
    transition: all 0.25s ease-in-out;
  }
  #cookie-bar a.cb-policy:hover {
    color: white;
    background-color: darkblue;
  }

  @media (min-width: 640px) {
    #cookie-bar p {
      flex-direction: row;
      gap: 1rem;
      text-align: left;
    }
  }