@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Rubik:wght@300;400;500;600;700&family=Podkova:wght@400;500;600;700&family=Bayon&family=Roboto:wght@300;400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 20px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 542px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  overflow: hidden;
  opacity: 1;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

.hero-content {
  position: absolute;
  top: 125px;
  left: 7px;
  max-width: 95%;
  width: 95%;
  z-index: 3;
}

.hero-title {
  font-family: "Bayon", Arial, sans-serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-align: left;
  align-self: flex-start;
  line-height: 1;
}

.cta-button {
  background: #d18931;
  color: white;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 12px 23px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  z-index: 3;
}

.cta-button:hover {
  background-color: #b8860b;
}

/* Button Link Styles - Ensure buttons work as links */
.cta-button,
.contact-button,
.inquire-button,
.cta-contact-button {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  line-height: 1;
}

/* Ensure hover states work for link buttons */
a.cta-button:hover,
a.contact-button:hover,
a.inquire-button:hover,
a.cta-contact-button:hover {
  text-decoration: none;
}

/* Section Styles */
.menu-section {
  background: #181919;
  height: 85px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
}

.story-section {
  background: #d18931;
  height: 85px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease;
}

.catering-section {
  background: #92140c;
  height: 85px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
}

/* Scroll Animation Classes */
.menu-section.scroll-visible,
.story-section.scroll-visible,
.catering-section.scroll-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Section content micro-animations */
.section-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.menu-section.scroll-visible .section-content,
.story-section.scroll-visible .section-content,
.catering-section.scroll-visible .section-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.section-content {
  text-align: left;
  max-width: 800px;
  margin: 0;
  padding: 0 0 19px 19px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  position: relative;
}

.section-content::after {
  content: "→";
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.section-label {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: underline;
  text-decoration-color: white;
  text-underline-offset: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin: 0;
}

.section-title:hover {
  opacity: 0.8;
}

/* Section Link Styles */
.section-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.section-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.section-link:hover .section-title {
  opacity: 0.8;
  transform: translateX(5px);
}

.section-link:hover .section-content::after {
  transform: translateY(-50%) translateX(5px);
}

/* About Section */
.about-section {
  background-color: #2f2f2f;
  padding: 30px 20px;
  padding-bottom: 0px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
}

.about-section.scroll-visible {
  opacity: 1;
  transform: translateX(0);
}

/* About section element animations */
.about-title,
.about-subtitle,
.about-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.about-section.scroll-visible .about-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.about-section.scroll-visible .about-subtitle {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.about-section.scroll-visible .about-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.about-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-family: "Rubik", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2px;
  letter-spacing: 1px;
  text-align: center;
}

.about-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ffffff;
}

.about-text {
  padding: 20px;
  border: 2px dotted #d18931;
  background-color: #484848;
}

