/* Start custom CSS for html, class: .elementor-element-c301aa2 *//* =====================================================
   LOCATION PAGE
   PREMIUM UK ENTERTAINMENT DESIGN
   ===================================================== */


/* =====================================================
   GLOBAL
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #F6D8BD;
    color: #5D3140;
    overflow-x: hidden;
}

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

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

.location-container {
    width: min(1200px, 90%);
    margin: auto;
}


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

.location-hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #5D3140;
}

.location-hero-bg {
    position: absolute;
    inset: -5%;

    background-image:
        url("DUMMY-LOCATION-HERO.jpg");

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

    transform: scale(1.08);

    transition: transform 0.2s linear;
}

.location-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(93,49,64,0.96) 0%,
            rgba(93,49,64,0.80) 48%,
            rgba(93,49,64,0.30) 100%
        );
}

.location-hero-content {
    position: relative;

    z-index: 2;

    width: min(1200px, 90%);

    margin: auto;

    padding-top: 80px;

    animation:
        locationHeroIn 1s ease forwards;
}

@keyframes locationHeroIn {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.location-eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    color: #F6D8BD;

    font-size: 11px;

    letter-spacing: 4px;

    font-weight: 700;

    margin-bottom: 25px;
}

.location-eyebrow span {
    width: 45px;

    height: 1px;

    background: #F39399;
}

.location-hero h1 {
    max-width: 850px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(55px, 8vw, 105px);

    line-height: 0.88;

    font-weight: 400;

    color: #F6D8BD;

    letter-spacing: -5px;
}

.location-hero h1 strong {
    display: block;

    color: #F39399;

    font-weight: 400;

    font-style: italic;
}

.location-hero h1 small {
    display: block;

    margin-top: 30px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    letter-spacing: 5px;

    line-height: 1.5;

    text-transform: uppercase;

    color: #F6D8BD;
}

.location-hero p {
    max-width: 620px;

    margin-top: 35px;

    color: #F6D8BD;

    font-size: 16px;

    line-height: 1.9;
}

.location-hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}

.location-main-btn,
.location-outline-btn {
    padding: 17px 28px;

    border:
        1px solid #F39399;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 700;

    text-transform: uppercase;

    transition: 0.4s ease;
}

.location-main-btn {
    background: #F39399;

    color: #5D3140;
}

.location-main-btn span {
    margin-left: 20px;

    transition: 0.4s ease;
}

.location-main-btn:hover {
    background: #CF4173;

    color: #F6D8BD;

    transform:
        translateY(-4px);
}

.location-main-btn:hover span {
    margin-left: 28px;
}

.location-outline-btn {
    color: #F6D8BD;
}

.location-outline-btn:hover {
    background: #F6D8BD;

    color: #5D3140;

    transform:
        translateY(-4px);
}

.location-hero-number {
    position: absolute;

    z-index: 3;

    right: 5%;

    bottom: 45px;

    text-align: right;
}

.location-hero-number span {
    display: block;

    color: #F39399;

    font-size: 9px;

    letter-spacing: 3px;

    margin-bottom: 8px;
}

.location-hero-number a {
    color: #F6D8BD;

    font-size: 17px;

    letter-spacing: 1px;
}


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

.location-intro {
    padding: 120px 0;

    background: #F6D8BD;
}

.location-intro-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 70px;
}

.location-number {
    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 700;

    color: #CF4173;
}

.location-intro-heading h2 {
    width: 65%;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(50px, 7vw, 90px);

    line-height: 0.95;

    font-weight: 400;

    color: #5D3140;

    letter-spacing: -4px;
}

.location-intro-heading h2 span {
    display: block;

    color: #CF4173;

    font-style: italic;
}

.location-intro-grid {
    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 90px;

    align-items: center;
}

.location-intro-text {
    opacity: 0;

    transform:
        translateY(40px);

    transition: 0.8s ease;
}

.location-intro-text.location-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.location-intro-text p {
    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 25px;
}

.location-large-text {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px !important;

    line-height: 1.35 !important;

    color: #5D3140;
}

.location-intro-text strong {
    color: #CF4173;
}

.location-stat-card {
    background: #5D3140;

    padding: 45px;

    opacity: 0;

    transform:
        translateX(40px);

    transition: 0.8s ease;
}

.location-stat-card.location-visible {
    opacity: 1;

    transform:
        translateX(0);
}

.location-stat {
    padding: 25px 0;

    border-bottom:
        1px solid #F39399;
}

.location-stat:first-child {
    padding-top: 0;
}

.location-stat:last-child {
    border-bottom: 0;

    padding-bottom: 0;
}

.location-stat strong {
    display: block;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 50px;

    font-weight: 400;

    color: #F39399;
}

.location-stat span {
    font-size: 9px;

    letter-spacing: 3px;

    color: #F6D8BD;
}


/* =====================================================
   UK LOCATIONS
===================================================== */

.uk-locations {
    position: relative;

    padding: 130px 0;

    background: #5D3140;

    overflow: hidden;
}

.locations-decoration {
    position: absolute;

    top: 20px;

    right: -40px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 150px;

    color: #F39399;

    opacity: 0.07;

    white-space: nowrap;
}

.locations-heading {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 70px;
}

.location-small-eyebrow {
    font-size: 11px;

    letter-spacing: 4px;

    font-weight: 700;

    color: #CF4173;
}

.locations-heading h2 {
    margin-top: 18px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(50px, 7vw, 90px);

    line-height: 0.9;

    font-weight: 400;

    color: #F6D8BD;

    letter-spacing: -4px;
}

.locations-heading h2 span {
    display: block;

    color: #F39399;

    font-style: italic;
}

.locations-heading p {
    max-width: 380px;

    color: #F6D8BD;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   CITY CARDS
===================================================== */

.location-cards {
    display: grid;

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

    gap: 30px;
}

.city-card {
    background: #F6D8BD;

    overflow: hidden;

    opacity: 0;

    transform:
        translateY(50px);

    transition:
        opacity 0.7s ease,
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.city-card.location-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.city-card:hover {
    box-shadow:
        0 25px 60px
        rgba(0,0,0,0.20);
}

.city-image {
    position: relative;

    height: 370px;

    overflow: hidden;
}

.city-image img {
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}

.city-card:hover
.city-image img {
    transform:
        scale(1.08);
}

.city-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(93,49,64,0.05),
            rgba(93,49,64,0.70)
        );
}

.city-number {
    position: absolute;

    top: 25px;

    left: 25px;

    color: #F6D8BD;

    font-size: 11px;

    letter-spacing: 3px;
}

.city-arrow {
    position: absolute;

    right: 25px;

    top: 20px;

    width: 45px;

    height: 45px;

    border:
        1px solid #F6D8BD;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #F6D8BD;

    font-size: 18px;

    transition: 0.4s ease;
}

.city-card:hover .city-arrow {
    background: #F39399;

    border-color: #F39399;

    color: #5D3140;

    transform:
        rotate(45deg);
}

.city-content {
    padding: 30px;
}

.city-content > span {
    font-size: 9px;

    letter-spacing: 3px;

    color: #CF4173;

    font-weight: 700;
}

.city-content h3 {
    margin: 8px 0 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;

    font-weight: 400;

    color: #5D3140;
}

.city-content p {
    max-width: 480px;

    font-size: 13px;

    line-height: 1.7;

    color: #5D3140;
}

.city-card-featured {
    grid-column:
        span 2;
}

.city-card-featured .city-image {
    height: 430px;
}


/* =====================================================
   SERVICES
===================================================== */

.location-services {
    padding: 130px 0;

    background: #F39399;
}

.services-location-heading {
    margin-bottom: 70px;
}

.services-location-heading h2 {
    max-width: 750px;

    margin-top: 18px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(50px, 7vw, 85px);

    line-height: 0.95;

    font-weight: 400;

    color: #5D3140;

    letter-spacing: -4px;
}

.services-location-heading h2 span {
    display: block;

    color: #CF4173;

    font-style: italic;
}

.location-service-grid {
    display: grid;

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

    gap: 18px;
}

.location-service-card {
    position: relative;

    min-height: 390px;

    padding: 35px 28px;

    background: #F6D8BD;

    overflow: hidden;

    opacity: 0;

    transform:
        translateY(45px);

    transition: 0.6s ease;
}

.location-service-card.location-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.location-service-card:hover {
    background: #5D3140;

    transform:
        translateY(-10px);
}

.location-service-card > span {
    font-size: 10px;

    letter-spacing: 3px;

    color: #CF4173;
}

.service-icon {
    margin-top: 70px;

    font-size: 35px;

    color: #CF4173;

    transition: 0.4s ease;
}

.location-service-card:hover
.service-icon {
    transform:
        rotate(90deg);
}

.location-service-card h3 {
    margin-top: 25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    line-height: 1.05;

    font-weight: 400;

    color: #5D3140;
}

.location-service-card p {
    margin-top: 18px;

    font-size: 12px;

    line-height: 1.7;

    color: #5D3140;
}

.location-service-card a {
    position: absolute;

    bottom: 28px;

    left: 28px;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;

    color: #CF4173;
}

.location-service-card a strong {
    margin-left: 15px;

    transition: 0.4s ease;
}

.location-service-card:hover h3,
.location-service-card:hover p {
    color: #F6D8BD;
}

.location-service-card:hover > span,
.location-service-card:hover a,
.location-service-card:hover .service-icon {
    color: #F39399;
}

.location-service-card:hover a strong {
    margin-left: 25px;
}


/* =====================================================
   SEO
===================================================== */

.location-seo {
    padding: 130px 0;

    background: #F6D8BD;
}

.seo-location-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 100px;
}

.seo-location-title {
    opacity: 0;

    transform:
        translateX(-40px);

    transition: 0.8s ease;
}

.seo-location-title.location-visible {
    opacity: 1;

    transform:
        translateX(0);
}

.seo-location-title h2 {
    margin-top: 20px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(45px, 5vw, 70px);

    line-height: 0.95;

    font-weight: 400;

    color: #5D3140;

    letter-spacing: -3px;
}

.seo-location-title h2 span {
    display: block;

    color: #CF4173;

    font-style: italic;
}

.seo-location-text {
    opacity: 0;

    transform:
        translateX(40px);

    transition: 0.8s ease;
}

.seo-location-text.location-visible {
    opacity: 1;

    transform:
        translateX(0);
}

.seo-location-text p {
    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 25px;
}

.seo-location-text strong {
    color: #CF4173;
}


/* =====================================================
   FINAL CTA
===================================================== */

.location-final {
    position: relative;

    padding: 150px 0;

    overflow: hidden;

    background: #CF4173;
}

.location-final-circle {
    position: absolute;

    width: 550px;

    height: 550px;

    border:
        1px solid #F39399;

    border-radius: 50%;

    right: -180px;

    top: -180px;

    animation:
        finalRotate
        18s linear infinite;
}

@keyframes finalRotate {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }

}

.location-final-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    opacity: 0;

    transform:
        translateY(40px);

    transition: 0.8s ease;
}

.location-final-content.location-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.location-final-content
.location-small-eyebrow {
    color: #F6D8BD;
}

.location-final-content h2 {
    margin-top: 20px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(60px, 8vw, 105px);

    line-height: 0.9;

    font-weight: 400;

    color: #F6D8BD;

    letter-spacing: -5px;
}

.location-final-content h2 span {
    display: block;

    color: #F39399;

    font-style: italic;
}

.location-final-content p {
    max-width: 600px;

    margin-top: 30px;

    color: #F6D8BD;

    font-size: 15px;

    line-height: 1.8;
}

.location-final-actions {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}

.location-call-btn,
.location-whatsapp-btn {
    padding: 17px 27px;

    border:
        1px solid #F6D8BD;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;

    transition: 0.4s ease;
}

.location-call-btn {
    background: #F6D8BD;

    color: #5D3140;
}

.location-call-btn span,
.location-whatsapp-btn span {
    margin-left: 20px;
}

.location-call-btn:hover {
    background: #5D3140;

    border-color: #5D3140;

    color: #F6D8BD;

    transform:
        translateY(-4px);
}

.location-whatsapp-btn {
    color: #F6D8BD;
}

.location-whatsapp-btn:hover {
    background: #F39399;

    border-color: #F39399;

    color: #5D3140;

    transform:
        translateY(-4px);
}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.location-floating-whatsapp {
    position: fixed;

    z-index: 999;

    right: 25px;

    bottom: 25px;

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #CF4173;

    color: #F6D8BD;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 12px 35px
        rgba(93,49,64,0.30);

    transition: 0.4s ease;
}

.location-floating-whatsapp span {
    font-size: 8px;

    letter-spacing: 1px;

    transform:
        rotate(-90deg);
}

.location-floating-whatsapp strong {
    position: absolute;

    font-size: 14px;

    opacity: 0;

    transform:
        translateX(10px);

    transition: 0.4s ease;
}

.location-floating-whatsapp:hover {
    width: 150px;

    border-radius: 40px;
}

.location-floating-whatsapp:hover span {
    transform:
        rotate(0);
}

.location-floating-whatsapp:hover strong {
    opacity: 1;

    transform:
        translateX(55px);
}


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

@media (max-width: 1000px) {

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

    .location-intro-grid {
        gap: 50px;
    }

    .seo-location-grid {
        gap: 50px;
    }

}


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

@media (max-width: 768px) {

    .location-hero {
        min-height: 90vh;
    }

    .location-hero-content {
        padding-top: 40px;
    }

    .location-hero h1 {
        font-size:
            clamp(50px, 15vw, 75px);

        letter-spacing: -3px;
    }

    .location-hero h1 small {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .location-hero p {
        font-size: 14px;
    }

    .location-hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .location-hero-number {
        right: 5%;

        bottom: 25px;
    }

    .location-hero-number a {
        font-size: 14px;
    }


    .location-intro,
    .uk-locations,
    .location-services,
    .location-seo {
        padding: 90px 0;
    }


    .location-intro-heading {
        display: block;
    }

    .location-intro-heading h2 {
        width: 100%;

        margin-top: 30px;

        font-size: 58px;
    }

    .location-intro-grid {
        grid-template-columns: 1fr;
    }

    .location-stat-card {
        padding: 35px;
    }


    .locations-heading {
        display: block;
    }

    .locations-heading p {
        margin-top: 25px;
    }

    .locations-heading h2 {
        font-size: 58px;
    }


    .location-cards {
        grid-template-columns: 1fr;
    }

    .city-card-featured {
        grid-column:
            auto;
    }

    .city-card-featured
    .city-image {
        height: 330px;
    }

    .city-image {
        height: 330px;
    }


    .services-location-heading h2 {
        font-size: 58px;
    }

    .location-service-grid {
        grid-template-columns: 1fr;
    }

    .location-service-card {
        min-height: 350px;
    }


    .seo-location-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .seo-location-title h2 {
        font-size: 55px;
    }


    .location-final {
        padding: 110px 0;
    }

    .location-final-content h2 {
        font-size: 65px;

        letter-spacing: -3px;
    }

    .location-final-actions {
        flex-direction: column;

        align-items: flex-start;
    }

}


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

@media (max-width: 480px) {

    .location-container {
        width: 88%;
    }

    .location-hero h1 {
        font-size: 48px;
    }

    .location-hero p {
        font-size: 13px;

        line-height: 1.7;
    }

    .location-intro-heading h2,
    .locations-heading h2,
    .services-location-heading h2 {
        font-size: 48px;
    }

    .location-large-text {
        font-size: 25px !important;
    }

    .city-image {
        height: 280px;
    }

    .city-card-featured
    .city-image {
        height: 280px;
    }

    .city-content h3 {
        font-size: 36px;
    }

    .seo-location-title h2 {
        font-size: 46px;
    }

    .location-final-content h2 {
        font-size: 52px;
    }

    .location-floating-whatsapp {
        width: 60px;

        height: 60px;

        right: 15px;

        bottom: 15px;
    }

}/* End custom CSS */