/* General */
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Doto:wght@100..900&family=Oxanium:wght@200..800&display=swap');
/* <weight>: Cabin - Use a value from 400 to 700 */
/* <uniquifier>: Use a unique and descriptive class name */
/* <weight>: Doto - Use a value from 100 to 900 */
/* <uniquifier>: Use a unique and descriptive class name */
/* <weight>: Oxanium - Use a value from 200 to 800 */
/* <uniquifier>: Use a unique and descriptive class name */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    scrollbar-color: lightblue black;
    scrollbar-width: thin;
}

/* ***********************GLOBAL*********************** */
body {
    overflow-X: hidden;
    font-family: 'Cabin', sans-serif;
    cursor: crosshair;
    /* background-image: linear-gradient(0deg, transparent 0%, transparent 100%), url('./../img/blue-sky-background.jpg'); */
    background-image: linear-gradient(0deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 15%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(255, 255, 255, 0.4) 100%), url('./../img/fondo_bosque_julian_h.jpg');
    background-color: white;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    height: 100vh;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: black;
}

/* Header */
header {
    background-color: transparent;
    /* height: 10vh; */
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.logo-ah {
    width: 25vw;
    margin: 2vh 1vw;

    /* background-color: aqua; */
    img {
        width: 100%;
        opacity: 0.63;
    }
}

/* Pagina Principal */
.contenedor-principal {
    /* background-color: rgba(0, 0, 255, 0.198); */
    display: flex;
    flex-flow: column wrap;
    margin: auto;
    height: 93vh;
    width: 90%;
    padding-top: 5vh;
}

.contenedor-centro {
    /* background-color: rgba(0, 255, 255, 0.282); */
    margin: auto;
    color: white;

    p {
        font-size: 0.95rem;
        letter-spacing: 0.15rem;
        line-height: 1.6rem;
        margin: 3.2rem 0;
    }

}

.instagram a {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.1rem;

    transition: 0.3s;
}

.instagram a:hover {
    font-size: 0.85rem;
    background-color: rgba(0, 0, 0, 0.5);
}

.logo-dm {
    height: 14vh;
    margin: -1.5rem 0;

    img {
        filter: invert(100%);
        height: 100%;
    }
}

/* Footer */
footer {
    color: white;

    i {
        display: inline-block;
        margin-right: 0.3rem;
    }

    p {
        display: inline-block;
    }
}

.copyright {
    /* background-color: black; */
    font-size: 0.75rem;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 0.25rem;
    margin-bottom: 2vh;
}



/* ************** RESONSIVIDAD *************** */
/* ===== Tablet (mínimo 768px) ===== */
@media (min-width: 768px) {
    body {
        /* background-color: green; */
    }

    /* Haeder */
    .logo-ah {
        width: 12vw;
        margin: 1vh 2vw;
    }

    /* Pagina Principal */
    .contenedor-principal {
        height: 90vh;
        padding-top: 18vh;
    }

    .logo-dm {
        height: 25vh;
    }

    .contenedor-centro p {
        margin: 1.6rem 0;
    }
}

/* ===== Escritorio (mínimo 1024px) ===== */
@media (min-width: 1024px) {
    body {
        /* background-color: aqua; */
        background-image: linear-gradient(0deg,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.4) 10%,
                rgba(0, 0, 0, 0.4) 80%,
                rgba(255, 255, 255, 0.55) 100%), url('./../img/fondo_bosque_julian_h.jpg');

    }

    /* Haeder */
    .logo-ah {
        width: 10vw;
        margin: 3vh 4vw;
    }

    /* Pagina Principal */
    .contenedor-principal {
        height: 93vh;
        padding-top: 10vh;
    }

    .logo-dm {
        height: 19vh;
    }

    .contenedor-centro p {
        margin: 3rem 0;
    }
}

/* ===== Pantallas muy grandes (mínimo 1440px o 1600px) ===== */
@media (min-width: 1440px) {
    body {
        /* background-color: orange; */
    }

    /* Haeder */
    .logo-ah {
        /* width: 10vw; */
        margin: 1vh 2vw;
    }

    /* Pagina Principal */
    .contenedor-principal {
        /* height: 95vh; */
        padding-top: 7vh;
    }

    .logo-dm {
        /* height: 19vh; */
    }

    .contenedor-centro p {
        margin: 3.3rem 0;
    }
}