@font-face {
  font-family: saveurSans;
  src: url(fonts/Saveur_sans.otf);
}

@font-face {
  font-family: jost;
  src: url(fonts/Jost.ttf);
}

@font-face {
  font-family: jost_light;
  src: url(fonts/Jost_light.ttf);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Enhanced Sidebar Styles */
.sidebar {
  position: fixed;
  left: -380px; /* Slightly wider for better content spacing */
  top: 0;
  width: 380px;
  height: 100vh;
  background: linear-gradient(135deg, 
    rgba(15, 15, 15, 0.95) 0%, 
    rgba(25, 25, 25, 0.92) 50%, 
    rgba(20, 20, 20, 0.95) 100%);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    8px 0 32px rgba(0, 0, 0, 0.3),
    inset -1px 0 0 rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.sidebar::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Open State with enhanced animation */
.sidebar.open {
  left: 0;
  box-shadow: 
    12px 0 48px rgba(0, 0, 0, 0.4),
    inset -1px 0 0 rgba(255, 255, 255, 0.15);
}

/* Sidebar Menu with enhanced styling */
.sidebar ul {
  list-style: none;
  padding: 20px 0;
  width: 100%;
  text-align: center;
  margin: 0;
}

.sidebar ul li {
  padding: 18px 25px;
  margin: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.sidebar ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  border-radius: 12px;
  transition: width 0.4s ease;
  z-index: -1;
}

.sidebar ul li:hover::before {
  width: 100%;
}

.sidebar ul li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.sidebar ul li:hover::after {
  width: 80%;
}

.sidebar ul li a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

/* Enhanced Hover Effects */
.sidebar ul li:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  box-shadow: 
    0 4px 20px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sidebar ul li:hover a {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  font-size: 20px;
  padding: 10px;
  border-radius: 5%;
  border: none;
  cursor: pointer;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Enhanced Sidebar Footer */
.sidebar .footer {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  padding: 20px;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.3) 0%, 
    transparent 100%);
  border-radius: 12px 12px 0 0;
  backdrop-filter: blur(5px);
}

/* Add subtle animation to sidebar elements */
.sidebar ul li {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

.sidebar ul li:nth-child(1) { animation-delay: 0.1s; }
.sidebar ul li:nth-child(2) { animation-delay: 0.2s; }
.sidebar ul li:nth-child(3) { animation-delay: 0.3s; }
.sidebar ul li:nth-child(4) { animation-delay: 0.4s; }
.sidebar ul li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .sidebar {
    width: 320px;
    left: -320px;
  }
  
  .sidebar ul li {
    font-size: 15px;
    padding: 16px 20px;
    margin: 6px 15px;
  }
}

@media (max-width: 480px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }
  
  .sidebar ul li {
    font-size: 14px;
    padding: 14px 18px;
    margin: 5px 12px;
  }
}

.hr {
  border: none;
  border-top: 0.5px solid rgba(128, 128, 128, 0.421);
  margin: 35px 0 35px;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: transparent;
  padding: 0px 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.7s;
  z-index: 1000;
}

.navbar:hover,
.navbar.scrolled {
  background: white;
  color: black;
  border-bottom: 1px solid lightgray;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar ul li {
  list-style: none;
}

.navbar ul li a {
  font-family: 'Poppins', sans-serif;
  color: white;
  padding: 0 12px;
  font-size: 0.8em;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar:hover ul li a,
.navbar.scrolled ul li a {
  color: black;
}

.navbar .brand {
  font-family: 'Didot', 'Playfair Display', 'Garamond', serif;
  letter-spacing: 1px;
  font-size: 2.6em;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar:hover .brand,
.navbar.scrolled .brand {
  color: black;
}

.navbar i.fa-bars,
.navbar i.fa-magnifying-glass {
  color: white;
  font-size: inherit;
  transition: color 0.3s;
}

.navbar:hover i.fa-bars,
.navbar:hover i.fa-magnifying-glass,
.navbar.scrolled i.fa-bars,
.navbar.scrolled i.fa-magnifying-glass {
  color: black;
}

section {
  margin: 0;
  color: white;
  font-size: 24px;
  text-align: center;
  scroll-snap-align: start;
  overflow: hidden;
}

.videobg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 125vh;
  overflow: hidden;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%);
}

.videobg h2 {
  position: absolute;
  top: 81.2%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}


.videobg button {
  position: absolute;
  top: 91%;
  left: 50%;

  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;

  padding: 15px 40px;
  font-size: 15px;
  font-weight: 100;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(45px);
  border: 1px solid white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.2s;
}

.videobg button:hover {
  /* border: 2px solid whitesmoke; */
  box-shadow: inset 0 0 0 1px white;
}

.imagebg {
  height: 110vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7)), url('assets/Hero\ Pages/i1.jpg'); */
  /* background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)), linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)), url('assets/Hero\ Pages/i1.jpg'); */

  /* background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7)), url('assets/Hero\ Pages/i1.jpg'); */

  background-image: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.85)), url('assets/Hero\ Pages/i1.webp');

  background-size: cover;
  background-position: center;
}

