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

body, html {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Fondo fijo */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('inicio/fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    filter: brightness(0.5);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.logo img {
    height: 80px;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #FFA500;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #FFA500;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #FF8C00;
    transform: scale(1.05);
}

/* Menu Section */
.menu-section, .about-section, .contact-section {
    padding: 100px 10%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

.menu-section h2, .about-section h2, .contact-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #FFA500;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.menu-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #FFA500;
}

.menu-item h3 {
  margin: 15px 0 10px;
  color: #FFA500;
  font-size: 1.5rem;
}

.menu-item p {
  padding: 0 15px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.price {
  display: block;
  font-weight: bold;
  font-size: 1.3rem;
  color: #FFA500;
  margin-top: 10px;
}

.ver-menu-completo {
  text-align: center;
  margin-top: 50px;
}

.ver-menu-completo .btn {
  display: inline-block;
  background-color: #FF8C00;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  margin-bottom: 15px;
}

.ver-menu-completo .btn:hover {
  background-color: #FF6D00;
  transform: scale(1.05);
}

.ver-menu-completo a[download] {
  color: #FFA500;
  text-decoration: none;
  transition: color 0.3s;
}

.ver-menu-completo a[download]:hover {
  color: #FF8C00;
  text-decoration: underline;
}

/* section pedidos */

/* Estilo para la sección de pedidos */
.cta-pedidos {
    background-color: rgba(255, 140, 0, 0.85); /* Naranja con 85% de opacidad */
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin: 30px 0;
    backdrop-filter: blur(2px); /* Opcional: efecto de desenfoque sutil */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borde sutil para contraste */
}

.cta-pedidos h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-pedidos i {
    margin-right: 10px;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #0d7332;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
    transition: transform 0.3s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

.telefono {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.feature i {
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    color: #FFA500;
    margin: 20px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}

.contact-form-title{
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #FFA500
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 30px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FFA500;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px;
    }

    .logo img {
        height: 50px;
        margin-bottom: 15px;
    }

    .navbar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar a {
        margin: 0 10px 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .background-container {
        background-attachment: scroll;
    }

    .features {
        flex-direction: column;
        gap: 20px;
    }
}