/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(45deg, #8b4a9c 25%, #d2691e 25%, #d2691e 50%, #8b4a9c 50%, #8b4a9c 75%, #d2691e 75%);
  background-size: 40px 40px;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(139, 74, 156, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo-img {
  height: 70px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #8b4a9c;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff8c00;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url("/placeholder.svg?height=600&width=1200") center / cover;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: "Fredoka One", cursive;
  font-size: 3rem;
  color: #8b4a9c;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #8b4a9c;
  color: white;
}

.btn-primary:hover {
  background: #7a4287;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 74, 156, 0.3);
}

.btn-secondary {
  background: #ff8c00;
  color: white;
}

.btn-secondary:hover {
  background: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Gallery Section */
.gallery-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(139, 74, 156, 0.2);
  transition: all 0.3s ease;
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(139, 74, 156, 0.3);
}

.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(139, 74, 156, 0.95));
  color: white;
  padding: 40px 25px 25px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-family: "Fredoka One", cursive;
  font-size: 1.6rem;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff8c00;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Menu Section */
.menu-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 80px 0;
}

.section-title {
  font-family: "Fredoka One", cursive;
  font-size: 2.5rem;
  color: #8b4a9c;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-grid {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.menu-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 74, 156, 0.1);
  border-left: 5px solid #ff8c00;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 74, 156, 0.2);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-item-name {
  font-family: "Fredoka One", cursive;
  font-size: 1.5rem;
  color: #8b4a9c;
}

.menu-item-price {
  background: #8b4a9c;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.2rem;
}

.menu-item-description {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 74, 156, 0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item h3 {
  color: #8b4a9c;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-item a {
  color: #ff8c00;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Location Section */
.location-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 80px 0;
}

.location-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.location-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 74, 156, 0.1);
}

.location-info h3 {
  color: #8b4a9c;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Footer */
.footer {
  background: rgba(139, 74, 156, 0.9);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 50px;
  border-radius:15px;
  width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.2rem;
    padding: 15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    padding: 12px;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav {
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .gallery-img {
    height: 220px;
  }

  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 40px!important;
  }
}

@media (max-width: 480px) {
  .logo-img{
    height: 50px!important;
  }
    .hero-content{
        margin-top:80px;
    }
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero-title {
    font-size: 1.8rem;
    padding: 12px;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 10px;
  }

  .menu-item,
  .contact-item,
  .location-info {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-img {
    height: 200px;
  }

  .gallery-overlay {
    padding: 30px 20px 20px;
  }

  .gallery-overlay h3 {
    font-size: 1.4rem;
  }

  .gallery-overlay p {
    font-size: 1.2rem;
  }
}
