@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@300;400;500&family=Jost:wght@300;400;500&display=swap');


/* =========================================================
   BASE
   ========================================================= */

:root {
    --white: #fff;
    --black: #111;
    --dark: #191b1b;
    --brand-navy: #062D4A;
    --text: #171717;

    --page-padding: 20px;
    --gap: 20px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background: var(--white);
    color: var(--text);

    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.35;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


h1,
h2,
h3,
p {
    margin-top: 0;
}


h1,
h2,
h3 {
    font-family: "Blinker", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}



/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    width: 100%;

    background: var(--white);
}


.site-header__inner {
    min-height: 72px;
    padding: 12px 20px;

    flex-wrap: wrap;
    gap: 12px;
}


.site-logo {
    flex-shrink: 0;
}


.site-logo img {
    width: 265px;
    height: auto;
	display: block;
}


.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;

    font-family: "Blinker", sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.site-nav > a:not(.button) {
    position: relative;

    padding: 8px 0;
}


.site-nav > a:not(.button)::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: 3px;

    height: 1px;

    background: currentColor;

    transition: right .25s ease;
}


.site-nav > a:not(.button):hover::after {
    right: 0;
}


.menu-toggle {
    display: none;
}

.mobile-reserve {
    display: none;
}



/* =========================================================
   BOTONES
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 11px 22px;

    border: 1.5px solid currentColor;
    border-radius: 0;

    background: transparent;
    color: var(--black);

    font-family: "Blinker", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition:
        background .2s ease,
        color .2s ease;
}


.button:hover {
    background: var(--black);
    color: var(--white);
}


.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 25px;
}



/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 60vh;

    padding: 0 var(--page-padding);

    display: grid;
    grid-template-columns: 62fr 38fr;
    gap: var(--gap);

    overflow: hidden;
}


.hero__image {
    min-height: 60vh;

    background-repeat: no-repeat;
    background-size: cover;
}


.hero__image--escamas {
    background-image:
        url('/img/escamas_cocina-a-brasa_bestiamarina_restaurante-garachico.jpg');

    background-position: bottom right;
}


.hero__image--brasas {
    display: none;

    background-image:
        url('/img/restaurante-garachico_brasas_bestia-marina-3.jpg');

    background-position: center left;
}


.hero__image--mar {
    background-image: url('/img/6.webp');

    background-position: center left;
}



/* =========================================================
   BLOQUES GENERALES
   ========================================================= */

.section {
    margin: 20px var(--page-padding) 0;
}


.section--split {
    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 1fr;
}


.section__content {
    padding: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.section__image {
    min-height: 650px;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.section h1,
.section h2 {
    margin-bottom: 30px;

    font-size: 50px;
    line-height: .95;
    letter-spacing: 2px;
}


.section h3 {
    margin: 30px 0 20px;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 2.5px;
}


.section p {
    max-width: 680px;

    margin-bottom: 20px;

    font-size: 18px;
    line-height: 24px;
}



/* =========================================================
   BIENVENIDA
   ========================================================= */

.intro {
    background: var(--dark);
    color: var(--white);
}


.intro .section__content {
    padding: 40px;
}


.intro h1 {
    max-width: 650px;

    margin-bottom: 38px;

    font-size: 60px;
    line-height: 1;
    letter-spacing: 2px;
}


.intro .section__subtitle {
    max-width: 600px;

    margin-bottom: 35px;

    font-size: 30px;
    font-weight: 300;
    line-height: .95;
    letter-spacing: 2px;
}


.intro p {
    max-width: 600px;

    font-size: 20px;
    line-height: 24px;
}


.section__image--brasas {
    position: relative;
    overflow: hidden;

    background-image: none;
}

.section__image--brasas::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        url('/img/restaurante-garachico_brasas_bestia-marina-3.jpg');

    background-size: cover;
    background-position: center;

    transform: scale(1);

    transition:
        transform 6s cubic-bezier(.22, .61, .36, 1);

    will-change: transform;
}

.section__image--brasas:hover::before {
    transform: scale(1.045);
}


/* =========================================================
   TE OFRECEMOS
   ========================================================= */

.oferta {
    margin-top: 20px;
    margin-bottom: 20px;
}


.oferta .section__content {
    display: grid;

    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto auto auto 1fr;

    column-gap: 20px;

    align-content: end;
}


.oferta h2,
.oferta p,
.oferta .button {
    grid-column: 1;
}


.oferta h2 {
    align-self: end;
}


.oferta .button {
    justify-self: start;
}


.oferta__image {
    grid-column: 2;
    grid-row: 1 / 5;

    min-height: 250px;

    position: relative;
    overflow: hidden;

    background-image: none;
}

.oferta__image::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        url('/img/317697133_900060614685982_3055550757387575118_n-e1678271032326.jpg');

    background-size: cover;
    background-position: center;

}


