* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #f5efe3;
    color: #3b2920;
    font-family: Georgia, serif;
}


/* =========================
   CABECERA
========================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 7%;
    background-color: #f5efe3;
    border-bottom: 1px solid #d8c9b4;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #7b351f;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #3b2920;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #a34b2c;
}


/* =========================
   PORTADA
========================= */

.hero {
    min-height: 600px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 80px 20px;

    background:
    linear-gradient(rgba(59, 41, 32, 0.35), rgba(59, 41, 32, 0.35)),
    url("fondo-taperia.jpg");
    
    background-size: cover;
    background-position: center;

    color: white;
}

.ubicacion {
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 80px);
    max-width: 900px;
    margin: 0 0 25px;
}

.intro {
    max-width: 650px;
    font-size: 21px;
    line-height: 1.6;
}


/* =========================
   BOTONES
========================= */

.boton {
    display: inline-block;

    margin-top: 25px;
    padding: 16px 30px;

    background-color: #a34b2c;
    color: white;

    text-decoration: none;

    border-radius: 3px;

    font-size: 16px;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.boton:hover {
    background-color: #7b351f;
    transform: translateY(-2px);
}


/* =========================
   TEXTOS PEQUEÑOS
========================= */

.pequeno {
    color: #a34b2c;
    letter-spacing: 4px;
    font-size: 13px;
}


/* =========================
   ESPECIALIDAD
========================= */

.especialidad {
    text-align: center;

    padding: 100px 20px;

    max-width: 850px;

    margin: auto;
}

.especialidad h2 {
    font-size: 48px;
    margin: 20px 0;
}

.especialidad > p:last-child {
    font-size: 20px;
    line-height: 1.7;
}


/* =========================
   CARTA
========================= */

.carta {
    padding: 100px 7%;

    text-align: center;

    background-color: #eadbc5;
}

.carta h2 {
    font-size: 52px;
    margin: 20px 0;
}

.carta-intro {
    max-width: 650px;

    margin: 0 auto 60px;

    font-size: 20px;
    line-height: 1.7;
}


/* CATEGORÍAS */

.categorias {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    max-width: 1100px;

    margin: 0 auto 50px;
}

.categoria {
    background-color: #f5efe3;

    padding: 45px 30px;

    border-radius: 4px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.categoria:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(59, 41, 32, 0.10);
}

.icono {
    font-size: 45px;

    margin-bottom: 15px;
}

.categoria h3 {
    font-size: 28px;

    color: #7b351f;
}

.categoria p {
    font-size: 17px;

    line-height: 1.6;
}


/* BOTÓN OSCURO */

.boton-oscuro {
    background-color: #7b351f;
}

.boton-oscuro:hover {
    background-color: #5d2819;
}


/* =========================
   CARTA COMPLETA
========================= */

.carta-completa {
    padding: 100px 7%;

    text-align: center;

    background-color: #f5efe3;
}

.carta-completa h2 {
    font-size: 52px;

    margin: 20px 0;
}

.imagenes-carta {
    max-width: 1100px;

    margin: 50px auto 0;
}

.imagenes-carta img {
    display: block;

    width: 100%;
    height: auto;

    margin-bottom: 30px;

    box-shadow:
        0 8px 25px rgba(59, 41, 32, 0.15);
}


/* =========================
   GALERÍA
========================= */

.galeria {
    padding: 100px 7%;

    text-align: center;

    background-color: #eadbc5;
}

.galeria h2 {
    font-size: 52px;

    margin: 20px 0;
}

.galeria-intro {
    max-width: 650px;

    margin: 0 auto 60px;

    font-size: 20px;

    line-height: 1.7;
}

.galeria-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.galeria-grid img {
    width: 100%;

    height: 320px;

    object-fit: cover;

    display: block;

    border-radius: 4px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.galeria-grid img:hover {
    transform: scale(1.03);

    box-shadow:
        0 10px 25px rgba(59, 41, 32, 0.20);
}


/* =========================
   DÓNDE ESTAMOS
========================= */

.ubicacion-seccion {
    min-height: 700px;

    padding: 80px 7%;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    position: relative;

    background-image:
        linear-gradient(
            rgba(35, 25, 20, 0.30),
            rgba(35, 25, 20, 0.30)
        ),
        url("galeria-7.jpeg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


/* CUADRO */

.ubicacion-cuadro {
    width: 100%;

    max-width: 560px;

    padding: 65px 60px;

    background-color:
        rgba(250, 245, 235, 0.93);

    text-align: center;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.20);

    border-radius: 4px;
}


/* TÍTULO */

.ubicacion-cuadro h2 {
    font-size: 52px;

    line-height: 1.1;

    margin: 20px 0 30px;

    color: #3b2920;
}


/* TEXTO */

.ubicacion-cuadro .texto-ubicacion {
    font-size: 20px;

    line-height: 1.6;

    margin-bottom: 30px;

    color: #3b2920;
}


/* DIRECCIÓN */

.ubicacion-cuadro .direccion {
    font-size: 22px;

    line-height: 1.7;

    margin-bottom: 35px;

    color: #3b2920;
}


/* BOTÓN */

.ubicacion-cuadro .boton {
    display: inline-block;
}


/* =========================
   MÓVIL
========================= */

@media (max-width: 700px) {

    /* CABECERA */

    header {
        flex-direction: column;
        gap: 18px;
        padding: 20px 15px;
    }

    .logo {
        font-size: 27px;
    }

    nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 14px;
    }


    /* PORTADA */

    .hero {
        min-height: 550px;
        padding: 70px 20px;
    }

    .hero h1 {
        font-size: 45px;
        line-height: 1.1;
    }

    .ubicacion {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .intro {
        font-size: 18px;
        line-height: 1.5;
    }


    /* ESPECIALIDAD */

    .especialidad {
        padding: 70px 20px;
    }

    .especialidad h2 {
        font-size: 36px;
        line-height: 1.15;
    }

    .especialidad > p:last-child {
        font-size: 18px;
    }


    /* CARTA */

    .carta {
        padding: 70px 20px;
    }

    .carta h2 {
        font-size: 40px;
        line-height: 1.15;
    }

    .carta-intro {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .categorias {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categoria {
        padding: 35px 25px;
    }


    /* CARTA COMPLETA */

    .carta-completa {
        padding: 70px 15px;
    }

    .carta-completa h2 {
        font-size: 40px;
        line-height: 1.15;
    }

    .imagenes-carta {
        margin-top: 35px;
    }

    .imagenes-carta img {
        margin-bottom: 20px;
    }


    /* GALERÍA */

    .galeria {
        padding: 70px 15px;
    }

    .galeria h2 {
        font-size: 40px;
        line-height: 1.15;
    }

    .galeria-intro {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .galeria-grid img {
        height: 300px;
    }


    /* DÓNDE ESTAMOS */

    .ubicacion-seccion {
        min-height: 650px;

        padding: 50px 20px;

        justify-content: center;

        background-position: center;
    }

    .ubicacion-cuadro {
        width: 100%;
        max-width: 500px;

        padding: 45px 25px;
    }

    .ubicacion-cuadro h2 {
        font-size: 40px;
        line-height: 1.15;
    }

    .ubicacion-cuadro .texto-ubicacion {
        font-size: 18px;
        line-height: 1.6;
    }

    .ubicacion-cuadro .direccion {
        font-size: 19px;
        line-height: 1.6;
    }

}