/* ======================== LOCATION PAGE STYLES ======================== */

/* Hero Section */
.location-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.mirror-image{
transform: scaleX(-1);
}
.fixed-height{
    height: 4.7rem;
}
.location-hero-img {
    
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.5)); */
    /* display: flex;
    align-items: flex-end; */
    display: flex;
    /* justify-content: center;    */
    align-items: center;       
    text-align: center;
    padding: 50px 150px;
}

.location-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    /* letter-spacing: 1px; */
    text-shadow: 0px 0px 20px #000;
}

/* Description */
.location-description {
    padding: 50px 20px;
    text-align: center;
}

.location-description-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #444;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.5;
}

/* Section Title */
.location-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 35px;
}

.text-primary {
    color: #e02020 !important;
}

.text-grey {
    color: rgb(66 63 65) !important;
}

/* ======================== MUST-VISIT SPOTS ======================== */
.location-spots {
    padding: 30px 0 50px;
    background-color: rgb(241 241 242);
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.spot-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 230px;
    cursor: pointer;
}

.spot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.spot-card:hover img {
    transform: scale(1.06);
}

.spot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.6rem;
    /* padding: 20px 16px 14px; */
    background: linear-gradient(to top, rgba(241, 4, 9, 0.95), rgba(241, 4, 9, 0.7));
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
}

/* ======================== PLACES TO EAT ======================== */
.location-restaurants {
    padding: 50px 0 50px;
}

.restaurant-tag {
    background: rgb(255 194 0);
    color: rgb(92 64 62);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 6px 20px;
    border-radius: 20px;
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
    text-align: center;
    letter-spacing: 0.3px;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.restaurant-card {
     position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.restaurant-card img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    /* border-radius: 14px; */
    display: block;
    transition: transform 0.4s ease;
}

.restaurant-card:hover img {
    transform: scale(1.06);
}

.restaurant-name {
       position: absolute;
    bottom: 0;
     width: 100%;
     padding:0.6rem;
    /* padding: 12px 10px; */
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: white;
     background: linear-gradient(to top, rgba(241, 4, 9, 0.95), rgba(241, 4, 9, 0.7));
    text-align: center;
    /* padding: 10px 5px 0; */
}

/* ======================== ACTIVITIES CAROUSEL ======================== */
.location-activities {
    padding: 50px 0 50px;
}

.activities-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.activity-nav-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    /* border: 2px solid #d0d0d0; */
    border:none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    z-index: 2;
    padding: 0;
}

.activity-nav-btn:hover {
    border-color: #e02020;
    color: #e02020;
}

.activity-nav-btn svg {
    width: 30px;
    height: 30px;
}

#activities-carousel {
    flex: 1;
    min-width: 0;
}

.activity-card {
    text-align: center;
}

.activity-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.activity-name {
    padding: 12px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50;
    align-items: center;
    color: white;
}

/* ======================== LANGUAGES SECTION ======================== */
.location-languages {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.location-language-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.5)); */
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* text-align: center; */
    padding: 50px 150px;
}

.languages-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.languages-text {
    flex: 1;
}

.languages-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: #fff;
    color: #e02020;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.languages-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    color: #fff;
    max-width: 40rem;
}

.languages-text p strong {
    font-weight: 600;
    /* text-decoration: underline; */
}


.location-languages-img {
   width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ======================== MORE REASONS TO VISIT ======================== */
.location-reasons {
    padding: 60px 0 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.reason-card {
    /* position: relative; */
    border-radius: 14px;
    /* overflow: hidden; */
    text-align: left;
    display: flex;
    flex-direction: column;
}

.reason-card img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    /* border-radius: 14px; */
    display: block;
    /* margin-bottom: 2.2rem; */
    transition: transform 0.4s ease;
    border-radius: 10px 10px 0 0;
}

.reason-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: black;
    /* margin-bottom: 4px; */
}
.text-overlay{
    border: 1px solid white;
    width: 100%;
    padding: 0.6rem;
    background: rgb(233 220 211);
    flex: 1;
    border-radius: 0 0 10px 10px;
}
.reason-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: black;
    line-height: 1.6;
    margin: 0;
}

/* ======================== RESPONSIVE - LARGE DESKTOP (1920+) ======================== */
@media (min-width: 1920px) {
    .location-hero {
        height: 560px;
    }

    .location-hero-title {
        font-size: 3.8rem;
    }

    .spots-grid,
    .restaurants-grid,
    .activities-carousel-wrapper,
    .reasons-grid {
        max-width: 1100px;
    }
}

/* ======================== RESPONSIVE - TABLET LANDSCAPE (1100px) ======================== */
@media (max-width: 1100px) {
    .location-hero {
        height: 400px;
    }

    .location-hero-overlay ,.location-language-hero-overlay {
        padding: 40px 50px;
    }

    .location-hero-title {
        font-size: 2.8rem;
    }
}