.section__image--madera {
    position: relative;
    overflow: hidden;

    background-image: none;
}

.section__image--madera::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        url('/img/madera-para-brasas.bestia-marina.-restaurante-Garachico.-Gastronomia-Tenerife.jpg');

    background-size: cover;
    background-position: center;

    
}


/* =========================================================
   EXPERIENCIAS
   ========================================================= */

.experiencias {
    margin-top: 20px;
}


.section__image--pescado {
    position: relative;
    overflow: hidden;

    background-image: none;
}

.section__image--pescado::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        url('/img/bestia-marina_restaurante-garachico-de-pescado_gastronomia-Tenerife.jpg');

    background-size: cover;
    background-position: center;

    transform: scale(1);

    transition:
        transform 6s cubic-bezier(.22, .61, .36, 1);

    will-change: transform;
}

.section__image--pescado:hover::before {
    transform: scale(1.045);
}


.experiencias .section__content {
    padding: 60px;
}


.experiencias h2 {
    margin-bottom: 40px;
}


.experiencias h3 {
    margin-top: 30px;
}


.experiencias .button--secondary {
    background: var(--black);
    color: var(--white);
}


.experiencias .button--secondary:hover {
    background: transparent;
    color: var(--black);
}



/* =========================================================
   GALERÍA
   ========================================================= */

