:root {
  --primary-bg: #1a1a1a;
  --text-light: #f5f5f5;
  --text-dark: #2a2a2a;
  --accent: #d4a574;
  --red: #c41e3a;
  --overlay: rgba(0, 0, 0, 0.4);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.ticker {
  background-color: #1a1a1a;
  color: #f9f6f0;
  padding: 0.7rem 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-transform: uppercase;
}

.ticker-content {
  display: flex;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}

.ticker-content span {
  padding-right: 3rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.hero {
  height: 100vh;
  background-image: url('../images/hero-torta.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10vh;
  margin-top: 2rem;
}

@media (min-width: 769px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-light);
  margin-top: -30vh;
}

.hero-logo {
  max-width: 800px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.menu {
  background-color: #1a1a1a;
  padding: 4rem 2rem;
  min-height: 100vh;
}

.menu-container {
  max-width: 800px;
  margin: 0 auto;
  color: #f9f6f0;
}

.menu-container h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
  color: #f9f6f0;
}

.menu-section {
  margin-bottom: 4rem;
}

.menu-section h3 {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 800;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 0.8rem;
}

.menu-item {
  margin-bottom: 2.5rem;
  padding-bottom: 0;
  border-bottom: none;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.item-header h4 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: #f9f6f0;
  flex: 1;
}

.price {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
  margin-left: 1rem;
}

.description {
  color: rgba(249, 246, 240, 0.8);
  line-height: 1.7;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}

.note {
  text-align: center;
  font-style: normal;
  color: rgba(249, 246, 240, 0.7);
  margin-top: 2rem;
  font-size: 0.95rem;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  padding-top: 1.5rem;
  font-weight: 600;
}

.menu-item-simple {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 2px solid rgba(212, 165, 116, 0.2);
  font-size: 1.1rem;
}

.menu-item-simple:last-child {
  border-bottom: none;
}

.menu-item-simple span:first-child {
  font-weight: 700;
  color: #f9f6f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-item-simple em {
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(249, 246, 240, 0.6);
  margin-left: 0.5rem;
  font-weight: 400;
  text-transform: lowercase;
}

.info {
  background-color: #2a2a2a;
  padding: 4rem 2rem;
  color: var(--text-light);
}

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

.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.info-text {
  text-align: left;
}

.info-container h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

.info-item p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.9);
  font-weight: 500;
}

.info-item em {
  font-style: normal;
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.95rem;
}

.tagline {
  font-size: 1.4rem;
  font-style: normal;
  color: rgba(245, 245, 245, 0.9);
  margin-top: 2rem;
  line-height: 1.8;
  font-weight: 600;
}

.info-image {
  width: 100%;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .ticker {
    font-size: 0.7rem;
    padding: 0.5rem 0;
  }

  .ticker-content {
    animation: scroll 15s linear infinite;
  }

  .hero {
    margin-top: 1.8rem;
    padding-top: 0;
  }

  .hero-content {
    margin-top: -45vh;
  }

  .hero-logo {
    max-width: 85%;
    width: 90%;
  }

  .menu {
    padding: 2rem 1rem;
  }

  .menu-container {
    padding: 2rem 1.5rem;
  }

  .menu-container h2 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
  }

  .menu-section h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .item-header h4 {
    font-size: 1.1rem;
  }

  .price {
    margin-left: 0;
    font-size: 1.2rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .menu-item-simple {
    font-size: 0.95rem;
    padding: 0.7rem 0;
  }

  .info {
    padding: 2rem 1rem;
  }

  .info-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .info-text {
    text-align: left;
  }

  .info-container h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .info-item h3 {
    font-size: 1.1rem;
  }

  .info-item p {
    font-size: 0.95rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-container {
    gap: 2rem;
  }

  .footer-section h4 {
    font-size: 0.95rem;
  }

  .footer-section p {
    font-size: 0.85rem;
  }
}

.footer {
  background-color: #0d0d0d;
  color: var(--text-light);
  padding: 3rem 2rem 1rem;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 800;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.8);
  font-weight: 500;
}

.footer-section p a {
  color: rgba(245, 245, 245, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 800;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(245, 245, 245, 0.2);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.7);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .menu-container h2 {
    font-size: 2rem;
  }

  .menu-section h3 {
    font-size: 1.5rem;
  }

  .item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .logo {
    height: 60px;
  }

  .navbar.scrolled .logo {
    height: 50px;
  }
}
