:root {
  --font-playfair: "Playfair Display", serif;
  --font-oswald: "Oswald", serif;
  --black: #0d0d0d;
  --primary-gold: #d2b48c;
  --primary-gold-hover: #b58647;
  --dark-main: #050505;
  --dark-2: #d8d8d8;
  --dark-4: #7a7a7a;
  --dark-5: #474747;
  --light-2: #fafafa;
  --light-gold: #f9f4ef;
  --orange: #fd853a;
  --grey: #666666;
  --grey-2: #cccccc;
  --gold-3: #f3ebe1;
}

.fancybox__container {
  width: 80%;
  margin: auto;
  height: 90%;
  .fancybox__carousel {
    background: var(--light-gold);
  }
  .fancybox__footer {
    background: var(--light-gold);
  }
  &[aria-hidden="true"] .fancybox__carousel {
    background: transparent; /* Hide background during close animation */
  }
  .fancybox__toolbar__column {
    .f-button {
      background-color: transparent;
      svg {
        filter: none;
        stroke: var(--dark-4);
      }
      &:hover,
      &:active:not([disabled]) {
        background-color: transparent;
      }
    }
  }
  .fancybox__nav {
    --f-button-next-pos: 5rem;
    --f-button-prev-pos: 5rem;
    .f-button {
      background-color: var(--primary-gold);
      border-radius: 12px;
      svg {
        filter: none;
        stroke: #fff;
      }
    }
  }
  .f-carousel__nav .f-button:disabled,
  .fancybox__nav .f-button:disabled {
    pointer-events: none;
    display: none;
  }
}

.font-playfair {
  font-family: var(--font-playfair);
}

body {
  font-family: var(--font-oswald);
}

p {
  color: var(--dark-5);
  &:last-child {
    margin-bottom: 0;
  }
}

a {
  color: var(--primary-gold);
  text-decoration: none;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
}
.primary-gold {
  color: var(--primary-gold);
}
.btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1.25rem;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.btn-gold {
  background-color: var(--primary-gold);
  color: #fff;
}
.btn-gold:hover,
.btn-gold:active {
  color: #fff !important;
  background-color: var(--primary-gold-hover) !important;
}

.pagedesc{
  font-weight: 200 !important;
  padding: 0 67px !important;
}

.desktop_menu {
  nav {
    ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      li {
        a {
          font-size: 1.5rem;
          color: #000;
          transition: all 0.3s;
          &:hover {
            color: var(--primary-gold);
            text-decoration: underline;
            transition: all 0.3s;
          }
        }
        a.active{
          color: var(--primary-gold);
          text-decoration: underline;
          transition: all 0.3s;
          
        }
      }
    }
  }
}

.alert-success{
  position: fixed;
  right: 50px;
  top: 50px;
    button{
    border: 0px;
    margin-left: 10px;
    background: white;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    /* span{

    } */
  }
}

.alert-danger{
  position: fixed !important;
  right: 50px !important;
  top: 50px;
    button{
      position: absolute !important;
    border: 0px;
    padding: 0% !important;
    top: auto !important;
    right: auto !important;
    margin-left: 10px;
    background: white !important;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    opacity: 1 !important;
    /* span{

    } */
  }
}

.top_header {
  padding: 40px 0;
}
.logo img {
  height: 50px;
}
.banner_img {
  width: 100%;
  aspect-ratio: 36 / 11;
  object-fit: cover;
}

.banner {
  h4 {
    color: var(--dark-4);
  }
}

.menubtn {
  background-color: transparent;
  border: none;
  font-size: 2rem;
}

.mobile_sidebar_menu {
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    li {
      a {
        display: block;
        padding: 8px 18px;
        color: #000;
        &:hover {
          background-color: #eee;
        }
      }
    }
  }
}

.btn-close:focus {
  box-shadow: none;
}

.bot_footer {
  padding: 20px 0;
  background-color: var(--black);
}

.footer {
  background-color: var(--light-gold);
}

.quote_by {
  color: var(--grey);
}

.newsletter_box {
  h6 {
    color: var(--dark-4);
  }
}

.newsletter_input {
  display: flex;
  background-color: #fff;
  border-radius: 50px;
  align-items: center;
  padding: 5px;
  border: 1px solid #e4e7ec;
}

.newsletter_input input[type="email"] {
  width: 100%;
  height: 60px;
  border: none;
  outline: none;
  padding: 0 20px;
}

