/* =========================================================
   PUGLIA
   ========================================================= */

.puglia-landing,
.puglia-room {
    background: #fff;
    color: #111;
}


/* =========================================================
   PUGLIA PAGE HEADINGS
   ========================================================= */

.puglia-page-heading,
.puglia-room-heading {
    padding: 95px 2.3vw 42px;
    text-align: center;
}

.puglia-page-heading h1,
.puglia-room-heading h1 {
    margin: 0;

    color: #111;

    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;

    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.puglia-room-heading a {
    color: inherit;
    text-decoration: none;
}

/* =========================================================
   PUGLIA LANDING PAGE ROOM GRID
   ========================================================= */

.puglia-room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(280px, 41vw, 650px);
    gap: 5px;
    padding: 0 2.3vw;
}

.puglia-room-card {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    background: #eee;
    color: #fff;
}


/*
 * Grid pattern:
 *
 * wide + narrow
 * narrow + wide
 * wide + narrow
 */

.puglia-room-card:nth-child(6n + 1),
.puglia-room-card:nth-child(6n + 4),
.puglia-room-card:nth-child(6n + 5) {
    grid-column: span 2;
}


/* Room image */

.puglia-room-card__image {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 500ms ease,
        filter 250ms ease;
}


/* Dark hover overlay */

.puglia-room-card::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    background: rgba(0, 0, 0, 0);

    pointer-events: none;

    transition: background 250ms ease;
}


/* Room title */

.puglia-room-card__title {
    position: absolute;

    top: 50%;
    left: 50%;
    z-index: 3;

    width: 90%;

    margin: 0;

    color: #fff;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;

    letter-spacing: 0.04em;

    text-align: center;
    text-transform: uppercase;

    transform: translate(-50%, -50%);

    opacity: 0;

    pointer-events: none;

    transition: opacity 250ms ease;
}


/* Desktop hover */

@media (hover: hover) {

    .puglia-room-card:hover .puglia-room-card__image,
    .puglia-room-card:focus-visible .puglia-room-card__image {
        transform: scale(1.015);
    }

    .puglia-room-card:hover::after,
    .puglia-room-card:focus-visible::after {
        background: rgba(0, 0, 0, 0.18);
    }

    .puglia-room-card:hover .puglia-room-card__title,
    .puglia-room-card:focus-visible .puglia-room-card__title {
        opacity: 1;
    }
}


/* =========================================================
   PUGLIA CONTACT SECTION
   ========================================================= */

.puglia-contact {
    margin: 6px 2.3vw 80px;
}

.puglia-contact__image {
    overflow: hidden;
    background: #eee;
}

.puglia-contact__image img {
    display: block;
    width: 100%;
    height: auto;
}

.puglia-contact__details {
    padding: 30px 20px 10px;
    text-align: center;
}

.puglia-contact__details h2 {
    margin: 0 0 14px;

    font-size: 18px;
    font-weight: 400;

    text-transform: lowercase;
}

.puglia-contact__details a {
    display: block;
}

.puglia-contact__details a,
.puglia-contact__details p {
    margin: 5px 0;

    color: inherit;

    font-size: 13px;
    line-height: 1.5;

    text-decoration: none;
}

.puglia-contact__details a:hover {
    text-decoration: underline;
}


/* =========================================================
   PUGLIA ROOM HERO / GALLERY
   ========================================================= */

.puglia-room-hero {
    position: relative;

    width: 100%;
    height: 80vh;
    min-height: 600px;

    overflow: hidden;

    background: #eee;

    outline: none;
}

.puglia-room-slides {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.puglia-room-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    margin: 0;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 350ms ease,
        visibility 350ms ease;
}

