body {
  font-family: "Open Sans", sans-serif;
  background: #0c0b09;
  color: #fff;
}

a {
  color: #cda45e;
  text-decoration: none;
}

a:hover {
  color: #d9ba85;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Libre Baskerville", serif;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: #cda45e;
  border-bottom-color: #cda45e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #cda45e;
}

.back-to-top i {
  font-size: 28px;
  color: #cda45e;
  line-height: 0;
}

.back-to-top:hover {
  background: #cda45e;
  color: #1a1814;
}

.back-to-top:hover i {
  color: #444444;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #d9ba85;
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cda45e;
}

#topbar .languages ul a {
  color: white;
}

#topbar .languages ul li + li {
  padding-left: 10px;
}

#topbar .languages ul li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

#header {
  background: rgba(12, 11, 9, 0.6);
  border-bottom: 1px solid rgba(12, 11, 9, 0.6);
  transition: all 0.5s;
  z-index: 997;
  /* padding: 5px 0; */
  padding: 0px;
  top: 0px;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #37332a;
}

#header .logo {
  /* font-size: 28px; */
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 80px;
  margin: 0px;
  padding: 0px;
  padding-top:10px;
}

.elegant-btn {
  margin-left: 15px;
  padding: 10px 32px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1.4px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;

  /* Gold border */
  border: 2px solid var(--gold-med);

  /* Button base colors */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.55)
  );
  color: #fff;

  /* Subtle inner glow and depth */
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.06),
    0 4px 14px rgba(0, 0, 0, 0.5),
    0 0 0 0 rgba(205, 164, 94, 0);  /* reserved for hover */

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

/* Hover state: subtle gold glow & lift */
.elegant-btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  color: var(--gold-light);

  background: linear-gradient(
    135deg,
    rgba(205, 164, 94, 0.2),
    rgba(0, 0, 0, 0.7)
  );

  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.55),
    0 0 15px rgba(205, 164, 94, 0.4);  /* elegant warm glow */
}

/* Active tap state (mobile-friendly) */
.elegant-btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.45),
    0 0 8px rgba(205, 164, 94, 0.35);
}

@media (max-width: 992px) {
  .elegant-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

.elegant-btn-nav {
  margin-top: 3px;
  margin-left: 15px;
  padding: 10px 32px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;

  /* Gold border */
  border: 2px solid var(--gold-med);

  /* Button base colors */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.55)
  );
  color: #fff;

  /* Subtle inner glow and depth */
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.06),
    0 4px 14px rgba(0, 0, 0, 0.5),
    0 0 0 0 rgba(205, 164, 94, 0);  /* reserved for hover */

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;

  white-space: nowrap;
}

/* Hover state: subtle gold glow & lift */
.elegant-btn-nav:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  color: var(--gold-light);

  background: linear-gradient(
    135deg,
    rgba(205, 164, 94, 0.2),
    rgba(0, 0, 0, 0.7)
  );

  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.55),
    0 0 15px rgba(205, 164, 94, 0.4);  /* elegant warm glow */
}

/* Active tap state (mobile-friendly) */
.elegant-btn-nav:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.45),
    0 0 8px rgba(205, 164, 94, 0.35);
}

@media (max-width: 992px) {
  .elegant-btn-nav {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #d9ba85;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #444444;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #cda45e;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #cda45e;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #cda45e;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden; /* ensures video doesn’t overflow */
}

/* Background video positioning */
#hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover; /* keeps video covering the area */
}

/* Dark overlay (optional) */
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Ensure text/content is above the video and overlay */
#hero .container {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #cda45e;
}

#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}

/* Buttons follow whatever text-align the parent has */
#hero .btns{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  justify-content: flex-start;   /* default (matches text-lg-start on large) */
}

/* When the parent is centered (Bootstrap .text-center), center the buttons too */
#hero .text-center .btns{
  justify-content: center;
}

/* Optional: when parent is right-aligned */
#hero .text-end .btns{
  justify-content: flex-end;
}

/* Keep button text on one line */
#hero .btns a{
  white-space: nowrap;
}