.newsletter_input_icon {
  width: 62px;
  height: 62px;
  background-color: var(--gold-3);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.footer_menus {
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    column-gap: 40px;
    row-gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    li {
      a {
        color: var(--black);
        transition: all 0.3s;
        &:hover {
          color: var(--primary-gold);
          transition: all 0.3s;
          text-decoration: underline;
        }
      }
    }
  }
}

.footer_social {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.home_gallery_section {
  background-color: var(--black);
}

.home_gallery_box {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  img {
    width: 100%;
    aspect-ratio: 104 / 125;
    object-fit: cover;
  }
  .home_gallery_box_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(13, 13, 13, 0.3);
    transition: all 0.3s;
    font-size: 24px;
    padding: 20px;
    color: #fff;
  }
  &:hover {
    .home_gallery_box_overlay {
      background-color: rgba(13, 13, 13, 0);
      transition: all 0.3s;
    }
  }
}

.social_tabs_div {
  .nav {
    &.nav-pills {
      justify-content: center;
      .nav-item {
        .nav-link {
          color: var(--primary-gold);
          font-size: 24px;
          border-radius: 0;
        }
        .nav-link.active,
        .show > .nav-link {
          color: #fff;
          background-color: var(--primary-gold);
        }
      }
    }
  }
}

.more_feed_link {
  font-size: 24px;
}

.social_box {
  a {
    display: block;
  }
}
.social_box_img_box {
  overflow: hidden;
  position: relative;
  filter: drop-shadow(0px 4px 55px rgba(0, 0, 0, 0.05));
}
.social_box_img,
.social_box_video {
  width: 100%;
  aspect-ratio: 26 / 27;
  object-fit: cover;
  border-radius: 40px;
  --r: 40px;
  --s: 70px;
  --x: 20px;
  --y: 20px;
  --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 70%, #0000
        72%);
  --_g: conic-gradient(
    from 90deg at calc(100% - var(--r)) calc(100% - var(--r)),
    #0000 25%,
    #000 0
  );
  --_d: (var(--s) + var(--r));
  mask: calc(100% - var(--_d) - var(--x)) 100% var(--_m),
    100% calc(100% - var(--_d) - var(--y)) var(--_m),
    radial-gradient(var(--s) at 100% 100%, #0000 99%, #000 calc(100% + 1px))
      calc(-1 * var(--r) - var(--x)) calc(-1 * var(--r) - var(--y)),
    var(--_g) calc(-1 * var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(-1 * var(--_d) - var(--y));
  mask-repeat: no-repeat;
}
.social_box_data {
  margin-top: 20px;
}
.social_box_data_badge {
  margin-bottom: 20px;
  span {
    background-color: var(--dark-2);
    color: var(--dark-4);
    border-radius: 64px;
    font-size: 20px;
    display: inline-block;
    padding: 8px 20px;
  }
}
.social_box_data_date {
  span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--orange);
    display: inline-block;
    margin-right: 10px;
  }
  font-size: 20px;
  color: var(--dark-4);
  margin-bottom: 20px;
}
.social_box_data_title {
  color: var(--black);
  font-weight: 400;
}

.social_box_img_box_arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 114px;
  height: 114px;
  display: grid;
  place-items: center;
  background-color: var(--gold-3);
  border-radius: 50%;
  img {
    width: 72px;
  }
}

.main_content {
  font-size: 18px;
  color: var(--dark-main);
  letter-spacing: 0.2px;
  line-height: 33px;
  text-align: justify;
  /* font-family: 'Oswald', sans-serif; */
}

.mainimgbox {
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
  img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
  &:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-gold);
    background-color: var(--light-gold);
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: -1;
  }
  &.left {
    margin: 0 0 20px 20px;
    &:before {
      inset: 20px 20px auto auto;
    }
  }
}

.main_content_box {
  border-bottom: 1px dashed var(--primary-gold);
  padding-bottom: 40px;
}

.hightlight_section {
  background-color: var(--black);
}

.highlight_box {
  h4 {
    color: #fff;
    transition: all 0.3s;
  }
  a {
    color: #fff;
    transition: all 0.3s;
    &:hover {
      .link {
        span {
          color: var(--primary-gold);
          transition: all 0.3s;
        }
      }
      img {
        filter: grayscale(0%);
        transition: all 0.3s;
      }
    }
  }
  .link {
    margin-top: 20px;
    font-size: 28px;
    span {
      text-decoration: underline;
      text-decoration-style: dashed;
      text-underline-offset: 10px;
      text-decoration-thickness: 1px;
      transition: all 0.3s;
    }
  }
  img {
    filter: grayscale(100%);
    transition: all 0.3s;
  }
}
.calendar_section {
  overflow: hidden;
}
.calendar_section_blured_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(8px);
  -webkit-filter: blur(8px);
  background-size: cover;
  background-position: center;
}

