/* CSS Document */
/* =====================================================
   VT COFFEE
   ACTIVIDADES
===================================================== */


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

.activities-page {
    overflow: hidden;
}


.activities-kicker {
    margin: 0 0 18px;

    font-family: var(--font-hand);
    font-size: 18px;
    font-weight: 500;

    color: #a45f49;
}


/* =====================================================
   INTRO
===================================================== */

.activities-intro {
    width: min(1180px, 88%);
    margin: 0 auto;

    padding:
        clamp(95px, 10vw, 155px)
        0
        clamp(110px, 10vw, 160px);

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;

    gap: clamp(55px, 7vw, 105px);
}


.activities-intro-text {
    max-width: 510px;
}


.activities-intro h1 {
    margin: 0 0 30px;

    font-family: var(--font-main);
    font-size: clamp(40px, 4.3vw, 62px);
    font-weight: 500;
    line-height: 1.04;

    color: var(--green);
}


.activities-intro-text > p:not(.activities-kicker) {
    margin: 0 0 20px;

    font-size: clamp(18px, 1.4vw, 21px);
    font-weight: 300;
    line-height: 1.6;

    color: var(--mineral);
}


.activities-intro-photo {
    position: relative;
}


.activities-intro-photo::before {
    content: "";

    position: absolute;

    left: -16px;
    top: -18px;

    width: 2px;
    height: 30%;

    background: #a45f49;
}


.activities-intro-photo img {
    display: block;

    width: 100%;
    height: auto;
}


/* =====================================================
   QUILLELHUE
===================================================== */

.activity-story {
    width: min(1180px, 88%);
    margin: 0 auto;

    padding-bottom: clamp(110px, 11vw, 170px);

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;

    gap: clamp(60px, 8vw, 115px);
}


.activity-story-photo img {
    display: block;

    width: 100%;
    height: auto;

    box-shadow:
        0 8px 22px rgba(53, 48, 40, 0.12);
}


.activity-story-text {
    max-width: 450px;
}


.activity-story-text h2 {
    margin: 0 0 26px;

    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 500;
    line-height: 1.08;

    color: var(--green);
}


.activity-story-text p:not(.activities-kicker) {
    margin: 0 0 18px;

    font-size: clamp(18px, 1.3vw, 20px);
    font-weight: 300;
    line-height: 1.6;

    color: var(--mineral);
}


/* =====================================================
   LANÍN - FULL WIDTH
===================================================== */

.activity-landscape {
    position: relative;

    width: 100%;
    height: clamp(620px, 58vw, 900px);

    overflow: hidden;

    background: #111;
}


.activity-landscape > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.activity-landscape::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.50),
            rgba(0, 0, 0, 0.02) 65%
        );
}


.activity-landscape-content {
    position: absolute;
    z-index: 2;

    left: 7%;
    bottom: 9%;

    width: min(700px, 80%);
}


.activity-landscape-kicker {
    margin: 0 0 14px;

    font-family: var(--font-hand);
    font-size: 20px;
    font-weight: 500;

    color: white;
}


.activity-landscape h2 {
    margin: 0 0 20px;

    font-size: clamp(42px, 4.8vw, 70px);
    font-weight: 500;
    line-height: 1.02;

    color: white;

    text-shadow:
        0 3px 14px rgba(0, 0, 0, 0.32);
}


.activity-landscape p {
    max-width: 570px;

    margin: 0;

    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 300;
    line-height: 1.5;

    color: white;
}


/* =====================================================
   QUINQUILIL + AVUTARDAS
===================================================== */

.activity-explore {
    padding:
        clamp(110px, 10vw, 165px)
        6%
        clamp(125px, 11vw, 180px);

    background: #e9dfc9;
}


.activity-explore-heading {
    width: min(900px, 100%);
    margin: 0 auto 85px;

    text-align: center;
}


.activity-explore-heading h2 {
    margin: 0 auto 28px;

    max-width: 800px;

    font-size: clamp(40px, 4vw, 60px);
    font-weight: 500;
    line-height: 1.06;

    color: var(--green);
}


.activity-explore-heading > p:last-child {
    max-width: 690px;

    margin: 0 auto;

    font-size: clamp(18px, 1.4vw, 21px);
    font-weight: 300;
    line-height: 1.6;

    color: var(--mineral);
}


.activity-explore-photos {
    position: relative;

    width: min(1100px, 100%);
    margin: 0 auto;

    min-height: 620px;
}


.activity-explore-photo {
    position: absolute;
}


.activity-explore-photo img {
    display: block;

    width: 100%;

    box-shadow:
        0 10px 26px rgba(53, 48, 40, 0.16);
}


.activity-explore-photo span {
    position: absolute;

    padding: 8px 12px;

    background: var(--paper);

    font-family: var(--font-hand);
    font-size: 16px;
    font-weight: 500;

    color: var(--green);

    box-shadow:
        0 3px 8px rgba(53, 48, 40, 0.13);
}


.activity-explore-photo--main {
    width: 66%;

    left: 0;
    top: 0;
}


.activity-explore-photo--main span {
    left: 28px;
    bottom: -18px;

    transform: rotate(-2deg);
}


.activity-explore-photo--secondary {
    width: 42%;

    right: 0;
    bottom: 0;

    transform: rotate(2deg);
}


.activity-explore-photo--secondary span {
    right: 20px;
    bottom: -18px;

    transform: rotate(2deg);
}


/* =====================================================
   FRANJA 4 FOTOS
===================================================== */

