/* Global Font Classes */
.font-poppins {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 36px;
}

.banner-img {
    background-image: url(/Portals/0/Images/WebsiteBanner_April2025_NoText.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

/* Section 2) Global Styles (Internal Heros Included)
  2a) Buttons */
a.btn-white,
a.btn-white:link,
a.btn-white:visited {
  display: inline-block;
  font-family: 'Cinzel';
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
  color: #15222b !important;
  padding: 12px 52px;
  margin: 4px 0;
  background-color: #fff;
  border: 2px solid #fff;
  transition: all 450ms;
}

a.btn-white:hover,
a.btn-white:link:hover,
a.btn-white:visited:hover {
  background: transparent;
  color: #fff !important;
}

a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited {
  display: inline-block;
  font-family: 'Cinzel';
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
  color: #fff !important;
  padding: 12px 52px;
  margin: 4px 0;
  background-color: #15222b;
  border: 2px solid #15222b;
  transition: all 450ms;
}

a.btn-primary:hover,
a.btn-primary:link:hover,
a.btn-primary:visited:hover {
  background: transparent;
  color: #15222b !important;
}

/* Diamante Page specific code */

.intro-diamante {
  font-family: "Poppins";
  font-size: clamp(28px, 1.6111rem + 0.7407vw, 40px);
  font-weight: 200;
  text-transform: uppercase;
  line-height: 1;
}

.diamante-header {
  font-family: "Cinzel";
  font-size: clamp(50px, 2.7199rem + 2.1605vw, 85px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

.accordion-container-diamante {
  color: var(--light);
  padding: 20px;
  transition: 150ms all;
}

.accordion-container-diamante:hover {
  cursor: pointer;
  transition: 150ms all;
}

.accordion-container-diamante:last-of-type {
  border-bottom: none;
}

.accordion-diamante-panel {
  max-height: 0px;
  overflow: hidden;
  transition: 500ms all;
  display: block !important;
}

.accordion-diamante-panel.open {
  transition: 500ms all;
  height: auto;
}

/* Location links on the location page */
.location-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 20px !important;
}

.location-link:hover {
  color: #343434;
}

@media (max-width: 768px) {
  h5.subtitle {
    font-size: 1rem;
  }
}

/* Collections Mega-menu styling */
.collections-menu {
  /* Variables for mega menu */
  --collections-menu-font-color: #333333;
  /* Standard styling */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* This is shorthand for row-gap, column-gap */
  gap: 1.5rem 1rem;
  padding: 0.3rem;
}

/* General Styles */
.collections-menu h3 {
  font-family: 'Cinzel', serif;
  margin: 0 0 0.25em;
  font-size: 1.25rem;
  font-weight: 400;
  border-bottom: 2px rgba(0, 0, 0, 0);
  color: var(--collections-menu-font-color);
}

.collections-menu a {
  margin: 0;
  position: relative;
}

.dng-megamenu .dnngo_custommenu .collections-menu ul {
  margin-left: 0.5em;
  padding-bottom: 0;
}

.collections-menu a::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0px;
  height: 1px;
  background: rgba(0, 0, 0, 0);
  transition: 150ms all linear;
}

.collections-menu a:hover::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--collections-menu-font-color);
  transition: 150ms all linear;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}

.link-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.link-grid>a {
  white-space: nowrap;
}

.finish-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px 35px;
    height: 170px;
    margin: 20px;
    border: 1px solid #e7e7e7;
    border-radius: clamp(40px, 1.6666666666667vw + 28px, 60px);
}

.finish-title {
    font-family: var(--fontFamily-Cinzel);
    font-size: larger;
    text-align: center;
}

.finish-content {
    font-size: 1.2rem;
    text-align: center;
}

.mobile-banner {
    height: 50px !important;
    transition: all 150ms ease;
}

.mobile-banner p { 
    font-size: clamp(10px, 2vw, 16px);
    color: #424242;
}

/* html:not([data-scroll='0']) .mobile-banner {
    opacity: 0;
    height: 0 !important;
    visibility: hidden;
    transition: all 150ms ease;
} */

@media screen and (max-width: 991px) {
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .link-grid {
    grid-template-columns: 1fr;
  }

  .link-grid>a {
    white-space: normal;
  }

}

.button-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pay-online {
    font-size: 12px;
}
