.calendar_box {
  a {
    display: block;
    img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: contain;
    }
  }
}

.gallery_box {
  position: relative;
  overflow: hidden;
  .gallery_box_overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.1;
    transition: all 0.3s;
    z-index: 1;
  }



  .gallery_img {
    width: 100%;
    aspect-ratio: 104 / 147;
    object-fit: cover;
    transition: all 0.3s;
  }
  .gallery_box_data {
    z-index: 2;
    position: absolute;
    display: flex;
    align-items: flex-end;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    .gallery_box_data_inside {
      flex-grow: 1;
      h4 {
        text-transform: uppercase;
        color: #fff;
        font-size: 38px;
      }
      .location {
        font-size: 12px;
        color: #fff;
      }
      .know_more {
        color: var(--primary-gold);
        img {
          margin-left: 10px;
        }
        height: 0;
        transform: scale(1, 0);
        transform-origin: top;
        overflow: hidden;
        transition: all 0.3s;
      }
    }
  }

  &:hover {
    .gallery_img {
      transform: scale(1.1);
      transition: all 0.3s;
      filter: blur(5px);
      -webkit-filter: blur(5px);
    }
    .gallery_box_overlay {
      opacity: 0.5;
      transition: all 0.3s;
    }
    .gallery_box_data {
      .know_more {
        margin-top: 10px;
        height: 24px;
        transform: scale(1);
        transition: all 0.3s;
      }
    }
  }
}

.news_box {
  border-left: 1px solid var(--grey-2);
  border-right: 1px solid var(--grey-2);
  a {
    display: block;
    .date {
      color: var(--dark-4);
      font-size: 14px;
    }
    .link {
      span {
        color: var(--dark-4);
        text-decoration: underline;
        text-decoration-style: dashed;
        text-underline-offset: 10px;
        text-decoration-thickness: 1px;
        transition: all 0.3s;
      }
    }
    .news_img_box {
      position: relative;
      /* padding: 1rem; */
      img {
        filter: grayscale(100%);
        transition: all 0.3s;
      }
      &:before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: 15px solid #fff;
        z-index: 1;
        transition: all 0.3s;
      }
    }
    &:hover {
      .news_img_box {
        padding: 0;
        transition: all 0.3s;
        img {
          filter: grayscale(0%);
          transition: all 0.3s;
        }
        &:before {
          transition: all 0.3s;
          border-width: 0;
        }
      }
      .link {
        span {
          color: var(--primary-gold);
        }
      }
      h5 {
        color: var(--primary-gold);
      }
    }
  }
}

.news_social_section {
  background-color: var(--black);
}

.social_box_card {
  background-color: var(--light-gold);
  text-align: center;
  height: 100%;
  a {
    display: block;
    padding: 20px;
  }
  h4 {
    color: var(--primary-gold);
  }
  .social_box_card_link {
    margin: 50px 0 0;
    color: var(--primary-gold);
    font-weight: 400;
  }
  &:hover {
    background-color: var(--primary-gold);
    h4,
    .social_box_card_link {
      color: var(--light-gold);
    }
    .instagram_icon {
      content: url("../images/instagram_icon_light.svg");
    }
    .twitter_icon {
      content: url("../images/twitter_icon_light.svg");
    }
    .tiktok_icon {
      content: url("../images/tiktok_icon_light.svg");
    }
  }
}

.news_sport_profile_box {
  border-top: 1px solid rgb(250 250 250 / 20%);
  margin-top: 40px;
  padding-top: 40px;
}

.sport_profile_card {
  h3 {
    color: var(--light-gold);
    font-weight: 400;
    margin-bottom: 40px;
  }
  .link {
    a {
      color: var(--dark-4);
      text-decoration: underline;
      text-decoration-style: dashed;
      text-underline-offset: 10px;
      text-decoration-thickness: 1px;
      transition: all 0.3s;
      display: inline-block;
      padding-bottom: 10px;
    }
  }
  .sport_profile_card_img {
    img {
      transition: all 0.3s;
      filter: grayscale(100%);
    }
  }
  &:hover {
    h3,
    .link a {
      color: var(--primary-gold);
    }
    .sport_profile_card_img {
      img {
        transition: all 0.3s;
        filter: grayscale(0%);
      }
    }
  }
}