.imagebg h2 {
  position: absolute;
  top: 77.2%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
}

.imagebg button {
  position: absolute;
  top: 89%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
  padding: 15px 40px;
  font-size: 15px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(45px);
  border: 1px solid white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.2s;
}

.imagebg button:hover {
  box-shadow: inset 0 0 0 1px white;
}

.services h2{
  font-family: 'Poppins';
  font-weight: 500;
  color: black;
  font-size:large;
  margin-top: 80px;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4.5rem;
  align-items: start;
  margin-bottom: 85px;
}

.grid-item {
  background-color: white;
  overflow: hidden;
  cursor: pointer;
}

.card-image {
  display: block;
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.card-content {
  text-align: left;
}

.card-content h1 {
  font-family: jost;
  color: black;
  font-size: 1.3rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
}

.card-content p {
  font-family: jost_light;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  margin-right: 1.7rem;
  font-weight: 500;
  color: black;
}

.card-btn {
  font-family: jost_light;
  color: black;
  border: none;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 100;
  text-decoration: underline;
  text-underline-offset: 6px;
  background-color: transparent;
  cursor: pointer;
}

.container {
  display: flex;
  /* align-items: flex-start; */
}

.column {
  flex: 1;
  /* padding: 30px; */
  /* margin: 0 auto; */
  padding: 0 4.5rem;
  text-align: left;
  
}

.cell {
  font-family: jost_light;
  color: black;
  margin-bottom: 10px;
  padding: 5px;
  font-size: 14px;
  /* font-weight: 500; */
  
}

a.links{
  color: inherit;
  text-decoration: none;
}

span{
  /* text-decoration-color: grey; */
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cell-head{
  font-size: 12px;
  font-weight: 600;
}


.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px; */
}

.language {
  font-family: jost_light;
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
  padding: 0 4.5rem;
}

.footer ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
  /* margin-right: 10px; */
  padding-right: 50px;
}

.footer ul li {
  margin-left: 10px;
  margin-right: 30px;
}

.footer ul li a {
  font-family: jost_light;
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
}

.footer .language .globe-icon {
  color: rgba(5, 4, 4, 0.775);
}

.footer span {
  padding-left: 10px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.last-logo{
  margin-top: 45px;
  margin-bottom: 50px;
  font-family: saveurSans ;
  font-size: 1.3em;
  text-align: center;
}

.accordian-container{
  display: none;
}
.hr-hid{
  display: none;
}

.mobile-footer{
  display: none;
}

#image1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* or center, depending on your layout preference */
}

#image1 h2 {
    margin: 0; /* Remove default margin */
    padding: 10px 0; /* Add padding to create space between elements */
}



#h2-1-imagebg {
    margin-bottom: 10px; /* Adjust the value as needed */
}

#h2-2-imagebg {
    margin-top: 0; /* Ensure no extra margin at the top */
}

/* ===================== MEDIUM DEVICES (TABLETS & LARGE MOBILES) ===================== */
@media screen and (max-width: 1024px) {
  .container {
    margin-right: 4.5rem;
  }
  .column {
    flex: 1 0 50%;
    padding-left: 4.5rem;
    text-align: left;
  }
  .cell {
    font-family: jost_light;
    color: black;
    margin-bottom: 10px;
    font-size: 12px;
  }
  /* Navbar adjustments for medium devices */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 20px;
  }
  .navbar .brand {
    font-size: 2rem;
    flex-grow: 1;
    text-align: center;
  }
  .navbar-menu {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .navbar-menu a {
    font-size: 1.6rem;
    text-decoration: none;
    color: white;
  }
  #menu_icon,
  #search_icon {
    font-size: 1rem;
    margin-right: 10px;
  }
  .wishlist {
    display: none; /* Hide extra items if needed */
  }
}