.about-text p {
  font-family: "Podkova", serif;
  font-size: 22px;
  line-height: 1.2;
  opacity: 0.9;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.contact-button {
  background: #d18931;
  color: white;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 12px 24px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 12px;
}

.contact-button:hover {
  background-color: #b8860b;
}

/* Catering Info Section */
.catering-info-section {
  background-color: #2f2f2f;
  padding: 30px 20px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease;
}

.catering-info-section.scroll-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Catering info element animations */
.catering-image-container,
.catering-text-section {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.7s ease;
}

.catering-info-section.scroll-visible .catering-image-container {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.catering-info-section.scroll-visible .catering-text-section {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.catering-info-content {
  max-width: 600px;
  margin: 0 auto;
}

.catering-image-container {
  border: 2px dotted #d18931;
  border-bottom: none;
  overflow: hidden;
  padding: 20px;
}

.catering-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.catering-text-section {
  border: 2px dotted #d18931;
  border-top: none;
  padding-bottom: 20px;
  text-align: center;
}

.catering-info-title {
  font-family: "Rubik", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #d18931;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.catering-description {
  font-family: "Podkova", serif;
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
  font-weight: 400;
}

.inquire-button {
  background: #d18931;
  color: white;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 12px 24px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.inquire-button:hover {
  background-color: #b8860b;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #2f2f2f;
  padding: 40px 20px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease;
}

.testimonial-section.scroll-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Individual testimonial element animations */
.testimonial-title,
.testimonial-subtitle,
.testimonial-container,
.testimonial-navigation {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.testimonial-section.scroll-visible .testimonial-title,
.testimonial-section.scroll-visible .testimonial-subtitle,
.testimonial-section.scroll-visible .testimonial-container,
.testimonial-section.scroll-visible .testimonial-navigation {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-title {
  font-family: "Rubik", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.testimonial-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: white;
  margin-bottom: 30px;
}

.testimonial-container {
  display: flex;
  gap: 0;
  align-items: stretch;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.testimonial-profile {
  flex: 0 0 280px;
  background-color: #d18931;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid white;
}

.testimonial-info {
  text-align: left;
  width: 100%;
  align-self: flex-start;
}

.testimonial-info p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: white;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 500;
}

.testimonial-recent {
  color: white !important;
  font-weight: bold;
  font-style: italic;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 5px;
}

.testimonial-quote {
  flex: 1;
  background-color: white;
  padding: 30px;
  display: flex;
  align-items: center;
}

.testimonial-quote p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-weight: 400;
}

/* Testimonial Navigation Dots */
.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: #d18931;
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background-color: rgba(209, 137, 49, 0.7);
  transform: scale(1.1);
}

/* Responsive dots */
@media (max-width: 480px) {
  .testimonial-dot {
    width: 10px;
    height: 10px;
  }

  .testimonial-navigation {
    gap: 10px;
    margin-top: 20px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .testimonial-dot {
    width: 11px;
    height: 11px;
  }

  .testimonial-navigation {
    gap: 11px;
  }
}

@media (min-width: 1025px) {
  .testimonial-dot {
    width: 14px;
    height: 14px;
  }

  .testimonial-navigation {
    gap: 15px;
    margin-top: 30px;
  }
} /* Responsive Design - Testimonial Section Only */

/* Mobile devices (up to 480px) */
@media (max-width: 480px) {
  .testimonial-section {
    padding: 30px 15px;
  }

  .testimonial-title {
    font-size: 28px;
  }

  .testimonial-subtitle {
    font-size: 20px;
  }

  .testimonial-container {
    flex-direction: row;
    gap: 0;
  }

  .testimonial-profile {
    flex: 0 0 160px;
    padding: 22px 15px;
    align-items: center;
    text-align: center;
  }

  .testimonial-image {
    width: 85px;
    height: 85px;
    margin-bottom: 15px;
  }

  .testimonial-info {
    text-align: center;
  }

  .testimonial-info p {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .testimonial-recent {
    font-size: 12px;
    padding: 4px 8px;
  }

  .testimonial-quote {
    padding: 22px;
  }

  .testimonial-quote p {
    font-size: 13px;
  }
}

/* Tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .testimonial-section {
    padding: 35px 20px;
  }

  .testimonial-title {
    font-size: 32px;
  }

  .testimonial-subtitle {
    font-size: 22px;
  }

  .testimonial-profile {
    flex: 0 0 200px;
    padding: 25px 20px;
  }

  .testimonial-image {
    width: 90px;
    height: 90px;
  }

  .testimonial-info p {
    font-size: 13px;
  }

  .testimonial-quote {
    padding: 25px;
  }

  .testimonial-quote p {
    font-size: 13px;
  }
}

/* Small Desktop (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonial-content {
    max-width: 850px;
  }

  .testimonial-title {
    font-size: 34px;
  }

  .testimonial-subtitle {
    font-size: 23px;
  }

  .testimonial-profile {
    flex: 0 0 220px;
    padding: 30px 25px;
  }

  .testimonial-image {
    width: 110px;
    height: 110px;
  }

  .testimonial-info p {
    font-size: 14px;
  }

  .testimonial-quote {
    padding: 32px;
  }

  .testimonial-quote p {
    font-size: 16px;
  }
}

/* Large Desktop (1025px to 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .testimonial-section {
    padding: 100px 60px;
  }

  .testimonial-content {
    max-width: 1300px;
  }

  .testimonial-title {
    font-size: 55px;
    margin-bottom: 15px;
  }

  .testimonial-subtitle {
    font-size: 35px;
    margin-bottom: 50px;
  }

  .testimonial-profile {
    flex: 0 0 350px;
    padding: 40px 35px;
  }

  .testimonial-image {
    width: 180px;
    height: 180px;
    margin-bottom: 25px;
  }

  .testimonial-info p {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .testimonial-quote {
    padding: 50px;
  }

  .testimonial-quote p {
    font-size: 24px;
    line-height: 1.6;
  }
}

/* Extra Large Desktop (1441px to 1919px) */
@media (min-width: 1441px) and (max-width: 1919px) {
  .testimonial-section {
    padding: 100px 60px;
  }

  .testimonial-content {
    max-width: 1400px;
  }

  .testimonial-title {
    font-size: 50px;
    margin-bottom: 15px;
  }

  .testimonial-subtitle {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .testimonial-profile {
    flex: 0 0 300px;
    padding: 35px 30px;
  }

  .testimonial-image {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

  .testimonial-info p {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .testimonial-quote {
    padding: 45px;
  }

  .testimonial-quote p {
    font-size: 20px;
    line-height: 1.7;
  }
}

/* Ultra-wide screens (1920px and up) */
@media (min-width: 1920px) {
  .testimonial-content {
    max-width: 1800px;
  }

  .testimonial-title {
    font-size: 60px;
  }

  .testimonial-subtitle {
    font-size: 36px;
  }

  .testimonial-profile {
    flex: 0 0 400px;
    padding: 50px 40px;
  }

  .testimonial-image {
    width: 200px;
    height: 200px;
  }

  .testimonial-info p {
    font-size: 22px;
  }

  .testimonial-quote {
    padding: 60px;
  }

  .testimonial-quote p {
    font-size: 26px;
  }
}

/* Call to Action Section */
.cta-section {
  background-color: #484848;
  padding: 60px 20px;
  text-align: center;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.9s ease;
}

.cta-section.scroll-visible {
  opacity: 1;
  transform: translateX(0);
}

/* CTA section element animations */
.cta-title,
.cta-contact-button {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.cta-section.scroll-visible .cta-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.cta-section.scroll-visible .cta-contact-button {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .menu-section,
  .story-section,
  .catering-section,
  .about-section,
  .catering-info-section,
  .testimonial-section,
  .cta-section,
  .section-content,
  .testimonial-title,
  .testimonial-subtitle,
  .testimonial-container,
  .testimonial-navigation,
  .about-title,
  .about-subtitle,
  .about-text,
  .catering-image-container,
  .catering-text-section,
  .cta-title,
  .cta-contact-button {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }

  .hero {
    animation: none !important;
  }
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Podkova", serif;
  font-size: 28px;
  font-weight: 400;
  color: white;
  margin-bottom: 30px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.cta-bold {
  font-weight: 700;
}

.cta-contact-button {
  background-color: #92140c;
  color: white;
  border: 2px solid white;
  border-radius: 0;
  padding: 15px 40px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cta-contact-button:hover {
  background-color: #7a1109;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(146, 20, 12, 0.4);
}

/* Responsive CTA Section */
@media (max-width: 480px) {
  .cta-section {
    padding: 40px 15px;
  }

  .cta-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .cta-contact-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .cta-section {
    padding: 50px 20px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-contact-button {
    padding: 14px 35px;
    font-size: 15px;
  }
}

@media (min-width: 1025px) {
  .cta-section {
    padding: 80px 40px;
  }

  .cta-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .cta-contact-button {
    padding: 18px 50px;
    font-size: 18px;
  }
}

/* Responsive Menu Section */
@media (max-width: 480px) {
  .menu-section {
    height: 70px;
  }

  .section-content {
    padding: 0 0 15px 15px;
  }

  .section-content::after {
    right: 15px;
    font-size: 20px;
  }

  .section-label {
    font-size: 14px;
    margin-top: 8px;
  }

  .section-title {
    font-size: 18px;
    letter-spacing: 1.5px;
    text-underline-offset: 8px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .menu-section {
    height: 75px;
  }

  .section-content {
    padding: 0 0 17px 17px;
  }

  .section-content::after {
    right: 17px;
    font-size: 22px;
  }

  .section-label {
    font-size: 15px;
    margin-top: 9px;
  }

  .section-title {
    font-size: 19px;
    letter-spacing: 1.8px;
    text-underline-offset: 9px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .menu-section {
    height: 80px;
  }

  .section-content {
    padding: 0 0 18px 18px;
  }

  .section-content::after {
    display: none;
  }

  .section-label {
    font-size: 15px;
  }

  .section-title {
    font-size: 19px;
  }
}

@media (min-width: 1025px) {
  .menu-section {
    height: 100px;
  }

  .section-content {
    padding: 0 0 25px 25px;
  }

  .section-content::after {
    display: none;
  }

  .section-label {
    font-size: 20px;
    margin-top: 12px;
  }

  .section-title {
    font-size: 24px;
    letter-spacing: 2.5px;
    text-underline-offset: 12px;
  }
}

@media (min-width: 1920px) {
  .menu-section {
    height: 120px;
  }

  .section-content {
    padding: 0 0 30px 30px;
  }

  .section-content::after {
    display: none;
  }

  .section-label {
    font-size: 24px;
    margin-top: 15px;
  }

  .section-title {
    font-size: 28px;
    letter-spacing: 3px;
    text-underline-offset: 15px;
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 400px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0);
}

.close-menu {
  position: absolute;
  top: -80px;
  right: 20px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  font-weight: 300;
  transition: opacity 0.3s ease;
}

.close-menu:hover {
  opacity: 0.7;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  margin: 30px 0;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-list li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu-list a {
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: block;
  padding: 15px 20px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.mobile-menu-list a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(209, 137, 49, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.mobile-menu-list a:hover {
  color: #d18931;
  transform: translateY(-3px) scale(1.05);
  background-color: rgba(209, 137, 49, 0.1);
  box-shadow: 0 8px 20px rgba(209, 137, 49, 0.3);
}

.mobile-menu-list a:active {
  transform: translateY(-1px) scale(1.02);
  background-color: rgba(209, 137, 49, 0.2);
}

.mobile-menu-list a:hover::before {
  left: 100%;
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive menu */
@media (max-width: 768px) {
  .mobile-menu-list a {
    font-size: 20px;
  }

  .mobile-menu-list li {
    margin: 30px 0;
  }
}

@media (min-width: 1025px) {
  .mobile-menu-list a {
    font-size: 28px;
  }

  .mobile-menu-list li {
    margin: 50px 0;
  }
}