#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid #cda45e;
}

#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #cda45e;
  color: #fff;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 40px;
  text-align: start;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Libre Baskerville", serif;
  color: #cda45e;
}

.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 110px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

.about-pdf-title {
  background: transparent;
  background-size: cover;
  position: relative;
  padding: 90px 0;
}

.about {
  background: url("../img/about-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.about:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .about-img {
  position: relative;
  transition: .5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #cda45e;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #cda45e;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}

.menu #menu-item {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-item li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Libre Baskerville", serif;
}

.menu #menu-item li:hover, .menu #menu-item li.category-active {
  color: #cda45e;
}

.menu #menu-item li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
}

.menu .menu-img {
  width: 70px;
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
  display: flex;
  align-items: center;
  position: relative;
}

/* Dish name (left) */
.menu .menu-content a {
  order: 1;
  padding-right: 10px;
  font-weight: 700;
  color: #fff;
  transition: 0.3s;
  background: #1a1814;     /* optional – keeps line from running under text */
  position: relative;
  z-index: 2;
}

.menu .menu-content a:hover {
  color: #cda45e;
}

/* Price (right) */
.menu .menu-content span {
  order: 3;
  padding-left: 10px;
  font-weight: 600;
  color: #cda45e;
  background: #1a1814;     /* optional */
  position: relative;
  z-index: 2;
}

/* Dotted leader BETWEEN name and price */
.menu .menu-content::before {
  content: "";
  order: 2;
  flex-grow: 1;
  height: 1px;
  border-bottom: 1px dotted #bab3a6; /* change to #cda45e for gold */
  margin: 0 4px;
}


.menu .menu-content a:hover {
  color: #cda45e;
}

.menu .menu-ingredients {
  margin-left: 85px;
  font-style: italic;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid #cda45e;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #cda45e;
}

.specials .nav-link.active {
  color: #1a1814;
  background: #cda45e;
  border-color: #cda45e;
}

.specials .nav-link:hover {
  border-color: #cda45e;
}

.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.specials .details p {
  color: #aaaaaa;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}

#header {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Container alignment tweaks (optional) */
#header .container-xl {
  align-items: center;
}

/* Make sure logo doesn't stretch things oddly */
#header .logo img {
  max-height: 40px;
}

/* Base navbar layout */
#navbar {
  padding: 0;
}

#navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

#navbar > ul > li {
  position: relative;
  white-space: nowrap;
}


#navbar > ul > li > a {
  display: flex;
  align-items: center;
  font-size: 0.85rem;           /* smaller, more refined */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 16px;
  color: #ffffff;
  position: relative;
  transition: color 0.2s ease-out, background 0.2s ease-out;
}

/* Keep your original golden hover color */
#navbar > ul > li:hover > a,
#navbar > ul > li > a:hover,
#navbar > ul > li > a:focus {
  color: #cda45e;
}

/* Optional underline animation under parent nav items */
#navbar > ul > li > a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cda45e, #f7e1a0);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease-out;
}

#navbar > ul > li:hover > a::after,
#navbar > ul > li > a.active::after {
  transform: scaleX(1);
}

/* Chevron icon on dropdown parents */
#navbar .dropdown > a i {
  font-size: 0.75rem;
  margin-left: 6px;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  opacity: 0.8;
}

/* Rotate chevron on hover */
#navbar .dropdown:hover > a i {
  transform: rotate(180deg);
  opacity: 1;
}


#navbar .dropdown {
  position: relative;
}

/* The dropdown menu container */
#navbar .dropdown ul {
  position: absolute;
  left: 0;
  top: 100%;  /* no gap – sits flush under parent */
  z-index: 9999;

  margin: 0;
  padding: 0.55rem 0;
  min-width: 210px;

  background: rgba(15, 15, 15, 0.98);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);

  /* Modern open animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease-out,
    transform 0.22s ease-out,
    visibility 0.22s ease-out;
}

/* Show dropdown on hover (desktop) */
#navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


#navbar .dropdown ul li {
  position: relative;
}