/* ======================== RESPONSIVE - TABLET (991px) ======================== */
@media (max-width: 991px) {
    .location-hero {
        height: 145px;
    }

    .location-hero-overlay ,.location-language-hero-overlay{
        padding: 30px 35px;
    }

    .location-hero-title {
        font-size: 2.4rem;
    }

    .location-description {
        padding: 35px 20px;
    }

    .location-section-title {
        font-size: 1.35rem;
        margin-bottom: 25px;
    }

    .spots-grid {
        gap: 16px;
    }

    .spot-card {
        height: 200px;
    }

    .restaurants-grid {
        gap: 16px;
    }

    .restaurant-card img {
        height: 160px;
    }

    /* .activity-card img {
        height: 200px;
    } */

    .languages-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .location-languages-img {
        width: 100%;
    }

    .location-languages-img {
        height: 240px;
        width: 100%;
    }

    .location-languages {
        padding: 45px 0;
    }

    .reasons-grid {
        gap: 20px;
    }

    .reason-card img {
        height: 170px;
    }
}

/* ======================== RESPONSIVE - MOBILE LANDSCAPE / SMALL TABLET (768px) ======================== */
@media (max-width: 768px) {
    .location-hero {
        height: 300px;
    }

    .location-hero-overlay ,.location-language-hero-overlay {
        padding: 24px 24px;
    }

    .location-hero-title {
        font-size: 2rem;
    }

    .location-description {
        padding: 28px 16px;
    }

    .location-description-text {
        font-size: 0.92rem;
        max-width: 100%;
    }

    .location-section-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .location-spots {
        background-color: rgb(241 241 242);
        padding: 20px 0 35px;
    }

    .spots-grid {
        gap: 12px;
    }

    .spot-card {
        height: 180px;
    }

    .spot-label {
        font-size: 0.82rem;
        padding: 16px 12px 10px;
    }

    .location-restaurants {
        padding: 30px 0 35px;
    }

    .restaurants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .restaurant-card img {
        height: 150px;
    }

    .restaurant-name {
        font-size: 0.8rem;
    }

    .location-activities {
        padding: 30px 0 35px;
    }

    /* .activity-card img {
        height: 180px;
    } */

    .activity-nav-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .activity-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .location-languages {
        padding: 40px 0;
        margin-top: 10px;
    }

    .languages-content {
        gap: 24px;
    }

    .languages-tag {
        font-size: 0.72rem;
    }

    .languages-text p {
        font-size: 0.9rem;
    }

    .location-languages-img {
        height: 200px;
    }

    .location-reasons {
        padding: 50px 0 0;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .reason-card img {
        height: 160px;
    }

    .reason-card h4 {
        font-size: 0.88rem;
    }

    .reason-card p {
        font-size: 0.78rem;
    }
}

/* ======================== RESPONSIVE - MOBILE PORTRAIT (667px) ======================== */
@media (max-width: 667px) {
    .location-hero {
        height: 260px;
    }

    .location-hero-overlay ,.location-language-hero-overlay{
        padding: 20px 20px;
    }

    .location-hero-title {
        font-size: 2rem;
    }

    .spots-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .spot-card {
        height: 160px;
    }

    .restaurants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .restaurant-card img {
        height: 130px;
    }

    /* .activity-card img {
        height: 170px;
    } */

    .location-languages-img{
        height: 180px;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .reason-card img {
        height: 140px;
    }
}

/* ======================== RESPONSIVE - SMALL MOBILE (576px) ======================== */
@media (max-width: 576px) {
    .location-hero {
        height: 240px;
    }

    .location-hero-title {
        font-size: 2rem;
    }

    .location-description {
        padding: 22px 12px;
    }

    .location-description-text {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .location-section-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .spots-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .spot-card {
        height: 140px;
    }

    .spot-label {
        font-size: 0.82rem;
        padding: 14px 8px 8px;
    }

    .restaurants-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .restaurant-card img {
        height: 120px;
        border-radius: 10px;
    }

    .restaurant-name {
        font-size: 0.8rem;
        padding: 6px 2px 0;
    }

    .restaurant-tag {
        font-size: 0.72rem;
        padding: 5px 14px;
    }

    .activity-nav-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .activity-nav-btn svg {
        width: 24px;
        height: 24px;
    }

    /* .activity-card img {
        height: 160px;
        border-radius: 10px;
    } */

    .activity-name {
        font-size: 0.82rem;
    }

    .languages-content {
        gap: 20px;
    }

    .languages-tag {
        font-size: 0.72rem;
        padding: 5px 14px;
    }

    .languages-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .location-languages-img{
        height: 170px;
        border-radius: 10px;
    }

    .location-reasons {
        padding: 35px 0 0;
    }

    .reasons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .reason-card img {
        height: 120px;
        /* border-radius: 10px; */
    }

    .reason-card h4 {
        font-size: 0.88rem;
        margin-bottom: 2px;
    }

    .reason-card p {
        font-size: 0.78rem;
        line-height: 1.5;
    }
}

/* ======================== RESPONSIVE - EXTRA SMALL MOBILE (480px) ======================== */
@media (max-width: 480px) {
    .location-hero {
        height: 145px;
    }

    .location-hero-overlay ,.location-language-hero-overlay{
        padding: 16px 16px;
    }

    .location-hero-title {
        font-size: 2rem;
    }

    .spot-card {
        height: 130px;
    }

    .restaurants-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .restaurant-card img {
        height: 110px;
    }

    .reasons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .reason-card img {
        height: 110px;
    }
}
