:root {
  --primary-color: #a1c461;
  --secondary-color: #228B22;
  --text-color: #333;
  --background-color: #fff;
  --accent-color: #f8f8f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



.navbar .nav-links a {
  transition: color 0.3s ease;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  position: relative;
}

.nav-links a.active {
  border-bottom: 2px solid var(--primary-color);
}

.logo {
  width: auto;
}

.logo img {
  height: 90px;
  object-fit: contain;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.hero-logo {
  width: 600px;
  max-width: 80%;
  height: auto;
  margin-bottom: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  left: 20px;
  z-index: 1000;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-color);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: var(--text-color);
  transition: all 0.3s ease;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 100px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Buttons */
.order-btn,
.cta-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  width: auto;
}

.order-btn:hover,
.cta-button:hover {
  background-color: var(--secondary-color);
}

.cta-button {
  font-size: 1.2rem;
  padding: 1rem 2rem;
}

/* Menu Section */
#menu {
  scroll-margin-top: 120px;
}

.menu-section {
  padding: 4rem 2rem;
  background-color: var(--accent-color);
}

.menu-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.menu-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.menu-item h3 {
  padding: 1rem;
  color: var(--text-color);
}

.menu-item p {
  padding: 0 1rem;
  color: #666;
}

.menu-item .price {
  display: block;
  padding: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Deals Section */
.deals {
  padding: 4rem 2rem;
  background-color: white;
}

.deal-card {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background-color: var(--accent-color);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.deal-card h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.deal-card .price {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-color);
  margin: 1rem 0;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
  text-align: center;
  width: 100%;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-section a {
  color: white;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  filter: invert(1);
}

.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
}

.social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-links a:hover {
  filter:
    invert(77%) sepia(71%) saturate(1000%) hue-rotate(240deg) brightness(97%) contrast(92%);
}

.footer-terms {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-terms a {
  color: white;
}

.footer-terms a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
}

/* Centered Box */
.centered-box {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: fit-content;
  color: #000000;
  margin: 20px auto;
  height: fit-content;
}

.delivery-item {
  height: 50px;
  margin: 0 10px;
}

.delivery-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}


.delivery-links a {
  display: inline-block;
}

.delivery-links img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  padding: 6px;
  display: block;
}

.centered-box h2 {
  margin-bottom: 20px;
}

.centered-box a img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  padding: 6px;
  margin: 0 10px;
  display: inline-block;
  vertical-align: middle;
}

.wolt {
  width: 107px !important;
}

/* Google Maps & Reviews */
.google-maps,
.google-reviews {
  text-align: center;
  background-color: var(--accent-color);
}

.google-maps {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.google-maps iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  display: block;
  border: 0;
}

.google-reviews iframe {
  margin: 10px 0;
  width: 100%;
  height: 450px;
  border-radius: 10px;
  display: block;
  border: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent label {
  color: white;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent p {
  margin: 0 0 15px;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.cookie-btn.accept {
  background-color: var(--primary-color);
  color: white;
}

.cookie-btn.accept:hover {
  background-color: var(--secondary-color);
}

.cookie-btn.decline {
  background-color: #555;
  color: white;
}

.cookie-btn.decline:hover {
  background-color: #777;
}

.cookie-options {
  margin-bottom: 15px;
  color: white;
  font-size: 0.95rem;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-btn.customize {
  background-color: var(--primary-color);
  color: white;
}

.cookie-btn.customize:hover {
  background-color: var(--secondary-color);
}

/* Carousel & Menu Wrapper */
.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  gap: 1rem;
}

.menu-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 1920px;
}

.arrow {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: #a1c461;
}

.arrow:hover {
  transform: scale(1.2);
}

.menu-image-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

.menu-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 95%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Terms Page */
.terms-page {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  padding: 100px 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.terms-page h1,
.terms-page h2 {
  text-align: center;
  margin-bottom: 20px;
}

.company-info {
  margin: 30px auto 0;
  max-width: 700px;
  text-align: center;
  margin-top: 70px;
}

.section {
  margin-bottom: 40px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.section p {
  margin-bottom: 15px;
  text-align: justify;
}

.section ol {
  margin: 15px 0 15px 40px;
  text-align: left;
}

.section ol li {
  margin-bottom: 10px;
}

.effective-date {
  text-align: center;
  margin: 40px 0;
  font-style: italic;
}

@media (max-width: 480px) {
  .cookie-consent {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent p {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .logo img {
    height: 35px;
  }

  .hero-logo {
    width: 140px;
  }

  .navbar {
    height: 60px;
  }

  .hero {
    padding-top: 60px;
  }

  .terms-page {
    padding-top: 60px;
  }

  .terms-header h1 {
    font-size: 1.8rem;
  }

  .terms-section,
  .company-info {
    padding: 0 10px;
  }
}


@media (max-width: 768px) {

  .navbar {
    height: 70px;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo img {
    height: 40px;
  }

  .hero-logo {
    width: 180px;
  }

  .mobile-menu-btn {
    display: block;
    right: 20px;
    left: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -30%;
    width: 30%;
    max-width: 250px;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 2px 15px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    gap: 2px;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    color: var(--primary-color);
    
  }

  .nav-links a:hover {
    color: var(--secondary-color);
    
  }

  .order-btn {
    font-size: 0.85rem;
    padding: 0.5rem 0;
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    text-align: center;
    border-radius: 25px;
  }

  .mobile-menu-btn.active .hamburger {
    background: transparent;
  }

  .mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
  }

  .mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .centered-box a img {
    width: 50px;
    height: 50px;
    padding: 2px;
    margin: 0 5px;
  }

  .wolt {
    width: 54px !important;
  }

  .menu-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 769px) {
  .menu-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .navbar.transparent {
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar.transparent .nav-links a {
    color: white;
  }

  .navbar.transparent .nav-links a:hover {
    color: var(--primary-color);
  }
}

@media (min-width: 598px) and (max-width: 920px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    row-gap: 0.5rem;
    padding: 0 10px;
  }

  .footer-section {
    font-size: 0.9rem;
  }

  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .social-links a {
    height: 30px;
    width: 30px;
  }

  .social-links {
    gap: 0.5rem;
  }
}

@media (max-width: 1919px) {
  .logo img {
    height: 75px;
  }

  .hero-logo {
    width: 500px;
  }
}