/* Left-aligned dropdown links */
#navbar .dropdown ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* left aligned */
  gap: 0.5rem;

  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  color: #f5f5f5;
  white-space: nowrap;
  text-align: left;

  transition:
    background 0.2s ease-out,
    color 0.2s ease-out,
    padding-left 0.2s ease-out;
}

/* Subtle separator lines between items */
#navbar .dropdown ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Decorative golden bullet on hover */
#navbar .dropdown ul li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #cda45e;
  margin-right: 0;
  opacity: 0;
  transform: scale(0.2);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

/* Hover effect inside dropdown – KEEP golden text color */
#navbar .dropdown ul li a:hover,
#navbar .dropdown ul li a:focus {
  color: #cda45e;  /* same gold as parent nav */
  background: rgba(205, 164, 94, 0.12);
  padding-left: 1.6rem;
}

#navbar .dropdown ul li a:hover::before,
#navbar .dropdown ul li a:focus::before {
  opacity: 1;
  transform: scale(1);
}


.mobile-nav-toggle {
  font-size: 24px;
  cursor: pointer;
  line-height: 0;
  transition: color 0.2s ease-out;
}

/* Header: fixed glassy bar */
#header {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 9998;
}

#header .logo img {
  max-height: 80px;
}

/* Base navbar */
#navbar {
  padding: 0;
}

#navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

#navbar > ul > li {
  position: relative;
  white-space: nowrap;
}


#navbar > ul > li > a {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 16px;
  color: #ffffff;
  position: relative;
  transition: color 0.2s ease-out, background 0.2s ease-out;
}

/* Keep your golden hover color */
#navbar > ul > li:hover > a,
#navbar > ul > li > a:hover,
#navbar > ul > li > a:focus {
  color: #cda45e;
}

/* Optional golden underline animation */
#navbar > ul > li > a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cda45e, #f7e1a0);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease-out;
}

#navbar > ul > li:hover > a::after,
#navbar > ul > li > a.active::after {
  transform: scaleX(1);
}

/* Chevron on dropdown parents */
#navbar .dropdown > a i {
  font-size: 0.75rem;
  margin-left: 6px;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  opacity: 0.8;
}

#navbar .dropdown:hover > a i {
  transform: rotate(180deg);
  opacity: 1;
}


#navbar .dropdown {
  position: relative;
}

/* Dropdown panel */
#navbar .dropdown ul {
  position: absolute;
  left: 0;
  top: 100%; /* no vertical gap */
  z-index: 9999;

  margin: 0;
  padding: 0.55rem 0;
  min-width: 210px;

  background: rgba(15, 15, 15, 0.98);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease-out,
    transform 0.22s ease-out,
    visibility 0.22s ease-out;
  display: block;
}

/* Show on hover (desktop) */
#navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items – left aligned */
#navbar .dropdown ul li {
  position: relative;
}

#navbar .dropdown ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;

  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  color: #f5f5f5;
  white-space: nowrap;
  text-align: left;

  transition:
    background 0.2s ease-out,
    color 0.2s ease-out,
    padding-left 0.2s ease-out;
}

/* Subtle dividers */
#navbar .dropdown ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Golden bullet on hover */
#navbar .dropdown ul li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #cda45e;
  margin-right: 0;
  opacity: 0;
  transform: scale(0.2);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

/* Hover state inside dropdown – still gold */
#navbar .dropdown ul li a:hover,
#navbar .dropdown ul li a:focus {
  color: #cda45e;
  background: rgba(205, 164, 94, 0.01);
  padding-left: 1.6rem;
}

#navbar .dropdown ul li a:hover::before,
#navbar .dropdown ul li a:focus::before {
  opacity: 1;
  transform: scale(1);
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none; /* shown only on mobile via media query */
  line-height: 0;
  transition: color 0.2s ease-out;
}

.mobile-nav-toggle:hover {
  color: #cda45e;
}

/* Desktop (lg+) */
@media (min-width: 992px) {
  #navbar {
    display: block;
  }

  .mobile-nav-toggle {
    display: none;
  }
}