/* ===================== SMALL DEVICES (ALL MOBILE PHONES) ===================== */
@media screen and (max-width: 600px) {
  /* --- Original Code (unchanged) --- */
  body {
    width: 120vh;
  }
  
  h2{
    margin-top: 125px;
  }
  /* Hide anything with this class on mobile */
  .hideinmobile {
    display: none !important;
  }

  .videobg {
    height: 225vh;
    width: 125vh;
  }
  .imagebg {
    height: 225vh;
    width: 125vh;
  }
  .videobg h2 {
    top: 79%;
    font-size: 3rem;
    font-weight: 550;
    white-space: nowrap;
  }
  .videobg button {
    font-family: jost_light;
    top: 91%;
    left: 50%;
    padding: 38px 145px;
    font-size: 2rem;
    font-weight: 100;
    white-space: nowrap;
    backdrop-filter: blur(100px);
    border-radius: 100px;
    border: 2px solid white;
  }
  #h2-1-imagebg {
    font-family: jost_light;
    top: 79%;
    font-size: 3.5rem;
    white-space: nowrap;
  }
  #h2-2-imagebg {
    font-family: jost_light;
    top: 82%;
    font-size: 3.5rem;
    white-space: nowrap;
  }
  .imagebg button {
    font-family: jost_light;
    top: 89%;
    padding: 38px 145px;
    font-size: 2rem;
    font-weight: 100;
    white-space: nowrap;
    backdrop-filter: blur(100px);
    border-radius: 100px;
    border: 2px solid white;
  }
  .services {
    width: 125vh;
  }
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .card-image {
    height: 20rem;
    border-radius: 5%;
  }
  .card-content h1 {
    margin-top: 3.5rem;
    font-size: 3rem;
  }
  .card-content p {
    font-size: 2rem;
  }
  .card-btn {
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 2rem;
  }
  .column {
    flex-direction: row;
    padding: 0 1rem;
  }
  .links {
    display: none;
  }
  .footer {
    display: none;
  }
  .last-logo {
    width: 125vh;
    font-size: 2.10rem;
  }
  .hr {
    width: 125vh;
  }
  .hr-hid {
    display: block;
    
    align-content: center;
    width: 90%;
  }
  .accordian-container {
    display: contents;
  }
  .accordion {
    font-family: jost_light;
    background-color: white;
    color: black;
    cursor: pointer;
    padding: 30px 4.5rem;
    width: 125vh;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.2rem;
    transition: 0.4s;
  }
  .active,
  .accordion:hover {
    background-color: white;
  }
  .accordion:after {
    content: '\002B';
    color: black;
    font-weight: 500;
    float: right;
    margin-left: 5px;
  }
  .active:after {
    content: "\2212";
    transform: rotate(90deg);
  }
  .panel {
    display: block;
    margin-left: 4.5rem;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .panel a {
    font-family: jost_light;
    display: block;
    margin: 30px 20px;
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 1.0rem;
  }
  .panel a span {
    text-underline-offset: 12px;
  }
  .social {
    align-items: center;
    margin: 30px 40px 30px 30px;
    font-size: 60px;
    color: black;
  }
  .insta {
    margin-left: 100px;
  }
  .pin {
    margin-left: 200px;
  }
  .socialmedia {
    margin-top: 100px;
    align-content: center;
  }
  .mobile-footer {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
  }
  .mobile-footer ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
  }
  .mobile-footer ul li {
    margin: 0 0px;
  }
  .mobile-language {
    font-family: jost_light;
    color: black;
    font-size: 2.5rem;
    margin-top: 10px;
  }
  footer ul li a {
    color: black;
    font-family: jost_light;
    margin: 0 10px;
    text-decoration: none;
    font-size: 2.5rem;
  }
  .mobile-footer .mobile-language .globe-icon {
    color: rgba(5, 4, 4, 0.775);
  }
  footer a {
    margin-top: 40px;
    text-decoration: none;
  }
  .mobile-footer span {
    margin-top: 70px;
    padding-left: 10px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 20px;
  }
  .contain {
    margin-top: 65px;
  }
  .nav-hid {
    display: none;
  }
  .navbar {
    height: 75px;
    padding-left: 10px;
  }
  .navbar .brand {
    font-size: 2.8em;
  }
  .navbar ul li i {
    margin-left: 40px;
  }
  .navbar ul li a {
    font-size: 1.4rem;
  }
  #menu_icon {
    font-size: 2.5rem;
    margin-left: 5px;
  }
  #search_icon {
    margin-left: 20px;
    font-size: 2.5rem;
  }
}

/* 
  =====================
  FINAL OVERRIDES FOR A 'DIOR-LIKE' TOP BAR ON MOBILE
  =====================
*/
@media screen and (max-width: 600px) {
  /* 1. No zoom + no horizontal scroll */
  html, body {
    margin: 0;
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* 2. Minimal white background, black text/icons for the navbar */
  .navbar {
    background-color: #fff !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 60px !important; /* Slightly smaller for mobile */
  }
  /* Brand name centered */
  .navbar .brand {
    color: #000 !important;
    text-align: center !important;
    margin-right: 17%;
    flex: 1 !important; /* Ensures brand is centered */
    font-size: 1.8em !important;
  }

  /* Left & right icons black */
  #menu_icon,
  #search_icon {
    color: #000 !important;
    font-size: 1.4rem !important;
    background: none !important;
    border: none !important;
    cursor: pointer;
  }

  /* If you have .navbar-menu or .navbar ul li a, override color to black */
  .navbar-menu a,
  .navbar ul li a {
    color: #000 !important;
    font-size: 1.4rem !important;
    text-decoration: none;
  }

  /* 3. Fit wide elements to screen width */
  .videobg,
  .imagebg,
  .services,
  .last-logo,
  .hr,
  .accordion {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 4. Make large text/buttons smaller for mobile */
  .videobg h2,
  #h2-1-imagebg,
  #h2-2-imagebg {
    font-size: 1.90rem !important;
  }
  .videobg button,
  .imagebg button {
    font-size: 1.6rem !important;
    padding: 10px 30px !important;
  }
  .card-content h1 {
    font-size: 2rem !important;
  }
  .card-content p {
    font-size: 1.6rem !important;
  }
  .card-btn {
    font-size: 1.6rem !important;
  }
  .social {
    font-size: 40px !important;
  }
  .mobile-footer ul li a {
    font-size: 0.35rem !important;
  }
  .mobile-language {
    font-size: 1rem !important;
  }
}