/* ===========================
   GENERAL
=========================== */
body {
    margin: 0;
    background-color: #faf7f2;
    font-family: 'Playfair Display', serif;
    color: #4a1a1a;
    font-size: 22px;
}

/* ===========================
   NAV DESKTOP
=========================== */
nav {
    background-color: black;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 40px;
    font-size: 90%;
    transition: 0.3s ease;
}

nav a:hover {
    color: rgb(214, 194, 38);
}

/* ===========================
   MENÚ HAMBURGUESA (MÓVIL)
=========================== */
.hamburguesa {
    display: none;
    font-size: 35px;
    color: white;
    cursor: pointer;
    padding: 10px 20px;
    background: black;
}

.nav-movil {
    display: none;
    flex-direction: column;
    background: black;
    text-align: center;
}

.nav-movil a {
    color: white;
    padding: 18px 0;
    text-decoration: none;
    border-bottom: 1px solid #333;
    font-size: 20px;
}

.nav-movil.activo {
    display: flex;
}

/* ===========================
   TITULOS
=========================== */
h1 {
    color: #4a1a1a;
    text-align: center;
    margin-top: 5%;
    font-family: 'Great Vibes', cursive;
    font-size: 70px;
    font-weight: 400;
}

h2 {
    color: #4a1a1a;
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 45px;
}

/* ===========================
   CARRUSEL
=========================== */
.carousel {
    width: 70%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.slide {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
}

.slide img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.slide.active img {
    transform: scale(1.1);
    opacity: 1;
}

.slide.side img {
    transform: scale(0.85);
    opacity: 0.4;
}

/* ===========================
   ESPECIALIDADES
=========================== */
.especialidades {
    margin: 60px auto;
    text-align: center;
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 30px 10%;
    gap: 20px;
}

.esp-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-weight: bold;
}

/* ===========================
   PRESENTACIÓN
=========================== */
.presentacion-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 60px 10%;
}

.presentacion-img img {
    width: 420px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.presentacion-texto {
    flex: 1;
    line-height: 1.5;
}

.boton-contenedor {
    text-align: center;
    margin-bottom: 20px;
}

.boton-carta {
    display: inline-block;
    background-color: #4a1a1a;
    border-radius: 8px;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.boton-carta:hover {
    background-color: #d6c226;
    color: black;
}

/* ===========================
   DÓNDE ESTAMOS
=========================== */
.donde-estamos {
    margin: 60px auto;
    text-align: center;
}

.donde-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 10%;
}

.donde-texto ul {
    list-style: none;
    padding: 0;
    font-size: 22px;
    line-height: 1.6;
}

.donde-imagenes img {
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===========================
   GALERÍA INTERIOR
=========================== */
.galeria-grid {
    column-count: 4;
    column-gap: 12px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.galeria-grid img {
    width: 100%;
    margin-bottom: 12px;
    border-radius: 6px;
    display: block;
    break-inside: avoid;
}

/* ===========================
   GALERÍA COMIDA
=========================== */
.masonry {
    column-count: 4;
    column-gap: 15px;
}

.masonry img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 12px;
    display: block;
    break-inside: avoid;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* ===========================
   SECCIÓN ARTE
=========================== */

.arte-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto;
}

.arte-grid img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-origin: center center;
}

/* Posición inicial: inclinadas */
.arte-grid img:nth-child(1),
.arte-grid img:nth-child(3) {
    transform: rotate(-4deg);
}

.arte-grid img:nth-child(2),
.arte-grid img:nth-child(4) {
    transform: rotate(4deg);
}

/* Al pasar el ratón: se enderezan y se agrandan un poco */
.arte-grid img:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}


/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
    nav { display: none; }
    .hamburguesa { display: block; }
    body { font-size: 18px; }
}

@media (max-width: 900px) {
    .especialidades-grid { grid-template-columns: repeat(2, 1fr); }
    .presentacion-flex { flex-direction: column; text-align: center; }
    .presentacion-img img { width: 90%; }
    .donde-grid { flex-direction: column; }
}

@media (max-width: 700px) {
    .masonry { column-count: 2; }
    .galeria-grid { column-count: 2; }
}

@media (max-width: 360px) {
    .masonry { column-count: 1; }
    .galeria-grid { column-count: 1; }
    h1 { font-size: 50px; }
    h2 { font-size: 32px; }
}