/* Mobile / tablet */
@media (max-width: 991.98px) {
  /* Show burger icon */
  .mobile-nav-toggle {
    display: block;
    margin-left: auto;        /* push it to the right in the flex row */
  }

  /* Header background solid on mobile */
  #header {
    background: #000;
    backdrop-filter: none;
  }

  /* Hide menu list by default on mobile */
  #navbar ul {
    display: none;
  }

  /* When JS adds .navbar-mobile to #navbar, show overlay menu */
  #navbar.navbar-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    inset: 60px 0 0 0;             /* full width, below header */
    padding: 20px 20px 40px;
    background: rgba(0, 0, 0, 0.96);
    overflow-y: auto;
    z-index: 9999;
  }

  #navbar > ul > li {
    width: 100%;
  }

  #navbar > ul > li > a {
    width: 100%;
    padding: 12px 0;
    font-size: 0.9rem;
  }

  #navbar > ul > li > a::after {
    left: 0;
    right: 0;
    bottom: 0;
  }

  /* Mobile dropdowns: inline, not floating */
  #navbar.navbar-mobile .dropdown ul {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0 0 0 16px;
    margin: 0;
    min-width: 0;
    display: none; /* hidden until .dropdown-active is added */
  }

  #navbar.navbar-mobile .dropdown ul li a {
    border-bottom: 0;
    padding: 6px 0;
    background: transparent;
    padding-left: 0;
  }

  #navbar.navbar-mobile .dropdown ul li a::before {
    display: none;
  }

  /* When template JS adds .dropdown-active to the submenu <ul>, show it */
  #navbar.navbar-mobile .dropdown ul.dropdown-active {
    display: block;
  }
}

