/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Header styling */
.header {
  background-color: #006a4d;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.header img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  margin-right: 15px;
}

.header h1 {
  font-size: 1.8rem;
  margin: 0;
  display: flex;
  align-items: center;
}

/* Container for main content */
.container {
  max-width: 600px;
  margin: 30px auto;
  padding: 0 15px;
}

/* Section styling */
.language-section,
.form-section,
.thankyou-section {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.language-section h2,
.form-section h2,
.thankyou-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Button styling */
.btn {
  font-weight: 500;
}

.btn-primary {
  background-color: #006a4d;
  border-color: #006a4d;
}

.btn-primary:hover {
  background-color: #005240;
  border-color: #005240;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

/* Form control styling */
.form-group label {
  font-weight: 500;
}

.form-control {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  transition: border 0.3s ease;
}

.form-control:focus {
  border-color: #006a4d;
  box-shadow: 0 0 0 2px rgba(0, 106, 77, 0.1);
}

/* Carousel image styling */
.carousel-inner img {
  border-radius: 8px;
  max-height: 500px;
  object-fit: contain;
  width: 100%;
}

/* Menu categories and items styling */
.menu-category {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.category-name {
  color: #006a4d;
  font-weight: 600;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
}

.category-name:hover {
  background-color: #f5f5f5;
}

.category-name::after {
  content: "▼";
  font-size: 0.8rem;
  color: #006a4d;
  transition: transform 0.3s ease;
}

.category-name.active::after {
  transform: rotate(180deg);
}

.menu-items {
  padding: 10px 0;
  display: none; /* Initially hidden */
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.menu-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 15px;
}

.menu-item p {
  font-weight: 500;
  margin: 0;
  flex-grow: 1;
}

/* Quantity Control Buttons */
.quantity-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-minus, .btn-plus {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f7f7f7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-minus:hover, .btn-plus:hover {
  background-color: #e9e9e9;
}

.quantity-input {
  width: 50px;
  text-align: center;
}

@media (max-width: 576px) {
  .quantity-control {
    gap: 3px;
  }

  .btn-minus, .btn-plus {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .quantity-input {
    width: 40px;
  }
}