/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header Styles */
header {
  background-color: #a4b829;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 24px;
  font-weight: 500;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: white;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #fff;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./images/background_img.png");
  background-size: cover;
  background-position: center;
  height: 420px;
  display: flex;
  align-items: center;
  color: white;
  padding: 0 50px;
}

.hero-content {
  max-width: 600px;
}

.hero-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 25px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn {
  background-color: #a4b829;
  color: white;
  border: none;
}

.btn:hover {
  background-color: #8fa521;
  transform: translateY(-2px);
}

.btn-light {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Main Content Section */
.main-content {
  display: flex;
  margin: 10px;
  overflow: hidden;
}

/* Left Column: Menu Section */
.left-column {
  flex: 3;
  padding-right: 20px;
  background-color: #f9f9f9;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap; /* Allow tabs to wrap to new line */
  gap: 8px; /* Add space between tabs */
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.tab-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  color: #666;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap; /* Prevent text wrapping within buttons */
}

.tab-btn.active {
  color: #a4b829;
  font-weight: bold;
}

.section-title {
  color: #a4b829;
  font-size: 28px;
  margin: 30px 0;
}

.category-title {
  background-color: #e8f5e9;
  color: #4caf50;
  padding: 10px 15px;
  margin: 20px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  position: relative;
}
.category-title:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M416 0C400 0 288 32 288 176l0 112c0 35.3 28.7 64 64 64l32 0 0 128c0 17.7 14.3 32 32 32s32-14.3 32-32l0-128 0-112 0-208c0-17.7-14.3-32-32-32zM64 16C64 7.8 57.9 1 49.7 .1S34.2 4.6 32.4 12.5L2.1 148.8C.7 155.1 0 161.5 0 167.9c0 45.9 35.1 83.6 80 87.7L80 480c0 17.7 14.3 32 32 32s32-14.3 32-32l0-224.4c44.9-4.1 80-41.8 80-87.7c0-6.4-.7-12.8-2.1-19.1L191.6 12.5c-1.8-8-9.3-13.3-17.4-12.4S160 7.8 160 16l0 134.2c0 5.4-4.4 9.8-9.8 9.8c-5.1 0-9.3-3.9-9.8-9L127.9 14.6C127.2 6.3 120.3 0 112 0s-15.2 6.3-15.9 14.6L83.7 151c-.5 5.1-4.7 9-9.8 9c-5.4 0-9.8-4.4-9.8-9.8L64 16zm48.3 152l-.3 0-.3 0 .3-.7 .3 .7z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  opacity: 0.7;
}

.category-title::after {
  content: "€";
  position: absolute;
  right: 15px;
  font-size: 18px;
  color: #4caf50;
}

/* Add this to your CSS */
.item-name img {
  vertical-align: middle;
  margin-left: 5px;
}

.subcategory-title {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0;
  color: #a4b829;
}

.menu-category {
  margin-bottom: 0px;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  border-bottom: 1px solid #eee;
}

.item-name {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.item-name::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #d7e486; /* Default color */
  border-radius: 50%;
  margin-right: 10px;
  transition: background-color 0.3s; /* Smooth color transition */
}

/* Add this to your CSS */
.menu-item.selected .item-name::before {
  background-color: #ff6b6b; /* Red color for selected items */
}

.item-name b {
  font-weight: bold;
}

.item-price {
  font-weight: 500;
  font-size: 14px;
}

/* Right Column: Contact and Hot Sections */
.right-column {
  flex: 1;
  overflow-y: auto;
}

/* Contact Section */
.contact-section {
  background-color: #e74c3c;
  color: white;
  padding: 20px;
  margin-bottom: 20px;
}

.contact-content {
  text-align: center;
}

.contact-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-item i {
  margin-right: 10px;
  font-size: 18px;
}

/* Update hot-section styles */
.hot-section {
  background-color: #eeac42;
  color: rgb(255, 255, 255);
  padding: 20px;
  margin-top: 20px; /* Add margin to separate from contact section */
}

.hot-content {
  text-align: left; /* Change from center to left alignment */
}

.hot-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.hot-content h3 {
  font-size: 18px;
  margin: 20px 0 10px;
}

.hot-content p {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Footer */
footer {
  background-color: #a4b829;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .main-content {
    flex-direction: column;
  }

  .left-column .right-column {
    width: 100%;
    padding-right: 0;
  }

  .right-column {
    margin-top: 20px;
  }
}

@media (max-width: 992px) {
  .tab-btn {
    padding: 6px 12px;
    font-size: 14px;
  }

  .menu-tabs {
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 30px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .menu-tabs {
    gap: 4px;
  }

  .tab-btn {
    padding: 4px 10px;
    font-size: 12px;
  }

  .category-title {
    font-size: 16px;
  }

  .item-name,
  .item-price {
    font-size: 12px;
  }

  .contact-content h2,
  .hot-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  header .container {
    flex-direction: column;
  }

  nav ul {
    margin-top: 15px;
  }

  nav ul li {
    margin-left: 10px;
  }

  .tab-btn {
    padding: 3px 8px;
    font-size: 10px;
  }

  .section-title {
    font-size: 24px;
    margin: 20px 0;
  }

  .category-title {
    font-size: 14px;
  }

  .item-name,
  .item-price {
    font-size: 11px;
  }
}
/* Category Image Styles */
.category-image {
  text-align: center;
  margin: auto;
}

.category-image img {
  max-width: 100px;
  height: auto;
}
.category-image[data-shape="circle"] img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.category-image[data-shape="oval"] img {
  border-radius: 50px;
  width: 120px;
  height: 80px;
  object-fit: cover;
}
sup,
sub {
  font-size: 8px;
  vertical-align: baseline;
  margin-left: 2px;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}