.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #fff;
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.center{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #cda45e;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #cda45e;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

.book-a-table .php-email-form {
  width: 100%;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br + br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input, .book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.book-a-table .php-email-form input::-webkit-input-placeholder, .book-a-table .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::-moz-placeholder, .book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::placeholder, .book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input:focus, .book-a-table .php-email-form textarea:focus {
  border-color: #cda45e;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

#static-review-widget {
    padding: 20px;
    background: rgb(167, 167, 167);
    border-radius: 5%;
}

.reviews .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.reviews .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.reviews .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #cda45e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}

.contact .info > div + div {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #111111;
  border-color: #625b4b;
  color: white;
}

.contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
  color: #a49b89;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #cda45e;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.social-links-images img {
  width: auto;      /* adjust as you like */
  height: 38px;
  display: inline-block;
}

.social-links-images a {
  margin: 0 8px;    /* spacing between icons */
  display: inline-block;
}

.social-links-images a img {
  transition: 0.3s;
}

.social-links-images a:hover img {
  opacity: 0.7;
}

/* Developer link */
.developer-link {
  text-decoration: none;
  color: #bbb;
  padding: 10px 10px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  transition: 0.25s ease;
}

.developer-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

.developer-image {
  height: 46px;
  width: auto;
}

.h-center{
  margin: 0 auto;
}

.footer-logo{
  width: 240px;
  display: block;
  margin: 0 auto;
}

.footer-bottom-row {
  margin: 0 auto;
  padding: 5px 5px;
}

.pano-wrap{
  position: relative;
}

/*Picture Perfect Malta iFrame START*/
.p-p-m-iframe {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 600px;
  border: 0;
  pointer-events: none;
}

.pano-overlay{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.15);
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.footer-contact {
  background: #111;               /* dark, elegant background */
  color: #f5f5f5;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
              border-color 0.2s ease, background 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}

.contact-icon i {
  font-size: 24px;
}

.contact-title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-text {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-subtext {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.4;
}

.contact-phone-main {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Small screens: loosen spacing a bit */
@media (max-width: 575.98px) {
  .contact-card {
    text-align: center;
  }
  .contact-icon {
    margin-left: 0;
  }
}

/* GOLD GRADIENT PALETTE */
:root {
  --gold-light: #f9e7b9;
  --gold-med:   #d2a451;
  --gold-dark:  #936c2c;
  --gold-glow:  rgba(255, 209, 98, 0.35);
}

/* ICON CIRCLE BACKGROUND */
.gold-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #ffffff20, #00000040);
  border: 1px solid var(--gold-med);
  box-shadow: 
    0 4px 10px rgba(0,0,0,0.5),
    inset 0 1px 4px rgba(255,255,255,0.15),
    inset 0 -2px 4px rgba(0,0,0,0.25);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

/* GOLD ICON ITSELF */
.gold-icon i {
  font-size: 26px;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-dark),
    var(--gold-med)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HOVER EFFECT (luxury glow) */
.gold-icon:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  box-shadow: 
    0 6px 18px rgba(0,0,0,0.55),
    0 0 20px var(--gold-glow),
    inset 0 1px 4px rgba(255,255,255,0.22);
}

.gold-icon:hover i {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-light),
    var(--gold-med)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*Hide underline when hovering icon link - x-fb-insta*/
.footer-contact a,
.footer-contact a:visited,
.footer-contact a:hover,
.footer-contact a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Mini Footer Card (below icons) */
.footer-mini-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 24px 20px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-mini-card:hover {
  /* transform: translateY(-3px); */
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

/* Social icon styles – smaller, elegant, gold-ish on hover */
.social-links-mini a {
  font-size: 1.6rem;
  margin: 0 0.4rem;
  color: #f5f5f5;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-links-mini a:hover {
  color: var(--gold-med);
  transform: translateY(-3px);
}

/* Partner logos */
.social-links-images-mini img {
  height: 40px;
  opacity: 0.75;
  transition: opacity 0.25s, transform 0.25s;
}

.social-links-images-mini img:hover {
  opacity: 1;
  transform: scale(1.08);
}

.developer-text {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}


.awards-item {
  margin-bottom: 30px;
}

/* Desktop / tablet – centered, wrapped buttons */
#awards-filters {
  display: flex;
  gap: 10px;              /* spacing between buttons */
  flex-wrap: wrap;        /* allows wrapping on wider screens */
  justify-content: center;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  max-width: 900px;       /* prevents stretching edge-to-edge */
}

#awards-filters li {
  /* let gap handle horizontal spacing – no big left margin */
  margin: 0;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 14px;        /* smaller */
  display: inline-flex;   /* keep centered text */
  align-items: center;
  justify-content: center;
  letter-spacing: 1.4px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;

  border: 2px solid var(--gold-med);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.55)
  );
  color: #fff;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.06),
    0 4px 14px rgba(0, 0, 0, 0.5),
    0 0 0 0 rgba(205, 164, 94, 0);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

#awards-filters li:hover {
  transform: translateY(-1px);
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: linear-gradient(
    135deg,
    rgba(205, 164, 94, 0.2),
    rgba(0, 0, 0, 0.7)
  );
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.55),
    0 0 15px rgba(205, 164, 94, 0.4);
}

#awards-filters li:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.45),
    0 0 8px rgba(205, 164, 94, 0.35);
}

/* Mobile – turn into a horizontal scroll row */
@media (max-width: 768px) {
  #awards-filters {
    flex-wrap: nowrap;          /* single row */
    overflow-x: auto;           /* horizontal scroll */
    justify-content: flex-start;
    padding-bottom: 8px;        /* space so shadow isn't cut */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  }

  #awards-filters li {
    flex: 0 0 auto;             /* don't stretch; keep natural width */
    margin-right: 10px;         /* small separation between chips */
    padding: 12px 20px;          /* slightly tighter on mobile */
    font-size: 14px;
  }
}

#awards-filters-wrapper {
  position: relative;
  overflow: hidden;
}

#awards-filters-wrapper::before,
#awards-filters-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

#awards-filters-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
}

#awards-filters-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.6), transparent);
}

#awards-filters {
  scrollbar-width: none;
}
#awards-filters::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  #awards-filters-wrapper::before,
  #awards-filters-wrapper::after {
    display: none; /* only mobile */
  }
}