.gallery {
    padding: 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.gallery img {
    width: 100%;
    height: 550px;

    object-fit: cover;
    object-position: center;
}



/* =========================================================
   FRASE
   ========================================================= */

.quote {
    margin: 20px;
    padding: 80px 15%;

    background: var(--brand-navy);
    color: #fff;
}

.quote blockquote {
    margin: 0;

    color: #fff;
    text-align: center;

    font-family: "Blinker", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}



/* =========================================================
   UBICACIÓN
   ========================================================= */

.location {
    padding: 40px 20px 120px;

    background: var(--dark);
    color: var(--white);

    text-align: center;
}


.location > * {
    max-width: 850px;

    margin-left: auto;
    margin-right: auto;
}


.location h2 {
    margin-bottom: 40px;

    font-family: "Blinker", sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: .9;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.location__map {
    width: 100%;
}


.location__map iframe {
    display: block;

    width: 100%;
    height: 400px;

    border: 0;
}


.location__info {
    margin-top: 40px;

    font-size: 20px;
    line-height: 26px;
}


.location address {
    margin-bottom: 20px;

    font-style: normal;
}


.location__info p {
    margin: 8px 0;
}


.location .button {
    margin-top: 25px;

    color: var(--white);
}


.location .button:hover {
    background: var(--white);
    color: var(--dark);
}



/* =========================================================
   EXPERIENCIA BESTIAL
   ========================================================= */

.bestial {
    overflow: hidden;

    padding-top: 60px;
}


.bestial h2 {
    margin: 0 20px 40px;

    text-align: center;

    font-family: "Blinker", sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: .9;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.bestial img {
    width: calc(100% - 40px);
    height: auto;
    margin: 0 20px;
    display: block;
}

@media (max-width: 767px) {
    .bestial img {
        width: calc(100% - 20px);
        margin: 0 10px;
    }
}



/* =========================================================
   INSTAGRAM
   ========================================================= */

.instagram {
    padding: 70px 20px;

    text-align: center;
}


.instagram h2 {
    margin-bottom: 12px;

    font-family: "Blinker", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.instagram a {
    font-family: "Jost", sans-serif;
    font-size: 20px;
}



/* =========================================================
   RESERVAS
   ========================================================= */

.reservation {
    width: min(100% - 40px, 900px);

    margin: 0 auto;
    padding: 80px 0 120px;
}


.reservation h1 {
    margin-bottom: 50px;

    text-align: center;

    font-size: 50px;
    line-height: 1;
    letter-spacing: 2px;
}


.dish-widget {
    width: 100%;
}



/* =========================================================
   LEGALES
   ========================================================= */

.legal {
    width: min(100% - 40px, 900px);

    margin: 0 auto;
    padding: 80px 0 120px;
}


.legal h1 {
    margin-bottom: 50px;

    font-size: 50px;
    line-height: 1;
    letter-spacing: 2px;
}


.legal__content {
    font-size: 17px;
    line-height: 1.6;
}


.legal__content h2,
.legal__content h3 {
    margin-top: 45px;
}


.legal__content a {
    text-decoration: underline;
}



/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    min-height: 130px;
    padding: 30px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    border-top: 1px solid #ddd;
}


.site-footer__logo img {
    width: 366px;
    height: auto;
}


.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 25px;

    font-family: "Blinker", sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .site-header__inner {
        min-height: 80px;
    }


    .site-logo img {
        width: 230px;
    }


    .site-nav {
        gap: 22px;
    }


    .hero,
    .hero__image {
        min-height: 55vh;
    }


    .intro,
    .oferta,
    .experiencias {
        min-height: 500px;
    }


    .section__image {
        min-height: 500px;
    }


    .section__content {
        padding: 30px;
    }


    .intro h1,
    .section h2,
    .location h2,
    .bestial h2 {
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: 5px;
    }


    .intro .section__subtitle {
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: 4px;
    }


    .intro p,
    .section p {
        font-size: 18px;
        line-height: 1.4;
    }


    .experiencias .section__content {
        padding: 40px 20px;
    }


    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }


    .gallery img {
        height: 350px;
    }


    .quote {
        padding: 8% 6%;
    }


    .quote blockquote {
        font-size: 26px;
        line-height: 1.3;
        letter-spacing: 3px;
    }

}



/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 767px) {

    :root {
        --page-padding: 20px;
        --gap: 10px;
    }


    body {
        font-size: 17px;
    }


    .site-header__inner {
        min-height: 72px;
        padding: 12px 20px;

        flex-wrap: wrap;
    }


    .site-logo img {
        width: 190px;
    }


    .mobile-reserve {
        display: inline-flex;

        min-height: 38px;
        padding: 9px 14px;

        margin-left: auto;

        font-size: 12px;
        letter-spacing: 1.2px;
    }


    .menu-toggle {
        display: flex;

        width: 32px;
        height: 24px;

        padding: 0;

        flex-direction: column;
        justify-content: space-between;

        border: 0;

        background: transparent;

        cursor: pointer;
    }


    .menu-toggle span {
        display: block;

        width: 100%;
        height: 2px;

        background: var(--black);

        transition:
            transform .2s ease,
            opacity .2s ease;
    }


    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }


    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }


    .site-nav {
        display: none;

        width: 100%;
        padding-top: 15px;

        flex-direction: column;
        align-items: stretch;
        gap: 10px;

        font-size: 13px;
    }


    .site-nav.is-open {
        display: flex;
    }


    .site-nav > a {
        width: 100%;
    }


    .site-nav > a:not(.button) {
        padding: 12px 0;

        border-bottom: 1px solid #ddd;
    }


    .site-nav > a:not(.button)::after {
        display: none;
    }


    .site-nav .button {
        display: none;
    }


    .hero {
        height: 270px;
        min-height: 0;

        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }


    .hero__image {
        height: 270px;
        min-height: 0;
    }


    .hero__image--escamas {
        background-position: bottom center;
    }


    .hero__image--mar {
        background-position: center;
    }


    .section {
        margin-left: 5%;
        margin-right: 5%;
    }


    .section--split {
        min-height: auto;

        grid-template-columns: 1fr;
    }


    .section__content {
        padding: 40px 0;
    }


    .section__image {
        min-height: 300px;
    }


    .intro {
        margin-top: 40px;
        margin-bottom: 40px;

        padding-bottom: 0;
    }


    .intro .section__content {
        padding: 40px 0;
    }


    .intro h1,
    .section h2,
    .location h2,
    .bestial h2 {
        font-size: 30px;
        line-height: 1;
        letter-spacing: 3px;
    }


    .intro .section__subtitle {
        font-size: 24px;
        line-height: 1;
        letter-spacing: 2px;
    }


    .intro p,
    .section p {
        font-size: 17px;
        line-height: 1.3;
    }


    .section__image--brasas {
        min-height: 300px;
    }


    .oferta {
        margin-top: 0;
        margin-bottom: 0;
    }


    .oferta .section__content {
        display: block;
    }


    .oferta__image {
        min-height: 260px;
        margin-top: 35px;
    }


    .section__image--madera {
        min-height: 300px;
        margin-top: 35px;
    }


    .experiencias {
        margin-top: 15%;
    }


    .experiencias .section__image {
        order: 2;

        min-height: 300px;
        margin-top: 10%;
    }


    .experiencias .section__content {
        order: 1;

        padding: 0;
    }


    .experiencias h3 {
        font-size: 21px;
        letter-spacing: 2px;
    }


    .buttons {
        flex-direction: column;
        gap: 15px;
    }


    .buttons .button {
        width: 100%;
    }


    .gallery {
        padding: 20px;

        grid-template-columns: 1fr;
        gap: 20px;
    }


    .gallery img {
        height: 250px;
    }


    .quote {
        margin: 40px 10px;
        padding: 10% 5%;
    }


    .quote blockquote {
        font-size: 24px;
        line-height: 1;
        letter-spacing: 2px;
    }


    .location {
        padding: 40px 20px;
    }


    .location h2 {
        margin-bottom: 30px;
    }


    .location__map iframe {
        height: 350px;
    }


    .location__info {
        margin-top: 30px;

        font-size: 18px;
        line-height: 1.3;
    }


    .location .button {
        width: 100%;
    }


    .bestial {
        padding-top: 50px;
    }


    .bestial h2 {
        margin-bottom: 30px;
    }


    .instagram {
        padding: 50px 20px;
    }


    .reservation,
    .legal {
        width: calc(100% - 40px);

        padding: 50px 0 80px;
    }


    .reservation h1,
    .legal h1 {
        font-size: 30px;
    }


    .site-footer {
        flex-direction: column;
        align-items: center;
        padding: 35px 20px;
    }


    .site-footer__logo {
        align-self: center;
    }


    .site-footer__logo img {
        width: 260px;
    }


    .site-footer__nav {
        justify-content: center;
        gap: 14px;

        font-size: 11px;
        letter-spacing: .8px;

        text-align: center;
    }
}