.puglia-room-slide.is-active {
    z-index: 1;

    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

.puglia-room-slide__image {
    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

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


/* =========================================================
   ROOM TITLE OVER HERO
   ========================================================= */

.puglia-room-title {
    position: absolute;

    top: 25px;
    left: 25px;
    z-index: 10;

    margin: 0;

    color: #fff;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;

    letter-spacing: 0.03em;

    text-transform: uppercase;

    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.puglia-room-title a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   HERO SLIDER ARROWS
   ========================================================= */

.puglia-room-arrow {
    position: absolute;

    top: 50%;
    z-index: 10;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 22px;
    line-height: 48px;

    text-align: center;

    cursor: pointer;

    transform: translateY(-50%);

    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.puglia-room-arrow--previous {
    left: 20px;
}

.puglia-room-arrow--next {
    right: 20px;
}

.puglia-room-arrow:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 2px;
}


/* =========================================================
   ROOM DESCRIPTION
   ========================================================= */

.puglia-room-introduction {
    padding: 32px 18px 48px;
}

.puglia-room-introduction h2 {
    margin: 0 0 10px;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;

    text-transform: uppercase;
}

.puglia-room-introduction__content {
    max-width: 1200px;

    font-size: 13px;
    line-height: 1.45;
}

.puglia-room-introduction__content > :first-child {
    margin-top: 0;
}

.puglia-room-introduction__content > :last-child {
    margin-bottom: 0;
}


/* =========================================================
   FEATURED COLLECTIONS HEADING
   ========================================================= */

.puglia-collections__heading {
    padding: 26px 18px;

    background: #f1f1f1;
}

.puglia-collections__heading h2 {
    margin: 0;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;

    text-transform: uppercase;
}


/* =========================================================
   FEATURED COLLECTION GRID
   ========================================================= */

.puglia-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 6px;

    padding: 6px;
}

.puglia-product-card {
    position: relative;

    display: block;

    min-width: 0;

    overflow: hidden;

    background: #eee;
    color: #fff;
}


/* Product image */

.puglia-product-card__image {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    transition: transform 400ms ease;
}


/* Product hover overlay */

.puglia-product-card::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    background: rgba(0, 0, 0, 0);

    pointer-events: none;

    transition: background 250ms ease;
}


/* Product title - centered */

.puglia-product-card__title {
    position: absolute;

    top: 50%;
    left: 50%;
    z-index: 3;

    width: 90%;

    color: #fff;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;

    letter-spacing: 0.03em;

    text-align: center;
    text-transform: uppercase;

    transform: translate(-50%, -50%);

    opacity: 0;

    pointer-events: none;

    transition: opacity 250ms ease;
}


/* Product hover */

@media (hover: hover) {

    .puglia-product-card:hover .puglia-product-card__image,
    .puglia-product-card:focus-visible .puglia-product-card__image {
        transform: scale(1.015);
    }

    .puglia-product-card:hover::after,
    .puglia-product-card:focus-visible::after {
        background: rgba(0, 0, 0, 0.18);
    }

    .puglia-product-card:hover .puglia-product-card__title,
    .puglia-product-card:focus-visible .puglia-product-card__title {
        opacity: 1;
    }
}


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

.footer-locations {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: clamp(50px, 18vw, 260px);

    margin-top: 25px;

    font-size: 18px;

    text-transform: lowercase;
}

.footer-locations a,
.footer-locations span {
    color: inherit;
    text-decoration: none;
}


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

@media (max-width: 767px) {

    /* Landing page */

    .puglia-page-heading {
        padding-right: 10px;
        padding-left: 10px;
    }


    /* Room grid */

    .puglia-room-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: auto;

        gap: 5px;

        padding-right: 10px;
        padding-left: 10px;
    }

    .puglia-room-card,
    .puglia-room-card:nth-child(6n + 1),
    .puglia-room-card:nth-child(6n + 4),
    .puglia-room-card:nth-child(6n + 5) {
        grid-column: span 1;

        aspect-ratio: 4 / 3;
    }


    /* Contact */

    .puglia-contact {
        margin-right: 10px;
        margin-left: 10px;
    }


    /* Hero */

    .puglia-room-hero {
        height: 70vh;
        min-height: 450px;
    }

    .puglia-room-title {
        top: 18px;
        left: 15px;
    }

    .puglia-room-arrow--previous {
        left: 8px;
    }

    .puglia-room-arrow--next {
        right: 8px;
    }


    /* Description */

    .puglia-room-introduction {
        padding: 25px 15px 40px;
    }


    /* Collections */

    .puglia-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* Footer */

    .footer-locations {
        gap: 55px;

        font-size: 16px;
    }
}


/* =========================================================
   TOUCH DEVICES
   =========================================================
   Phones/tablets don't have a true hover state, so show
   the room/product names over the images by default.
   ========================================================= */

@media (hover: none) {

    .puglia-room-card::after,
    .puglia-product-card::after {
        background: rgba(0, 0, 0, 0.12);
    }

    .puglia-room-card__title,
    .puglia-product-card__title {
        opacity: 1;
    }
}


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

@media (max-width: 480px) {

    .puglia-product-grid {
        grid-template-columns: 1fr;
    }

    .puglia-room-hero {
        min-height: 400px;
    }

    .puglia-contact__details {
        padding-top: 22px;
    }
}