.activity-gallery {
    padding:
        clamp(80px, 8vw, 120px)
        4%;

    background: var(--paper);
}


.activity-gallery-grid {
    width: min(1280px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.activity-gallery figure {
    position: relative;

    margin: 0;

    overflow: hidden;
}


.activity-gallery img {
    display: block;

    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;
}


.activity-gallery figcaption {
    position: absolute;

    left: 14px;
    bottom: 12px;

    padding: 6px 10px;

    background: rgba(246, 241, 231, 0.88);

    font-family: var(--font-hand);
    font-size: 14px;
    font-weight: 500;

    color: var(--green);
}


/* =====================================================
   MAMUIL MALAL
===================================================== */

.activity-road {
    width: min(1180px, 88%);
    margin: 0 auto;

    padding:
        clamp(100px, 10vw, 150px)
        0;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;

    gap: clamp(60px, 8vw, 110px);
}


.activity-road-text h2 {
    margin: 0 0 26px;

    font-size: clamp(38px, 3.8vw, 55px);
    font-weight: 500;
    line-height: 1.07;

    color: var(--green);
}


.activity-road-text > p:last-child {
    margin: 0;

    font-size: clamp(18px, 1.35vw, 21px);
    font-weight: 300;
    line-height: 1.6;

    color: var(--mineral);
}


.activity-road-photo img {
    display: block;

    width: 100%;
    height: auto;
}


/* =====================================================
   MOMOLLUCO
===================================================== */

.activity-water {
    padding:
        clamp(100px, 9vw, 150px)
        6%;

    background: var(--green);

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;

    gap: clamp(60px, 8vw, 110px);
}


.activity-water-photo {
    max-width: 780px;
}


.activity-water-photo img {
    display: block;

    width: 100%;
    height: auto;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.20);
}


.activity-water-text {
    max-width: 470px;
}


.activity-water-text .activities-kicker {
    color: #e7c6a7;
}


.activity-water-text h2 {
    margin: 0 0 25px;

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 500;

    color: white;
}


.activity-water-text > p:last-child {
    margin: 0;

    font-size: clamp(18px, 1.4vw, 21px);
    font-weight: 300;
    line-height: 1.6;

    color: rgba(255,255,255,0.88);
}


/* =====================================================
   ADVERTENCIA
===================================================== */

.activity-note {
    width: min(900px, 86%);
    margin: 0 auto;

    padding:
        clamp(100px, 10vw, 150px)
        0;

    text-align: center;
}


.activity-note-hand {
    margin: 0 0 18px;

    font-family: var(--font-hand);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 500;

    color: #a45f49;
}


.activity-note h2 {
    margin: 0 auto 24px;

    max-width: 760px;

    font-size: clamp(35px, 3.6vw, 52px);
    font-weight: 500;
    line-height: 1.08;

    color: var(--green);
}


.activity-note > p:last-child {
    max-width: 620px;
    margin: 0 auto;

    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;

    color: var(--mineral);
}


/* =====================================================
   CIERRE
===================================================== */

.activity-closing {
    background: #e9dfc9;

    padding:
        clamp(100px, 10vw, 150px)
        7%;
}


.activity-closing-inner {
    width: min(850px, 100%);
    margin: 0 auto;

    text-align: center;
}


.activity-closing h2 {
    margin: 0 0 28px;

    font-size: clamp(44px, 5vw, 70px);
    font-weight: 500;
    line-height: 1;

    color: var(--green);
}


.activity-closing-inner > p:not(.activities-kicker) {
    max-width: 580px;

    margin: 0 auto 35px;

    font-size: 19px;
    font-weight: 300;
    line-height: 1.55;

    color: var(--mineral);
}


.activity-cta {
    display: inline-flex;

    padding: 14px 28px;

    border-radius: 999px;

    background: #ce6b34;
    color: white;

    font-size: 17px;
    font-weight: 500;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .activities-intro {
        width: 86%;

        grid-template-columns: 1fr;

        gap: 50px;

        padding:
            80px
            0
            95px;
    }


    .activities-intro h1 {
        font-size: 38px;
    }


    .activities-intro-photo::before {
        left: -10px;
        top: -12px;
    }


    .activity-story {
        width: 86%;

        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 100px;
    }


    .activity-story-text h2 {
        font-size: 36px;
    }


    .activity-landscape {
        height: 720px;
    }


    .activity-landscape-content {
        left: 7%;
        bottom: 8%;

        width: 86%;
    }


    .activity-landscape h2 {
        font-size: 42px;
    }


    .activity-explore {
        padding:
            90px
            7%
            105px;
    }


    .activity-explore-heading {
        margin-bottom: 60px;
    }


    .activity-explore-heading h2 {
        font-size: 37px;
    }


    .activity-explore-photos {
        min-height: 520px;
    }


    .activity-explore-photo--main {
        width: 82%;
    }


    .activity-explore-photo--secondary {
        width: 54%;
    }


    .activity-gallery {
        padding:
            70px
            7%;
    }


    .activity-gallery-grid {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }


    .activity-road {
        width: 86%;

        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            90px
            0;
    }


    .activity-road-text h2 {
        font-size: 37px;
    }


    .activity-water {
        padding:
            90px
            7%;

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .activity-water-text h2 {
        font-size: 38px;
    }


    .activity-note {
        padding:
            90px
            0;
    }


    .activity-note h2 {
        font-size: 35px;
    }


    .activity-closing {
        padding:
            90px
            7%;
    }


    .activity-closing h2 {
        font-size: 44px;
    }

}
