/* ✅ Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #121212;
    color: white;
    text-align: center;
  }
  
  /* ✅ Header */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    z-index: 1000;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
  }
  
  .logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
  }
  
/* Navbar Section */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  
  .navbar ul {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  
  .navbar ul li {
    position: relative;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  
  .navbar ul li a:hover {
    color: #ff5722; /* Нэрлэх өнгө */
    transform: scale(1.1);
  }
  
  .navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #ff5722; /* Зургаан дугуй */
    bottom: -5px;
    left: 0;
    transition: all 0.3s ease;
  }
  
  .navbar ul li a:hover::after {
    width: 100%;
  }
  
  
  /* ✅ Hero Section */
  .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
  }
  
  .hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    background-color: #ff5722;
    border: none;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  /* ✅ Branches section */
  .branches {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
  }
  
  .branch {
    background-color: #2c2c2c;
    border-radius: 15px;
    padding: 20px;
    width: 220px;
    transition: transform 0.3s ease;
  }
  
  .branch:hover {
    transform: scale(1.05);
  }
  
  .branch-logo {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .branch h2 {
    font-size: 16px;
    margin: 10px 0 5px;
  }
  
  .menu-button {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  /* ✅ Description section */
  .branch-descriptions {
    background-color: #1e1e1e;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .branch-info {
    background-color: #2c2c2c;
    border-radius: 15px;
    display: flex;
    gap: 30px;
    padding: 25px;
    width: 80%;
    max-width: 900px;
    align-items: center;
    text-align: left;
  }
  
  .description-logo {
    width: 120px;
  }
  
  .branch-text h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .branch-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
  }
  
.karaoke-rooms {
    background-color: #1f1a1a;
    padding: 60px 40px;
    border-radius: 40px;
    margin: 60px auto;
    max-width: 1300px;
}

.karaoke-header {
    text-align: center;
    margin-bottom: 50px;
}

.karaoke-logo {
    width: 160px;
    height: auto;
    margin-bottom: 15px;
}

.karaoke-header h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.karaoke-images {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.karaoke-images img {
    width: 100%;
    max-width: 370px;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}
/* Restaurant Section */
.restaurant-rooms {
    background-color: #1f1a1a;
    padding: 60px 40px;
    border-radius: 40px;
    margin: 60px auto;
    max-width: 1300px;
  }
  
  .restaurant-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .restaurant-header h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1.5px;
  }
  
  .restaurant-images {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .restaurant-images img {
    width: 100%;
    max-width: 370px;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
  }
/* Cards Section */
.cards-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 60px 0;
    background-color: #1e1e1e;
    border-radius: 20px;
    margin: 60px auto;
    width: 90%;
    max-width: 1200px;
  }
  
  .card-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    flex: 1;
    background-color: #2c2c2c;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  .card-box:hover {
    transform: translateY(-10px); /* Блокийг hover хийхэд жаахан дээшээ хөдөлгөх */
  }
  
  .card-image {
    width: 100%;
    height: 300px; /* Зургийн урт, өргөнийг ижил хэмжээтэй болгох */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Зургийг бүрэн багтаах */
  }
  
  .card-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
  }
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar ul {
      flex-direction: column;
      gap: 15px;
      align-items: flex-start;
      background-color: rgba(0, 0, 0, 0.95);
      width: 100%;
      padding: 10px 20px;
    }
  
    .branches,
    .cards-info,
    .karaoke-images {
      flex-direction: column;
      align-items: center;
    }
  
    .branch-info {
      flex-direction: column;
      text-align: center;
    }
  
    .card-image {
      width: 100%;
      max-width: 300px;
    }
  
    .karaoke-images {
      overflow-x: scroll;
      gap: 20px;
      padding: 10px;
    }
  
    .karaoke-images img {
      max-width: 80%;
    }
    .vip-image {
      max-width: 600px; /* эсвэл хүссэн хэмжээгээ өг */
      width: 100%;
      border-radius: 16px;
  }
  .slider-section {
    width: 100%;
    padding: 40px 0;
    background-color: #1a1a1a;
  }
  
  .swiper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  .swiper-slide {
    width: 100%;
    max-width: 360px;       /* Зурагнуудын өргөнийг ижил болгоно */
    height: 240px;          /* Зурагнуудын өндөр тогтооно */
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    flex-shrink: 0;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Зураг сунгахгүйгээр багтаах */
    border-radius: 10px;
  }
  .FINAL-video {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }