
@font-face {
  font-family: "AvantGarde-Book";
  src:  url("/assets/fonts/ICTAvantGarde/AvantGarde-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "AvantGarde-Medium";
  src:  url("/assets/fonts/ICTAvantGarde/ITC-Avant-Garde-Gothic-Std-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "AvantGarde-Bold";
  src: url("/assets/fonts/AvantGarde_Fonts/ITCAvantGardeStd-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "AvantGarde-Demi";
  src: url("/assets/fonts/AvantGarde_Fonts/ITCAvantGardeStd-Demi.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "AvantGarde-ExtraLight";
  src: url("/assets/fonts/AvantGarde_Fonts/ITCAvantGardeStd-XLt.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}

* {
  box-sizing: border-box;
}
html, body,
.body-text-team a,
.body-section-title-kit a  {
  font-family: "AvantGarde-Book", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
  background-color: #efeceb;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.07em;
}

/* Video Background */
.container-homepage {
  position: relative;
  top: 0px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
button#playBtn,
button#muteBtn {
  background: rgba(0,0,0,0);
  border: none;
  color: white;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 25px;
}
.controls i {
  color: #424949;
  opacity: 0.8;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  html, body,
  .body-text-team a,
  .body-event-content a,
  .choco-preorder,
  .body-section-title-kit a  {
    font-size: 12px;
  }
  .container-homepage {
    width: 100%;
    height: 400px;
  }
  .background video {
    width: 100%;
    height: 52vh;
  }

  .controls {
    bottom: 25px;
  }
}

@media screen and (max-width: 460px) {
  .container-homepage {
    width:100%;
    height: 260px;
  }

  .background video {
    width: 100%;
    height: 35vh;
  }

  .controls {
    bottom: 25px;
  }

  button#playBtn,
  button#muteBtn {
  font-size: 20px;
  }
}

/* -------------
  Header Styles
--------------*/
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px 10px 50px;
  gap: 30px;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* Logo */
.header-logo img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Main Menu */
.header-menu {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* gap: 40px; */
  flex-wrap: nowrap;
  overflow-x: hidden;
  max-width: 100%;
  position: static;
  margin: 0; 
}

.menu-1 {
  display: flex;
  gap: 5px;
  align-items: center;
}

.header-menu a {
  color: #b29a60;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.11em;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
  padding: 6px 8px 0 8px;
}

.header-menu a.reservation {
  letter-spacing: 0.5em;
  margin-left: auto;
  /* margin-right: 15px; */
}
.mobile-social-icons a{position: relative; bottom: -1px;}

/* .mobile-social-icons {
  display: none;
} */

/* Hamburger */
.header-sidebar {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #baad81;
  font-size: 26px;
  cursor: pointer;
  z-index: 10001;
}

/* ----------------------
   Responsive Styles
------------------------ */

@media screen and (min-width: 1919px) and (max-width: 1921px) and (min-height: 1079px) and (max-height: 1081px) {
  .header-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .header-logo img {
    max-width: 180px;
  }

  .header-menu {
    gap: 48px;
  }

  .menu-1 {
    display: flex;
    justify-content: space-between;
    flex: 1;
    gap: 0;
  }

  .header-menu a {
    font-size: 14px;
    letter-spacing: 0.12em;
    padding: 8px 10px;
  }

  .header-menu a.reservation {
    font-size: 13px;
    letter-spacing: 0.55em;
    padding-top: 20px;
    margin-left: auto;
  }
}

@media screen and (min-width: 1201px) {
}

@media screen and (max-width: 1200px) {
  header-container {
    height: 60px;
    padding: 0 10px 10px 15px;
  }

  .header-menu {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding-top: 120px;
    gap: 32px;
    overflow-y: auto;
    text-align: center;
  }

  .header-menu.show {
    display: flex;
  }

  .header-menu .menu-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .header-menu a {
    color: white;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .header-menu a.reservation {
    margin: 0 10px 0px 15px;
    padding: 0;
    letter-spacing: 0.4em;
  }

  .hamburger {
    display: block;
    font-size: 32px;
  }

  .mobile-social-icons {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding-bottom: 20px;
  }

  .mobile-social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  /* .mobile-social-icons a:hover {
    background-color: #e1306c;
  } */

  .mobile-social-icons i {
    font-size: 28px;
    color: #fff;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1399px) {
  .header-container {
    gap:20px;
  }

  .header-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    padding-left: 10px;
    /* margin-right: 20px; */
    position: static; 
  }

  .menu-1 {
    display: flex;
    gap: 5px;
    align-items: center;
    padding-top: 20px;
  }

  .header-menu a.reservation {
    margin: 0 8px 0 auto;
    letter-spacing: 0.4em;
    font-size: 11px;
    white-space: nowrap;
    padding: 22px 0 0 0;
  }

  .mobile-social-icons a{ bottom: -10px;}

  .header-menu a {
    font-size: 11px;
    letter-spacing: 0.04em;
    padding: 5px 6px;
  }

  .hamburger {
    display: none;
  }
}
/*  */

/* Tablet: 768px - 1023px */
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .header-container {
    height: 60px;
  }

  .header-menu {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding-top: 120px;
    gap: 32px;
    overflow-y: auto;
    text-align: center;
  }

  .header-menu.show {
    display: flex;
  }

  .header-menu .menu-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .header-menu a {
    color: white;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .header-menu a.reservation {
    display: none !important;
  }

  .hamburger {
    display: block; 
    font-size: 40px;
  }

  .mobile-social-icons {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding-bottom: 20px;
  }

  .mobile-social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  /* .mobile-social-icons a:hover {
    background-color: #e1306c;
  } */

  .mobile-social-icons i {
    font-size: 28px;
    color: #fff;
  }
}

/* Mobile <= 768px */
@media screen and (max-width: 768px) {
  .header-container {
    height: 60px;
    padding: 0 10px 10px 20px;
  }

  .header-menu {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding-top: 120px;
    gap: 32px;
    overflow-y: auto;
    text-align: center;
  }

  .header-menu.show {
    display: flex;
  }

  .header-menu .menu-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 30px;
  }

  .header-menu a {
    color: white;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .header-menu a.reservation {
    /* display: none !important; */
    margin: 0 auto ;
    padding: 0;
    letter-spacing: 0.4em;
  }

  .hamburger {
    display: block;
    font-size: 32px;
  }

  .mobile-social-icons {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding-bottom: 20px;
  }

  .mobile-social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  /* .mobile-social-icons a:hover {
    background-color: #e1306c;
  } */

  .mobile-social-icons i {
    font-size: 28px;
    color: #fff;
  }
}

/* Extra small devices <= 480px */
@media screen and (max-width: 480px) {
  .header-container {
    padding-top: 0;
  }
  
  .header-menu a {
    font-size: 12px;
  }

  .header-logo img {
    max-width: 90px;
    max-height: 45px;
  }
}

/* --ABOUT CONTENTS -- ection Below */
.body-container-about {
  margin-top: 4vh;
  padding: 30px 20px 60px 20px;
  color: #b29a60;
}

.body-about-text {
  max-width: 630px;
  margin: 0 auto;
}

.body-about-text p {
  text-align: center;
  margin-bottom: 23px;
}

.body-image-about {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.body-image-about img {
  max-width: 60%;
  height: auto;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .body-container-about {
    padding-top: 34px;
    margin: 0;
  }

  .body-image-about {
    margin-top: 30px;
  }

  .body-image-about img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .body-about-text p {
    text-align: left;
    margin: 0;
  }
  .body-about-text p + p{
    margin-top: 6px;
  }
}


/*  --OUR TEAM PART IN THE HOMEPAGE-- */
.body-team-container {
  max-width: 1100px;
  margin: 90px auto 40px;
  padding: 0 100px;
  text-align: center;
  color: #b29a60;
}

.body-row {
  display: flex;
  justify-content: center;
}

.body-row.body-top-row img {
  width: calc((100% - 24px) / 3);
  height: 265px;
  object-fit: cover;
  object-position: 40% 25%;
}

.body-row.body-bottom-row img {
  width: calc((100% - 24px) / 3);
  height: 270px;
  object-fit: cover;
  object-position: 40% 20%;
}

.body-text-team {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 8px;
  cursor: pointer;
}

.body-text-team a i {
  padding-right: 5px;
}

.body-team-description {
  max-width: 630px;
  margin: 15px auto 58px;
  color: #b29a60;
}

/* .body-text-team {
  font-size: 17px;
  letter-spacing: 8px;
  font-weight: 400;
  cursor: pointer;
} */

.body-text-team a {
  color: #b29a60;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;
}

.body-text-team a:hover {
  transform: translateY(-2px);
}

.body-member-details-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.8);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.body-member-details-container.active {
  display: flex;
}

.body-member-details-content {
  width: 100%;
  display: flex;
  position: relative;
  color:#fff;
}

.body-member-profile-img img {
  width: 100%;
  object-fit: cover;
}

.body-member-profile-bio {
  flex: 1 1 300px;
  max-height: 300px;
  text-align: justify;
  padding-right: 8px;
}

.body-member-profile-bio h2 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5em;
  margin-bottom: 15px;
}

.body-member-profile-bio h3 {
  margin-top: 0;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}

.body-modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 40px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

.body-modal-close:hover {
  color: #fff;
}

.body-member-profile-bio::-webkit-scrollbar {
  width: 6px;
}

.body-member-profile-bio::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

@media (min-width: 769px) {
  .body-member-details-content {
    max-width: 900px;
    padding: 40px;
    flex-wrap: wrap;
    gap: 30px;
  }

  .body-member-profile-img img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {

  .body-team-container {
    max-width: 100%;
    padding: 0; 
    margin: 0 auto;
    text-align: left;
  }

  .body-row {
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .body-row img {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .body-row.body-top-row img {
    width: calc(100% / 3);
    height: 140px;
  }

  .body-row.body-bottom-row img {
    width: calc(100% / 4);
    height: 120px;
  }

  .body-text-team {
    padding: 0 15px 0 15px;
    font-size: 15px;
    letter-spacing: 0.2em;
  }

  #body-text-team {
    padding-bottom: 20px;
    margin-top: 34px
  }

  .body-text-team a {
    padding: 0 0 0 0;
  }

  .body-team-description {
    padding: 0 15px 0 15px;
    margin: 0 0 0 0;
  }

  .body-team-description br {
    display: none;
  }

  .body-member-details-container.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.9);
    z-index: 9999;
    padding: 0;
    margin: 0;
    flex-direction: column;
    overflow: hidden;
  }

  .body-member-details-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
  }

  .body-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    z-index: 10000;
    color: #fff;
    cursor: pointer;
  }

  .body-member-profile-img {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
  }

  .body-member-profile-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }

  .body-member-profile-bio {
    flex: 1;
    padding: 15px 20px 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    background-color: transparent;
    overflow-y: auto;
  }

  .body-member-profile-bio h2 {
    font-size: 15px;
    font-weight: 100;
    letter-spacing: 0.3em;
    margin: 0 0 10px;
    text-align: center;
    color: #fff;
  }

  .body-member-profile-bio h3 {
    font-size: 15px;
    font-weight: 100;
    margin: 0 0 10px;
    text-align: center;
    color: #fff;
  }

  .body-member-profile-bio p {
    text-align: justify;
    margin: 0 0 10px;
    color: #fff;
  }

  .body-member-profile-bio::-webkit-scrollbar {
    width: 4px;
  }

  .body-member-profile-bio::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }

}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --EVENT CONTENT IN THE HOMEPAGE-- */
.body-event-container {
  display: flex;
  max-width: 1280px;
  margin: 10px auto;
  align-items: flex-start;
  justify-content: space-between;
  padding: 63px 40px 20px;
  gap: 40px;
  flex-wrap: wrap;
  color: #b29a60;
}

.body-event-content {
  flex:1;
  margin-top: -6px;
  max-width: 500px;
}

.body-event-content h2 {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.3em;
  margin-bottom: 60px;
}

.body-section-title-kit {
  margin-top: 40px;
}

.body-section-title-kit a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.body-event-content p  + p{
  margin-top: 20px;
}

.body-section-title-kit a i {
  padding-right: 5px;
}

.body-event-content p:last-child {
  margin-bottom: 0;
}

.body-event-content a {
  text-decoration-line: none;
  color: #b29a60;
}

/* Image on the right, shifted slightly to the right */
#body-image-container-event {
  position: relative;
}


