/* Base Styles */
body {
    font-family: "Poppins", sans-serif;
}
/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .nav__logo img {
        width: 60px;
    }

    .nav__links {
        display: none; /* Hide links on small screens */
    }

    .menu-icon {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .language-toggle {
        width: 120px;
        height: 40px;
    }

    .language-btn {
        font-size: 14px;
        padding: 8px;
    }
}
@media (min-width: 320px) and (max-width: 600px) {
  header{
    padding-left: 10px;
  }
  nav {
      padding: 0.5rem; /* Reduced padding for smaller screens */
      flex-direction: row; /* Keep items in a row */
      align-items: center; /* Center align items vertically */
      justify-content: space-between; /* Space between logo and links */
  }
  .nav__logo{
    margin-right: auto;
  }
  .nav__logo img {
      width: 50px; /* Smaller logo size for mobile */
  }

  .nav__links {
      display: none; /* Hide links on small screens */
  }

  .menu-icon {
      display: block; /* Show menu icon */
      font-size: 1.8rem; /* Larger icon */
      cursor: pointer;
  }

  .language-toggle {
      width: 130px; /* Adjusted width for mobile */
      height: 40px; /* Adjusted height for better alignment */
  }

  .language-btn {
      font-size: 12px; /* Slightly smaller font size */
      padding: 8px; /* Adjusted padding for buttons */
  }
}



/* Sidebar styles */
.sidebar {
  position: fixed;
  right: -250px; /* Initially hidden on the right */
  top: 0;
  width: 250px;
  height: 100%;
  background-color: rgba(0, 128, 0, 0.6); /* Green with transparency */
  backdrop-filter: blur(10px); /* Applies blur effect */
  padding: 2rem 1rem;
  transition: right 0.3s ease;
  z-index: 10;
}


.sidebar.active {
  right: 0; /* Show sidebar when active */
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 1.5rem;
}

.sidebar a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.close-sidebar {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  margin-bottom: 2rem;
}

.menu-icon {
  display: none; /* Initially hidden */
}

@media (max-width: 768px) {
  .menu-icon {
      display: block; /* Show menu icon for mobile view */
  }
}
/* Higher specificity */
div.title {
    text-align: center;
    padding: 40px 0 20px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.title h1.venue {
    font-weight: 600;
    margin: 0;
}


/* Cart Styles */
.cart-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th,
.cart-table td {
    padding: 12px;
    text-align: center;
    vertical-align: middle;
}

.cart-table thead {
    background-color: #28a745;
    color: white;
}

.cart-table th {
    font-weight: 600;
}

.cart-table td {
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.item-icon {
    font-size: 20px;
    text-align: left;
}

.counter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}

.counter a {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.counter a:hover {
    background-color: #218838;
}

.counter input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: none;
    background: none;
    pointer-events: none; /* Disable interactions */
    appearance: none; /* Remove browser styling */
}

.item-amount {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.total-amount {
    text-align: right;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

.book-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background-color: #218838;
}

/* Responsive Styles */

/* Small Mobile Devices (320px to 479px) */
@media screen and (max-width: 479px) {
    .cart-container {
        padding: 10px;
        width: 100%;
    }

    .cart-table th,
    .cart-table td {
        padding: 8px;
        font-size: 14px;
    }

    .counter a {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }


    .total-amount {
        font-size: 16px;
    }

    .book-btn {
        font-size: 16px;
        padding: 12px;
    }
    .counter input {
        width: 40px;
    }
}

/* Mobile Devices (480px to 600px) */
@media screen and (min-width: 480px) and (max-width: 600px) {
    .cart-container {
        padding: 15px;
    }

    .cart-table th,
    .cart-table td {
        padding: 10px;
    }

    .counter a {
        width: 28px;
        height: 28px;
    }

    .book-btn {
        font-size: 16px;
        padding: 14px;
    }
    .counter input {
        width: 40px;
    }
}

/* Tablets (601px to 1023px) */
@media screen and (min-width: 601px) and (max-width: 1023px) {
    .cart-container {
        padding: 20px;
    }

    .cart-table th,
    .cart-table td {
        padding: 12px;
    }

    .book-btn {
        font-size: 17px;
        padding: 15px;
    }
}

/* Large Screens (1024px and above) */
@media screen and (min-width: 1024px) {
    .cart-container {
        max-width: 1000px;
        padding: 30px;
    }

    .cart-table th,
    .cart-table td {
        padding: 15px;
    }

    .book-btn {
        font-size: 20px;
        padding: 16px;
    }
}
