* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      background-color: #000000;
    }
    body {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('fon.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: #FFFFFF;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      padding: 20px;
    }
    .container {
      max-width: 900px;
      width: 100%;
      background: #000000;
      padding: 50px;
      border-radius: 80px;
      box-shadow: 0 10px 20px #000000;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    header {
      text-align: center;
      margin-bottom: 40px;
    }
    header h1,
    header p,
    .working-hours {
      text-align: center;
    }
    header h1 {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 40px;
      line-height: 40px;
      color: #FFFFFF;
      letter-spacing: 5px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    header p {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 20px;
      line-height: 20px;
      margin-top: 5px;
      color: #7D7D7D;
    }
    .working-hours {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      display: inline-block;
      margin-top: 10px;
      background: #2E2E2E;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 15px;
      line-height: 15px;
      color: #FFFFFF;
      border: 1px solid #2E2E2E;
    }
    .working-hours i {
      color: #FFFFFF;
      margin-right: 5px;
    }
    section {
      margin-bottom: 40px;
      text-align: left;
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
    }
    section h2 {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      border-bottom: 2px solid #D1D1D1;
      padding-bottom: 8px;
      margin-bottom: 20px;
      font-size: 40px;
      line-height: 40px;
      text-transform: uppercase;
      letter-spacing: 5px;
      margin-left: 0;
      text-align: left;
    }
    .menu-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
    }
    .menu-item {
      background: #2E2E2E;
      padding: 15px 20px;
      border-radius: 25px;
      flex: 1 1 200px;
      box-shadow: inset 0 0 10px #000000;
      color: #FFFFFF;
      transition: background 0.5s, color 0.5s;
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
    }
    .menu-item h3 {
      font-family: 'Sora', sans-serif;
      font-weight: 400;
      margin-bottom: 5px;
      font-size: 30px;
      color: #FFFFFF;
      line-height: 30px;
      text-align: left;
      margin-left: 0;
    }
    .menu-item p {
      margin-bottom: 0px;
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      color: #D1D1D1;
      font-size: 15px;
      line-height: 20px;
    }
    .info-list {
      list-style: none;
      font-size: 15px;
      line-height: 15px;
      max-width: 600px;
      margin: 0 auto;
      color: #F5F5F5;
      text-align: left;
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
    }
    .hookah-desc {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 20px;
      line-height: 20px;
      color: #F5F5F5;
}
.events-desc {
  font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 20px;
      line-height: 20px;       
      color: #F5F5F5;
}
ul {
  padding-left: 20px;  
  margin-left: 0;      
  list-style-position: outside; 
}
ul.hookah-listt {
  margin-top: -10px;
}
.hookah-list {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 15px;
  color: #F5F5F5;
  font-weight: 400;
}
li {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #F5F5F5;
  font-weight: 400;
}
.banner-slider {
  position: relative;
  margin-bottom: 40px;
  max-width: 100%;
  height: 250px;
  margin-top: -30px;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}
.slide {
  min-width: 100%;
  object-fit: cover;
  display: none;
  border-radius: 10px;
}
.slide.active {
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(125, 125, 125, 0.5);
  border: none;
  color: #000000;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
  z-index: 10;
}
.slider-btn:hover {
  background: #7d7d7d;
  color: #000000;
}
.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
  background: #D1D1D1;
  color: #000000;
  transition: transform 0.1s ease;
}
.slider-btn.prev {
  left: 15px;
}
.slider-btn.next {
  right: 15px;
}
    .contacts-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr; 
      gap: 20px;
      align-items: start;
    }
    .contacts-info {
      font-size: 15px;
      line-height: 15px;
      color: #F5F5F5;
      text-align: left;
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
    }
    .contacts-info p {
      margin-bottom: 15px;
      color: #F5F5F5;
    }
    .contacts-info i {
  margin-right: 5px; 
}
     .map-container {
      position: relative;
      overflow: hidden;
      width: 400px;
      height: 200px;
      margin: 0 0 0 auto; 
      border-radius: 10px;
      padding: 0;
    }
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;   
  height: 100% !important;  
  border: none;
  border-radius: 10px;
  display: block;
  box-sizing: border-box;   
  margin: 0;                
  padding: 0;
}
    iframe {
  display: block;
}
    .socials {
      position: absolute;
      display: flex;
      justify-content: left;
      bottom: 70px; 
      gap: 10px;
      font-size: 30px;
      margin-top: 10px;
    }
    .socials a {
      color: #7D7D7D;
      transition: color 0.5s;
      text-decoration: none;
    }
    .socials a:hover {
      color: #D1D1D1;
    }
    .socials a:active {
  color: #D1D1D1;
  transform: scale(0.85);
  transition: transform 0.1s ease;
}
    section p {
      text-align: left;
      color: #F5F5F5;
      max-width: 100%;
      margin: 0 0 20px 0;
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      line-height: 15px;
      font-weight: 400;
    }
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  opacity: 1;
  visibility: visible;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.spinner {
  border: 5px solid #2E2E2E;
  border-top: 5px solid #F5F5F5;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.socials a i {
  display: inline-block;
  transform-origin: center center;
}
.socials a i.spin {
  animation: spin360 1s ease forwards;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-item {
  opacity: 1;
  transform: none;
  transition: none;
  display: inline-block;
}
@keyframes glitch {
  0% {
    text-shadow:
      2px 0 red,
      -2px 0 cyan;
  }
  20% {
    text-shadow:
      -2px 0 red,
      2px 0 cyan;
  }
  40% {
    text-shadow:
      2px 2px red,
      -2px -2px cyan;
  }
  60% {
    text-shadow:
      -2px -2px red,
      2px 2px cyan;
  }
  80%, 100% {
    text-shadow: none;
  }
}
.menu-item.glitch {
  animation: glitch 0.8s ease-in-out forwards;
}
    @media (max-width: 600px) {
  body {
    padding: 10px;
  }
  .container {
    max-width: 100%;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 5px 10px #000000;
  }
  header h1 {
    font-size: 30px;
    line-height: 30px;
  }
  header p {
    font-size: 20px;
    line-height: 20px;
  }
  .working-hours {
    font-size: 15px;
    line-height: 15px;
    padding: 5px 10px;
  }
  section h2 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .menu-list {
    flex-direction: column;
    gap: 15px;
  }
  .menu-item {
    flex: 1 1 auto;
    padding: 10px 15px;
    font-size: 15px;
    line-height: 15px;
  }
  .menu-item h3 {
    font-size: 25px;
    line-height: 25px;
  }
  section p,
  li {
    font-size: 15px;
    line-height: 20px;
  }
  .hookah-desc,
  .events-desc {
    font-size: 20px;
    line-height: 25px;
  }
  .contacts-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contacts-info {
    font-size: 15px;
    line-height: 15px;
  }
  .contacts-info p {
      margin-bottom: 5px;
    }
  .map-container {
    width: 100% !important;
    max-width: none !important;
    border: none !important;
  }
  .map-container iframe {
    width: 100% !important;
    height: 200px;
    border: none;
    display: block;
  }
  .socials {
    position: static;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 25px;
    line-height: 25px;
    margin-top: 30px;
    margin-bottom: -20px;
    bottom: auto;
  }
  .socials a {
    color: #7D7D7D;
    transition: color 0.3s;
  }
  .socials a:hover {
    color: #F5F5F5;
  }
}