/* =========================================================
   CABECERA - AJUSTE FINAL
   ========================================================= */

.site-header__inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.site-logo {
    flex-shrink: 0;
}

.site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    margin-left: auto;
    gap: 34px;
}

.header-reserve {
    flex-shrink: 0;
    margin-left: 34px;

    background: #fff;
    color: var(--brand-blue);

    border: 2px solid var(--brand-blue);

    font-weight: 500;
}

.header-reserve:hover {
    background: var(--brand-blue);
    color: #fff;
}

/* MÓVIL */

@media (max-width: 767px) {

    .site-header__inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .site-logo {
        margin-right: auto;
    }

    .header-reserve {
        min-height: 38px;
        padding: 9px 14px;
        font-size: 12px;
    }

    .menu-toggle {
        display: flex;
    }

    .site-nav {
        display: none;

        width: 100%;
        margin-left: 0;

        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-nav.is-open {
        display: flex;
    }

}

/* =========================================================
   IDENTIDAD BESTIA MARINA
   ========================================================= */

:root {
    --brand-blue: #033E71;
    --brand-blue-dark: #022F57;
    --brand-blue-soft: #EEF4F8;
}


/* COLOR GENERAL */

body {
    color: var(--brand-blue);
}


/* CABECERA */

.site-nav {
    color: var(--brand-blue);
}

.header-reserve {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.header-reserve:hover {
    background: var(--brand-blue);
    color: #fff;
}


/* Separador entre Experiencias y EN */




/* BOTONES */

.button {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.button:hover {
    background: var(--brand-blue);
    color: #fff;
}


/* BIENVENIDA */

.intro {
    background: #fff;
    color: var(--brand-blue);
}


/* EXPERIENCIAS */

.experiencias .button--secondary {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
}

.experiencias .button--secondary:hover {
    background: #001F3A;
    color: #fff;
    border-color: #001F3A;

}
/* FRASE */

.quote {
    background: #fff;
    color: var(--brand-blue);

    padding-top: 80px;
    padding-bottom: 80px;
}

.quote blockquote {
    color: var(--brand-blue);
}


/* UBICACIÓN */

.location {
    background: #fff;
    color: var(--brand-blue);
}

.location .button {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.location .button:hover {
    background: var(--brand-blue);
    color: #fff;
}

/* =========================================================
   CABECERA MÓVIL - ORDEN CORRECTO
   ========================================================= */

@media (max-width: 767px) {

    .site-logo {
        order: 1;
        margin-right: auto;
    }

    .header-reserve {
        order: 2;
        margin-left: 0;
    }

    .menu-toggle {
        order: 3;
    }

    .site-nav {
        order: 4;

        width: 100%;
        margin-left: 0;
    }

}

/* Frase - bloque azul marino */

.quote {
    background: #062D4A;
    color: #fff;
}

.quote blockquote {
    color: #fff;
}

/* =========================================================
   POLÍTICA DE RESERVAS
   ========================================================= */

.reservation-policy {
    max-width: 760px;
    margin: 70px auto;
    padding: 0 20px;

    color: var(--brand-blue);
}

.reservation-policy > h2 {
    margin: 0 0 25px;

    font-family: "Blinker", sans-serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reservation-policy details {
    border-top: 1px solid rgba(3, 62, 113, .18);
}

.reservation-policy details:last-child {
    border-bottom: 1px solid rgba(3, 62, 113, .18);
}

.reservation-policy summary {
    padding: 16px 0;

    font-size: 16px;
    line-height: 1.4;

    cursor: pointer;
}

.reservation-policy__content {
    padding: 0 0 20px;

    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 767px) {

    .reservation-policy {
        margin: 45px auto;
    }

    .reservation-policy > h2 {
        font-size: 22px;
    }

}

/* =========================================================
   ZOOM SUAVE EN IMÁGENES
   ========================================================= */

.image-zoom {
    overflow: hidden;
}

.image-zoom img {
    display: block;
    width: 100%;
    height: 100%;

    transition: transform 1.2s ease;
}

.image-zoom:hover img {
    transform: scale(1.04);
}