* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  border: none;
}
:root {
  --rock-spray: #c53e07;
  --paco: #33150b;
  --vanilla: #d3c2ac;
  --roti: #c7a34c;
  --pueblo: #76280e;
  --santa-fe: #bd764e;
}
@font-face {
  font-family: "Title";
  src: url(/assets/fonts/Outfit-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Texte";
  src: url(/assets/fonts/Poppins-Regular.ttf);
}
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  background: var(--vanilla);
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--pueblo);
  padding: 1rem 2.2rem;
  border-bottom: 2px solid var(--vanilla);
  box-shadow: 0 2px 10px var(--paco);

  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
.logo {
  font-family: "Title";
  font-style: italic;
  color: beige;
  font-size: 1.2rem;
  text-decoration: underline;
  cursor: pointer;
}
.logo b {
  font-size: 2rem;
  transition: all 0.3s ease;
}
.logo b:hover {
  color: var(--paco);
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: var(--vanilla);
  font-size: 1.2rem;
  font-family: "Texte";
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: var(--paco);
}
.hero {
  width: 100%;
  min-height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/assets/images/pexels-vikeph-17312399.jpg) center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 6rem;
  color: white;
}
.hero h1 {
  font-size: 4rem;
  font-family: "Title";
  margin-bottom: 1rem;
}
.hero p {
  font-family: "Texte";
  text-align: center;
  margin-bottom: 2rem;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.btn a {
  margin: 1rem;
  padding: 0.8rem 1.3rem;
  background: transparent;
  border: 2px solid var(--vanilla);
  font-family: "Texte";
  font-weight: 600;
}
.btn a:first-child {
  background: var(--pueblo);
  color: var(--vanilla);
  transition: all 0.3s ease;
}
.btn a:first-child:hover {
  background: var(--vanilla);
  color: var(--pueblo);
  border: 2px solid var(--pueblo);
}
.btn a:last-child {
  background-color: rgba(0, 0, 0, 0.436);
  color: var(--vanilla);
  transition: all 0.3s ease;
}
.btn a:last-child:hover {
  background: var(--vanilla);
  color: var(--paco);
}
.infos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 2rem;
}
.infos img {
  max-width: 60%;
  flex-basis: 1;
  object-fit: cover;
}
.info-text {
  flex: 1;
  min-width: 350px;
}
.info-text h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-family: "Title";
  margin-bottom: 1.3rem;
}
.info-text p {
  font-family: "Texte";
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 1.4rem;
}
.info-text a {
  padding: 0.8rem 1.3rem;
  background: transparent;
  border: 2px solid var(--vanilla);
  font-family: "Texte";
  font-weight: 600;
  background: var(--paco);
  color: var(--vanilla);
  border: 2px solid var(--rock-spray);
  transition: all 0.3s ease;
}
.info-text a:hover {
  background: var(--vanilla);
  color: var(--paco);
}
.menu-card {
  width: 100%;
  height: auto;
  padding: 0 2rem;
  background: whitesmoke;
}
.menu-card h2 {
  text-align: center;
  font-family: "Title";
  font-size: 2rem;
  padding: 3rem 0;
}
.card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.menu {
  width: 100%;
  padding: 0.5rem;
  background: whitesmoke;
  border: 1px solid var(--santa-fe);
  border-radius: 0 0 24px 0;
  transition: all 0.3s ease;
}
.menu:hover {
  transform: scale(1.005);
  box-shadow: 0 0 10px var(--paco);
}
.menu img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger menu styles */
.hamburger {
  display: none; /* Hidden by default on desktop */
  flex-direction: column;
  cursor: pointer;
  z-index: 1001; /* Above sticky header */
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: var(--vanilla);
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Media query for screens up to 800px */
@media (max-width: 800px) {
      .nav-links {
          position: fixed;
          right: -100%; /* Initially off-screen */
          top: 0;
          width: 300px; /* Reduced width */
          height: 100%;
          background-color: var(--pueblo);
          flex-direction: column;
          justify-content: center;
          align-items: center;
          transition: right 0.3s ease-in-out;
          z-index: 1000;
          box-shadow: -5px 0 15px rgba(0,0,0,0.2); /* Added shadow */
      }
  .nav-links.active {
    right: 0; /* Slide in */
  }

  .nav-links li {
    margin: 1.5rem 0;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .hamburger {
    display: flex; /* Show hamburger on mobile */
  }

  .header {
    justify-content: space-between; /* To push logo left and hamburger right */
  }
}

/* Animation for hamburger to cross */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

#main-content {
    transition: filter 0.3s ease-in-out;
}

#main-content.blur-background {
    filter: blur(4px);
    pointer-events: none;
}
/* Footer Styles */
.footer {
    background-color: var(--paco);
    color: var(--vanilla);
    padding: 3rem 2rem 1rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--santa-fe);
}

.footer-logo,
.footer-links,
.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-logo p {
    font-family: "Texte";
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

.footer-links h3,
.footer-social h3 {
    font-family: "Title";
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--rock-spray);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--vanilla);
    font-family: "Texte";
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--rock-spray);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.social-icons a {
    color: var(--vanilla);
    font-family: "Texte";
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--rock-spray);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-family: "Texte";
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}
/* Card Text and Button Styles */
.menu h3 {
    font-family: "Title";
    font-size: 1.5rem;
    color: var(--paco);
    margin: 10px 0;
}

.menu p {
    font-family: "Texte";
    font-size: 0.9rem;
    color: var(--pueblo);
    margin-bottom: 1rem;
}

.menu span {
    display: block;
    font-family: "Title";
    font-size: 1.2rem;
    color: var(--rock-spray);
    margin-bottom: 1rem;
    font-weight: bold;
}

.btn4 {
    padding: 0.8rem 1.5rem;
    background-color: var(--pueblo);
    color: var(--vanilla);
    border: 2px solid var(--pueblo);
    font-family: "Texte";
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn4:hover {
    background-color: transparent;
    color: var(--pueblo);
}
/* Alignment Styles */
.menu-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding: 0 0.5rem;
}

.menu span {
    margin-bottom: 0;
    /* Remove bottom margin as it's now handled by flex alignment */
}

/* Menu Categories */
.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Title';
    font-size: 2.2rem;
    color: var(--paco);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--rock-spray);
    display: inline-block;
}