/* 
#next-btn,
#prev-btn {
  position: absolute;
  top: 45%;
  background-color: rgba(0, 0, 0, 0.0); 
  color: white;
  border: none;
  font-size: 35px;
  cursor: pointer;
  z-index: 2;
  border-radius: 4px;
  transition: all 0.3s ease;
} */

/* #prev-btn {
  right: 97%
} */

#prev-btn:active,
#next-btn:active {
  transform: scale(0.9);
}


/* Tablet, Laptop, Desktop */
@media (min-width: 768px) {

  .body-event-content {
    margin-bottom: 0;
  }

  /* #body-image-container-event {
    margin-left: 20px;
  } */

  /* #body-image-container-event img {
    width: 430px;
  } */
}

/* Mobile: devide 2 line */
@media (max-width: 767px) {
  .body-event-container {
    flex-direction: column;
    align-items: center;
    padding: 30px 0 0px 0;
    gap: 0;
  }

  .body-event-content {
    max-width: 100%;
    transform: none; 
    margin: 36px 0 10px 0;
    order: 2;
    padding: 0 20px 0 20px;
  }

  .body-event-content h2 {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.2em;
    margin-bottom: 27px;
  }

  #body-section-title-kit {
    margin-top: 35px;
  }

  .body-event-content p {
    font-size: 12px;
    margin: 0 0 10px 0;
  }

  #body-image-container-event {
    transform: none;
    /* margin-left: 0; */
    order: 1;
    width: 100%;
  }

  /* #body-image-container-event img {
    width: 100%;
    max-width: 100%;
  } */
