/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", "Arial", sans-serif;
}

body {
    color: #333;
    line-height: 1.5;
}

/* Hero home */
.hero {
    background: url("img/machu-picchu.jpeg") no-repeat center center/cover;
    height: 70vh;
    position: relative;
    color: white;
}
.logo img {
    height: 40px;
    width: auto;
    margin: 20px 50px;
}
.overlay {
    background-color: #0f0a3263;
    height: 100%;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    margin-right: 50px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar ul li a:hover {
    color: #f46c56;
}

/* Hero Text */
.hero-text {
    text-align: center;
    margin-top: 150px;
}

.hero-text h1 {
    font-size: 3rem;
}

.highlight {
    color: #f46c56;
}

.cta-btn {
    background-color: #f46c56;
    padding: 10px 20px;
    border: none;
    color: white;
    font-weight: bold;
    margin: 50px;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s ease;
    text-decoration: none;
    align-items: center;
}

.cta-btn:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

/* Search Bar */
.search-bar {
    background: #ffffff;
    padding: 20px;
    margin: -40px auto 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 3px 20px #0000002b;
    flex-wrap: wrap;
    position: relative;
}

.search-bar input,
.search-bar button {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    height: 45px;
    align-items: center;
}

/* Destinations */
.destinations {
    text-align: center;
    padding: 50px 20px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px #0000002b;
    width: 250px;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card p {
    padding: 15px;
}

/* Why Us */
.why-us {
    padding: 50px 20px;
    text-align: center;
}

.why-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-container img {
    width: 400px;
    border-radius: 10px;
}

.features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.feature {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
}

/* About */
.about {
    text-align: center;
    padding: 50px 20px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stats div span {
    font-size: 80px;
    color: #f46c56;
    font-weight: bolder;
}

.stats div p {
    margin-top: 5px;
}

/* Footer */
footer {
    background: #0f0a32;
    color: white;
    text-align: center;
    margin-top: 50px;
    padding: 20px;
}

/* ESTILOS DE LA PAGINA GASTRONOMIA */
#gastronomia {
    font-family: "Nunito", "Arial", sans-serif;
    line-height: 1.5;
    background-color: #fff;
    color: #333;
}

.header_gastronomia {
    background: url("img/gastronomia\ peru.jpg") no-repeat center center/cover;
    height: 70vh;
    position: relative;
    color: white;
}

.logo_gastronomia img {
    width: 200px;
}

.menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}


.menu_link a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.menu_link a:hover {
    color: #f46c56;
}

.contenido {
    max-width: 1040px;
    margin: 20px auto 40px;
    padding: 40px 20px;
}
.contenido_plato {
    text-align: center; /* centra los textos */
    display: flex;
    flex-direction: column;
    align-items: center; /* centra el botón */
    padding-bottom: 15px;
}   
.introduccion {
    font-size: 18px;
    text-align: justify;
    margin-bottom: 30px;
    padding: 0 10px;
}

.platos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.plato {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-rows: repeat(2, auto);
    transition: transform 0.3s, box-shadow 0.3s;
}

.plato:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.plato img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.plato .nombre {
    font-size: 22px;
    color: #f46c56;
    font-weight: bold;
    margin: 10px 12px 4px;
    text-align: center;
}

.plato .descripcion {
    font-size: 16px;
    color: #444;
    margin: 0 12px 12px;
    text-align: center;
    padding: 20px;
    align-items: center;
}

.footer_gastronomia {
    background-color: #0f0a32;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 0.9rem;
}

/* ESTILOS DE LA PAGINA CULTURA */

.header_cultura {
    background: url("img/tradiciones\ peruanas.jpg") no-repeat center center/cover;
    height: 70vh;
    position: relative;
    color: white;
}
/* ESTILOS DE LA PAGINA CULTURA */

.header_lugares {
    background: url("img/Plaza-de-Armas-Cusco.jpg") no-repeat center center/cover;
    height: 70vh;
    position: relative;
    color: white;
}
.btn-cotizar {
    display: inline-block;
    background: #f56b4a;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin: 15px auto 0;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s;
}

.btn-cotizar:hover {
    background: #d94e32;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .why-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .stats {
    flex-direction: column;
    gap: 1em;
  }
}

@media (max-width: 480px) {
  .navbar ul {
    flex-direction: column;
    gap: 0.5em;
  }
  .search-bar {
    flex-direction: column;
  }
  .hero-text h1 {
    font-size: 1.5rem;
  }
}