/* 
  #next-btn,
  #prev-btn {
    position: absolute;
    top: 45%;
    background-color: rgba(0, 0, 0, 0.0);
    color: white;
    border: none;
    font-size: 35px;
    cursor: pointer;
    z-index: 2;
    border-radius: 4px;
  }

  #prev-btn {
  right: 90%
  }

  #next-btn {
    left: 90%;
  } */

}


/* ABOUT DESGIN CONTENT */
.body-about-design-container {
  max-width: 1280px;
  margin: 10px auto;
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.body-abt-text-content {
  flex:1;
  margin-top: -6px;
  max-width: 500px;
}

.body-abt-text-content h2 {
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
  margin: 0 0 60px 0;
  color: #b29a60;
  letter-spacing: 0.3em;
}

.body-abt-text-content p {
  width: 100%;
  margin: 0;
  color: #b29a60;
}
.body-abt-text-content p + p{
  margin-top: 20px;
}

.body-images-abt {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}

.body-images-abt img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.body-images-abt img:last-of-type{
  position: relative;
  left: -160px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .body-about-design-container {
    flex-direction: column;
    padding: 0;
    margin: 0 0 30px 0;
    gap: 34px;
  }

  .body-images-abt {
    gap: 15px;
    max-width: 100%;
  }

  .body-images-abt img:last-of-type{position: static;}

  .body-abt-text-content h2 {
    margin: 0 0 30px 0;
    font-size: 15px;
  }

  .body-abt-text-content {
    order: 2;
    padding: 0 20px;
  }

  .body-images-abt {
    order: 1;
  }

  div.happenings-container{
    max-width: 480px;
    width: 100%;
    gap: 20px;
    padding-left: 0; 
    padding-right: 0px;
    margin: 50px auto 0;
    flex-direction: column;
    justify-content: center;
  }
  .happenings-container img:hover{
    transform:none !important;
  }
  .happenings-title, .happenings-subtitle{
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .body-abt-text-content{
    max-width: 100%;
  }

  .body-abt-text-content h2 {
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 25px;
  }

  .body-abt-text-content p {
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}


/* --LA TERRACE BY LOUISE PAGE-- */
.la-container {
  color: #b29a60;
  width: 100%;
  max-width: 1280px;
  margin: 100px auto;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT BLOCK */
.la-left {
  flex:1;
  max-width: 500px;
}

.la-logo {
  display: inline-block;
}

.la-logo img {
  max-width: 168px;
  aspect-ratio: 168/72;
  display: block;
}

/* DESCRIPTION */
.body-description {
  width: 100%;
  margin-top: 35px;
  /* text-align: justify; */
}

/* MENU LIST */
ul.menu-list {
  list-style: none;
  padding: 0;
  margin: 45px 0 0 0;
  max-width: 400px;
}

ul.menu-list a {
  text-decoration: none;
  color: #b29a60;
}

ul.menu-list li {
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

ul.menu-list li i {
  font-size: 15px;
}

/* RIGHT BLOCK */
.image-container {
  flex:1;
  max-width: 400px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

/* ✅ DESKTOP XL */
@media (min-width: 1400px) {
  .la-container {
    max-width: 1280px;
    padding: 44px 40px 22px ;
    gap: 100px;
  }

  

  /* .image-container {
    margin-right: 158px;
  } */
}

/* ✅ LAPTOP, MACBOOK */
@media (max-width: 1199px) {
  .la-container {
    padding: 40px 40px;
  }

  .la-left {
    margin-left: 40px;
  }

  /* .image-container {
    margin-right: 40px;
  } */
}

/* ✅ TABLET LANDSCAPE và SMALL LAPTOP */
@media (max-width: 992px) {
  .la-container {
    padding: 30px 30px;
  }

  .la-left{
    margin: 0;
  }

  .body-description,
  .menu-list {
    max-width: 100%;
  }
}

/* ✅ TABLET PORTRAIT & MOBILE */
@media (max-width: 768px) {
  .la-container {
    flex-direction: column;
    padding: 30px 0 24px 0;
    gap: 20px;
    margin: 60px 0 0 0;
  }

  .la-left,
  .image-container {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .la-left {
    padding: 0 20px 0 20px;
  }

  .image-container {
    justify-content: center !important;
  }

  .image-container img {
    width: 100%;
    height: auto;
  }

  .body-description,
  .menu-list {
    width: 100%;
    max-width: 100%;
  }

  ul.menu-list {
    margin: 30px 0 0 0;
  }

  .la-logo {
    max-width: 220px;
    margin: 0 auto 0;
    text-align: center;
  }
  /* .happenings-container > div{
    padding: 0 10px;
  } */
  .happenings-title{
    text-align: left !important;
  }
  .happenings-subtitle{
    display: inline-block !important;
  }
}

/* ✅ EXTRA SMALL DEVICES  */
@media (max-width: 480px) {

  ul.menu-list li {
    margin-bottom: 22px;
  }
}


/* -- HAPPENINGS PAGE -- */
.happenings-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1280px;
  gap: 50px;
  margin: 100px auto;
  padding: 40px 40px 17px;
}
.happenings-container > div{
  flex:1
}

.happenings-container img {
  width: 100%;
  aspect-ratio: 108/135;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease-in-out;
  display: block;
}

.happenings-container img:hover {
  transform: scale(1.02);
}

.happenings-title {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-top: 12px;
  color: #b29a60;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.happenings-subtitle {
  text-align: center;
  display: block;
  margin-top: 6px;
  color: #b29a60;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  text-transform: uppercase;
}

.happenings-subtitle:hover {
  color: #b29a60;
  text-decoration: underline;
}


/* ✅ Mobile nhỏ (≤767px): 1 cột */
@media (max-width: 767px) {
}


/*-- ACCOLADES PAGE  --*/
.accolades-wrapper {
  background-color: #efeceb;
  color: #b29a60;
  width: 100%;
  margin: 0;
  padding: 0;
}

.accolades-section {
  max-width: 1000px;
  margin: 110px auto;
  text-align: center;
  padding: 0 20px;
}

.accolades-heading {
  font-size: 17px;
  letter-spacing: 8px;
  color: #b29a60;
  margin:0 0 70px 0;
  padding-top: 40px;
}

.accolades-logos {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap; 
  gap: 40px;
  margin-bottom: 50px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.accolades-logos img {
  height: 60px;
  object-fit: contain;
  margin: 0;
  padding: 0;
  border: none;
  max-width: 140px;
  flex-shrink: 0;
}

.accolades-text {
  color: #b29a60;
  text-align: center;
  margin: 0;
  padding: 0 10px;
}

.accolades-text p + p{margin: 20px 0 0;}

/* Tablet (iPad ≤1024px) */
@media (max-width: 1024px) {
  .accolades-logos img {
    height: 50px;
    max-width: 90px;
  }

  .accolades-heading h2 {
    font-size: 15px;
  }

  .accolades-text {
    font-size: 13px;
  }
}

/* ✅ Mobile (≤500px): 4-4 */
@media (max-width: 500px) {
  .accolades-section {
    margin: 78px 0 50px 0;
  }

  .accolades-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 0px;
    justify-items: center;
    padding: 0 10px 0 0;
  }

  .accolades-logos img {
    height: 60px;
    max-width: 100px;
  }

  .accolades-logos img#logo-top-tables {
    height: 65px;
  }

  .accolades-heading {
    margin:0 0 50px 0;
    padding-top: 0px;
    font-size: 15px;
    letter-spacing: 0.3em;
  }

  .accolades-heading h2 {
    font-size: 12px;
  }

  .accolades-text {
    font-size: 12px;
    text-align: left;
  }
}