/*
Theme Name: Reno Tahoe
Theme URI: https://example.com/reno-tahoe
Author: Your Name
Author URI: https://example.com
Description: A modern tourism theme for Reno Tahoe featuring dynamic carousels, hero sections, and interactive elements.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reno-tahoe
Tags: tourism, travel, custom-logo, custom-menu, featured-images, theme-options
*/


/* Reset and Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0093B2;
    --dark: #1a1a1a;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --gray-bg: #f5f5f5;
    --red: #DA291C;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0px;
    }
    .location-header h3{
        font-size: 20px !important;
    }
}
.container:has(.hero){
    max-width: 1702px;
}
.hero-cards-section .container{
    max-width: 1702px;
}
@media (max-width: 1440px) {
  /* CSS for screens up to 1440px */
.container:has(.hero){
    max-width: 90%;
}
.hero-cards-section .container{
    max-width: 90%;
}

}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}






.quiz-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 28px;
    border: 2px solid #000;
    border-radius: 40px;
    background: #fff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
}

/* icon size */
.quiz-btn i {
    font-size: 25px;
}

/* 🔵 STARTING CIRCLE */
.quiz-btn::before {
    content: "";
    position: absolute;
    right: 24px;                 /* aligns with arrow */
    top: 50%;
    width: 22px;
    height: 22px;
    background: #CEDC00;
    border-radius: 50%;
    transform: translateY(-50%);
    transform-origin: right center;
    transition:
        width 0.20s ease-out,
        height 0.35s ease-out,
        right 0.25s ease-out,
        border-radius 0.25s ease-out;
    z-index: 0;

    border: 2px solid #CEDC00;
}

/* keep text & icon above */
.quiz-btn span,
.quiz-btn i {
    position: relative;
    z-index: 2;
}

/* HOVER – staged expansion */
.quiz-btn:hover::before {
    width: 120%;
    height: 120%;
    right: -10%;
    border-radius: 40px;
     transition:
        width 0.25s ease-in,
        height 0.15s ease-in,
        right 0.15s ease-in,
        border-radius 0.25s ease-in;
    border: unset;

    
}

.quiz-btn:hover {
    color: #000;
}
















.btn-arrow {
    color: var(--dark);
}
.made-for-you .btn-arrow{
    border: 2px solid #000000;
    border-radius: 50px;
    padding: 10px 24px;
}

.btn-arrow .arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--dark);
    position: relative;
    transition: transform 0.3s;
}

.btn-arrow .arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-top: 2px solid var(--white);
    transform: translate(-60%, -50%) rotate(45deg);
}

.btn-arrow:hover .arrow {
    transform: translateX(4px);
}

.btn-text {
    color: var(--dark);
    font-size: 14px;
}

.btn-instagram {
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 14px;
}

.logo {
    color: var(--dark);
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    padding: 8px;
    color: var(--dark);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
}

/* .container{
    max-width: 1440px;
    width: 100%;
    height:100%;
    position: relative;
} */

/* Hero */
.hero {
    position: relative;
    height: 700px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 4.5rem auto 0px;
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.hero-content {
    text-align: left;
    color: var(--white);
    max-width: 720px;
    padding-right: 20px;
}

.hero-content h1 {
    font-size: calc(1.25vw + 3rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.4);
    letter-spacing: -0.5px;
}

.hero-search-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--white);
    text-shadow: 1px 2px 6px rgba(0,0,0,0.4);
    letter-spacing: 0.3px;
}

.hero-search {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 30px;
    padding: 5px 5px 5px 18px;
    width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 12px;
    color: var(--text);
    background: transparent;
    min-width: 0;
}

.hero-search input::placeholder {
    color: #999;
}

.hero-search-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.hero-search-btn:hover {
    background: #333;
}

/* Hero Cards Section */
.hero-cards-section {
    background: var(--white);
    padding: 1rem 0 8rem
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.hero-card {
    display: block;
}

.hero-card:hover img{
    transform: scale(1.1)
}
.hero-card-img-section{
    overflow: hidden;
    height: 200px;
    width: 100%;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    overflow: hidden; 
    transition: transform 0.5s ease;
    transform-origin: center center;
}

.hero-card span {
    display: block;
    padding: 14px 12px;
    padding-left: 0px;
    background: var(--white);
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

/* Wave Divider */
.wave-divider {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Made Just For You */
.made-for-you {
    padding: 80px 0;
    background: var(--gray-bg);
}

.made-for-you-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}





    .made-just-container {
            width: 100%;
            max-width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Image Grid Container */
        .made-just-image-container {
            position: relative;
            width: 100%;
            max-width: 27rem;
            min-height: 25rem;
        }

        /* Image Card */
        .made-just-image-card {
            position: absolute;
            opacity: 0;
            transform: translateY(50px) scale(0.8);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Position for 3 images - overlapping layout - Desktop */
        .made-just-image-card:nth-child(1) {
            top: 2rem;
            left: 0;
            width: min(250px, 40vw);
            z-index: 3;
            
        }

        .made-just-image-card:nth-child(2) {
            top: 100px;
            right: 0;
            width: min(220px, 38vw);
            z-index: 2;
        }

        .made-just-image-card:nth-child(3) {
            bottom: 0;
            left: 50px;
            width: min(240px, 39vw);
            z-index: 1;
        }

        .made-just-image-card.made-just-show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .made-just-image-card.made-just-selected {
            z-index: 10 !important;
            animation: madeJustSelectAndTilt 1s ease-in-out forwards;
        }

        .made-just-image-card.made-just-fade-out {
            animation: madeJustFadeOut 1s ease-in-out forwards;
        }

        @keyframes madeJustSelectAndTilt {
            0% {
                transform: scale(1) rotate(0deg);
            }
            50% {
                transform: scale(1.15) rotate(5deg);
            }
            100% {
                transform: scale(1.1) rotate(3deg);
            }
        }

        @keyframes madeJustFadeOut {
            0% {
                opacity: 1;
                transform: scale(1.1) rotate(3deg);
            }
            100% {
                opacity: 0;
                transform: scale(0.5) rotate(10deg) translateY(-100px);
            }
        }

        .made-just-image-wrapper {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            background: white;
        }

        .made-just-image-card.made-just-selected .made-just-image-wrapper {
            box-shadow: 0 0 0 5px #3b82f6, 0 15px 50px rgba(59, 130, 246, 0.4);
        }

        .made-just-image-wrapper img {
            width: 100%;
            height: auto;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
        }

        /* Checkmark */
        .made-just-checkmark {
            position: absolute;
            top: 1rem;
            left: 1rem;
            width: clamp(2.5rem, 8vw, 3.5rem);
            height: clamp(2.5rem, 8vw, 3.5rem);
            background: #3b82f6;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
        }

        .made-just-image-card.made-just-selected .made-just-checkmark {
            display: flex;
            animation: madeJustCheckmarkBounce 0.6s ease-in-out;
        }

        @keyframes madeJustCheckmarkBounce {
            0%, 100% { transform: scale(1); }
            25% { transform: scale(0); }
            50% { transform: scale(1.3); }
            75% { transform: scale(0.9); }
        }

        .made-just-checkmark svg {
            width: 60%;
            height: 60%;
            stroke: white;
            stroke-width: 4;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Tablet - Portrait */
        @media (max-width: 1024px) and (min-width: 769px) {
            .made-just-image-container {
                max-width: 24rem;
                min-height: 24rem;
            }

            .made-just-image-card:nth-child(1) {
                width: min(220px, 38vw);
            }

            .made-just-image-card:nth-child(2) {
                width: min(200px, 36vw);
                top: 80px;
            }

            .made-just-image-card:nth-child(3) {
                width: min(210px, 37vw);
                left: 40px;
            }
        }

        /* Tablet - Landscape & Small Tablets */
        @media (max-width: 768px) and (min-width: 481px) {
            
            .made-just-image-container {
                max-width: 22rem;
                min-height: 22rem;
            }

            .made-just-image-card:nth-child(1) {
                width: min(200px, 42vw);
            }

            .made-just-image-card:nth-child(2) {
                width: min(180px, 40vw);
                top: 70px;
            }

            .made-just-image-card:nth-child(3) {
                width: min(190px, 41vw);
                left: 30px;
            }
        }

        /* Mobile - Large Phones */
        @media (max-width: 480px) and (min-width: 376px) {
            .made-just-image-container {
                max-width: 90%;
                min-height: 18rem;
            }

            .made-just-image-card:nth-child(1) {
                width: min(170px, 50vw);
                left: 5%;
            }

            .made-just-image-card:nth-child(2) {
                width: min(155px, 48vw);
                top: 55px;
                right: 5%;
            }

            .made-just-image-card:nth-child(3) {
                width: min(160px, 49vw);
                left: 15%;
            }
            .experience-title{
                font-size: 1.5rem !important;
            }
            .quiz-btn{
                gap: 5px;
                padding: 4px 15px;
            }
            .footer-section-column:nth-child(3){
                display: none;
            }
        }

        /* Mobile - Small Phones */
        @media (max-width: 375px) {
            .made-just-image-container {
                max-width: 100%;
                min-height: 16rem;
            }

            .made-just-image-card:nth-child(1) {
                width: min(150px, 55vw);
                left: 5%;
            }

            .made-just-image-card:nth-child(2) {
                width: min(140px, 52vw);
                top: 45px;
                right: 5%;
            }

            .made-just-image-card:nth-child(3) {
                width: min(145px, 53vw);
                left: 12%;
                bottom: 15px;
            }
            
        }

        /* Extra Small Devices */
        @media (max-width: 320px) {
            .made-just-image-container {
                min-height: 14rem;
            }

            .made-just-image-card:nth-child(1) {
                width: min(130px, 58vw);
                left: 2%;
            }

            .made-just-image-card:nth-child(2) {
                width: min(120px, 55vw);
                top: 40px;
                right: 2%;
            }

            .made-just-image-card:nth-child(3) {
                width: min(125px, 56vw);
                left: 10%;
                bottom: 10px;
            }
        }

        /* Landscape Mode for Mobile */
       @media (max-height: 500px) {
            .made-just-image-container {
                min-height: 12rem;
            }

            .made-just-image-card:nth-child(1) {
                top: 0;
                width: min(160px, 30vw);
            }

            .made-just-image-card:nth-child(2) {
                top: 35px;
                width: min(150px, 28vw);
            }

            .made-just-image-card:nth-child(3) {
                bottom: 5px;
                width: min(155px, 29vw);
            }
            .what-makes-reno-description{
                font-size: 14px !important;
            }
        }






        .like-button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s;
    }
    
    .like-button:hover {
        transform: scale(1.1);
    }
    
    .like-button svg {
        stroke: #9ca3af;
        fill: none;
        transition: all 0.3s;
    }
    
    .like-button.liked svg {
        fill: #ef4444;
        stroke: #ef4444;
    }
    
    .map-marker {
        transition: all 0.3s ease;
    }
    
    .map-marker.active {
        transform: scale(1.2);
        z-index: 10;
    }
    .map-marker.active .marker-dot {
    color: #fff;
    width: 35px;
    height: 35px;
    background-color:   #FFB800;
    }
    
    .map-marker.active .marker-label,
    .map-marker.active .marker-label-small {
        font-weight: bold;
        padding: 4px 8px;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


.made-for-you-content h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.made-for-you-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 400px;
}

/* Experience Section - Carousel */
.experience {
    margin: auto 0px;
    /* height: 100vh; */
    margin-bottom: 17rem;
}
.experience .container{
    max-width: 1100px;
    margin: 6rem auto;
}

.experience-header {
    /* margin-bottom: 2rem; */
}

.experience-header-top {
    display: flex;
    /* justify-content: space-between; */
    align-items: end;
    margin-bottom: 2rem;
    gap: 2rem;
}

.experience-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #000;
    border-radius: 50px;
    background: transparent;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 0.75rem;
}

.view-all-btn:hover {
    background: #000;
    color: #fff;
}

/* Experience Tabs */
.experience-tabs {
    display: flex;
    gap: 2rem;
}

.exp-tab {
    padding: 0px 10px;
    padding-bottom: 0.75rem;
    font-weight: bold;
    font-size: 1.125rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    position: relative;
    /* border-bottom: 2px solid #e5e5e5;  */
}
.exp-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e5e5;
}

.exp-tab.active {
    color: #000;
}

.exp-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    /* margin-top: 3rem; */
}

/* Experience Logo */
.experience-logo {
    position: absolute;
    left: -21%;
    top: 82%;
    transform: translateY(-50%);
}



/* Carousel Navigation */
.carousel-navigation {
    position: absolute;
    right: 0;
    top: -3.5rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    z-index: 10;
}

.carousel-nav-btn {
    width: 36px;
    height: 36px;
    /* border: 2px solid #000; */
    /* border-radius: 4px; */
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #000;
}
.carousel-nav-btn i{
    font-size: 24px;
}

.carousel-nav-btn:hover:not(.disabled) {
    background: #000;
    color: #fff;
}

.carousel-nav-btn.disabled {
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
}

.page-counter {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
}

/* Carousel Container */
.carousel-container {
    /* margin-left: 160px; */
    margin-top: 1.5rem;
    overflow: visible;
    position: relative;
}

.carousel-track {
    display: none;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
}

.carousel-track.active {
    display: flex;
}

/* Carousel Card */
.carousel-card {
    flex-shrink: 0;
    width: 349px;
    height: 484px;
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
}

/* Responsive Carousel Cards */
@media (max-width: 1024px) {
    .carousel-card {
        width: calc((100vw - 80px) / 2 - 12px);
        max-width: 320px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .quiz-btn::before{
                right: 0.5rem;
            }
    .carousel-card {
        width: calc(100vw - 40px);
        max-width: 320px;
        height: 400px;
    }

    .carousel-container {
        /* overflow: hidden; */
    }

    .carousel-card .card-title {
        font-size: 1.8rem;
    }

    .experience-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .experience-title {
        font-size: 2.5rem;
    }

    .carousel-navigation {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 1rem;
    }

    .experience-logo {
        display: none;
    }

    .experience .container {
        margin: 3rem auto;
        padding: 0 20px;
    }

    .exp-tab {
        font-size: 1rem;
        padding: 0px 5px;
    }
}

.carousel-card .card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease-in-out;
}

/* Blur effect on hover */
.carousel-card:hover .card-bg {
    filter: blur(6px);
}

.carousel-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    transition: background 0.3s ease-in-out;
}

.carousel-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
}

.carousel-card .read-more-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 110px;
    height: 110px;
    background: #CEDC00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.3;
    color: #000;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.carousel-card:hover .read-more-btn {
    opacity: 1;
    transform: scale(1);
}

.carousel-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #fff;
    padding-bottom: 0px;
    transition: all 0.3s ease-in-out;
}
.carousel-card:hover .card-content{
    padding-bottom: 1.5rem;
}

.carousel-card .card-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    /* margin-bottom: 0.75rem; */
    transition: all 0.3s ease-in-out;
}
.carousel-card:hover .card-title {
    margin-bottom: 0.75rem;
}

.carousel-card .card-category {
    font-size: 0.875rem;
    font-weight: bold;
    opacity: 0.9;
}

/* Card Meta Info */
.carousel-card .card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

.carousel-card:hover .card-meta {
    opacity: 1;
    transform: translateY(0);
}

.carousel-card .meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.carousel-card .meta-item svg {
    flex-shrink: 0;
}

/* City Limits Section */
.city-limits {
    overflow: hidden;
    position: relative;
}
.city-limits::before{
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0rem;
    left: 50%;
    background-color: #0093B2;
}

.city-limits-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    min-height: 700px;
    position: relative;
}

.city-limits-left {
    background: #64CCC9;
    /* padding: 80px 60px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0rem;
    height: 100%;
}
.city-limits-left-heading-section{
    position: relative;
}

.city-limits-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    color: #000;
    z-index: 3;
    position: absolute;
    width: max-content;
    top: 5rem;
    left: -10rem;
}

.city-limits-map {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background: #64CCC9;
    overflow: hidden;
    z-index: 1;
}

.city-limits-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* Map Markers */
.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.marker-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.marker-label-small {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.marker-dot {
    font-size: 25px;
    color: #FFB800;
    width: 35px;
    height: 35px;
    background-color:  #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .marker-label {
        font-size: 11px;
        padding: 2px 4px;
        background: unset;
        border-radius: 3px;
    }
    .marker-label-small {
        font-size: 9px;
    }
    .marker-dot {
        font-size: 20px;
        width: 26px;
        height: 26px;
    }
    .map-marker.active .marker-dot {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .hero-card-img-section{
        height: auto;
    }
    .video-card{
        height: auto !important;
    }
    /* Map markers visible on mobile */
    .map-markers {
        display: block;
    }
    .marker-label {
        font-size: 9px;
        padding: 2px 5px;
        background: unset;
        border-radius: 3px;
    }
    .marker-label-small {
        font-size: 8px;
        padding: 1px 3px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 2px;
    }
    .marker-dot {
        font-size: 16px;
        width: 22px;
        height: 22px;
    }
    .map-marker.active .marker-dot {
        width: 26px;
        height: 26px;
    }
    .made-for-you-content{
            text-align: center;
    }
    .made-for-you-content p{
            max-width: 100%;
            padding-left: 10px;
            padding-right: 10px;
    }
    .made-for-you{
            padding: 40px 0;
    }
}

.location-card {
    background: var(--white);
    padding: 0;
    max-width: 400px;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.location-header h3 {
    font-size: 28px;
    font-weight: 700;
}

.weather {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.weather .temp {
    font-size: 18px;
    font-weight: 600;
}

.location-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
    padding: 16px;
    padding-bottom: 0px;
}

.location-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.location-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--dark);
    font-size: 18px;
    transition: opacity 0.3s;
}

.location-nav-btn:hover {
    opacity: 0.6;
}

.location-counter {
    font-size: 14px;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

/* Explore More */
.explore-more {
    padding: 80px 0;
}

.explore-more h2 {
    font-size: clamp(1rem, 2.5rem, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.15;
}


.explore-more-hero-card-section{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem 0px;
}


.explore-more-hero-card {
    max-width: 1100px;
    width: 100%;
    background: white;
    /* border-radius: 8px; */
    /* overflow: hidden; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 600px;
}



.explore-more-hero-card-image {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.explore-more-hero-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    padding: 40px 45px;
    padding-left: 2px;
    background: white;
    overflow: hidden;
    z-index: 10;
    transition: transform 0.3s ease;
}
.explore-more-hero-card-content:hover{
    padding: 40px 45px;
    
}

.explore-more-hero-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #CEDC00;
    transition: width 0.5s ease;
    z-index: 0;
}

/* .explore-more-hero-card:hover .explore-more-hero-card-content::before {
    width: 100%;
} */

.explore-more-hero-text-wrapper {
    position: relative;
    z-index: 1;
}

.explore-more-hero-card-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.explore-more-hero-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: gap 0.3s ease;
}

/* .explore-more-hero-read-more:hover {
    gap: 15px;
} */
.explore-more-author-read-more .explore-more-hero-text{
    z-index: 1 ;
}

.explore-more-hero-arrow {
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.explore-more-hero-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: #CEDC00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, background-color 0.4s ease;
    z-index: 0;
}

.explore-more-hero-card-content:hover .explore-more-hero-arrow::before {
    width: 70rem;
    height: 70rem;
    background: #CEDC00;
    z-index: -1;
}

.explore-more-hero-arrow::after {
    content: '→';
    font-size: 16px;
    font-weight: bold;
    color: #000;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
}

.explore-more-hero-card-content:hover .explore-more-hero-arrow::after {
    color: #000000;
}

@media (max-width: 768px) {
    .explore-more-hero-card {
        height: auto;
    }

    .explore-more-hero-card-image {
        position: relative;
        height: 300px;
        border-radius: 0px;
    }

    .explore-more-hero-card-content {
        position: relative;
        width: 100%;
    }

    .explore-more-hero-text-wrapper {
        padding: 30px 25px;
    }

    .explore-more-hero-card-title {
        font-size: 32px;
    }
}

.explore-more-author-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.explore-more-author-left-section {
    position: relative;
}

.explore-more-author-image-card {
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.explore-more-author-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%); */
    position: absolute;
    z-index: -1;
}

.explore-more-author-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 20px;
    width: 70%;
    background-color: #fff;
    overflow: hidden;
}

.explore-more-author-card-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
    color: #000;
    z-index: 2;
}

.explore-more-author-right-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.explore-more-author-article-card {
    border-bottom: 1px solid #e0e0e0;
    padding: 28px 0;
}

.explore-more-author-article-card:first-child {
    border-top: 1px solid #e0e0e0;
}



.explore-more-author-article-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #000;
}

.explore-more-author-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: gap 0.3s ease;
    z-index: 1;
}

/* .explore-more-author-read-more:hover {
    gap: 14px;
} */

.explore-more-author-arrow {
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.explore-more-author-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: #CEDC00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.explore-more-author-arrow::after {
    content: '→';
    font-size: 14px;
    font-weight: bold;
    color: #000;
    position: relative;
    z-index: 1;
    background: #CEDC00;
        
}

/* Left card hover effect */
.explore-more-author-card-content:hover .explore-more-author-arrow::before {
    width: 70rem;
    height: 70rem;
    background: #CEDC00;
    z-index: 0;
}

/* Right side article cards hover effect */
.explore-more-author-article-card {
    position: relative;
    overflow: hidden;
}

.explore-more-author-article-card:hover .explore-more-author-arrow::before {
    width: 70rem;
    height: 70rem;
    z-index: -1;
}

/* Last card special styling - already has yellow bg */
.explore-more-author-article-card:last-child .explore-more-author-arrow::before {
    color: #000;
}

.explore-more-author-article-card:last-child .explore-more-author-arrow::after {
    color: #000;
}

@media (max-width: 768px) {
    .explore-more-author-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .explore-more-author-image-card img {
        height: 280px;
    }

    .explore-more-author-card-content h2,
    .explore-more-author-article-card h2 {
        font-size: 20px;
    }
}

/* Reno Tahoe Your Way */
.your-way {
    padding: 80px 0;
    padding-bottom: 20px;
}

.your-way .container {
    max-width: 1100px;
}

.your-way-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.your-way-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
}

.your-way-carousel-wrapper {
    position: relative;
}

.your-way-navigation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.your-way-carousel-container {
    overflow: visible;
    position: relative;
}

.your-way-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
}

/* Video Cards */
.video-card {
    position: relative;
    width: 350px;
    height: 500px;
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
}

/* Responsive Video Cards */
@media (max-width: 1024px) {
    .video-card {
        width: calc((100vw - 80px) / 2 - 12px);
        max-width: 320px;
        height: 450px;
    }

    .your-way-carousel-container {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .video-card {
        width: calc(100vw - 40px);
        max-width: 320px;
        height: auto;
        min-height: 400px;
    }
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.video-card-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-card-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.video-card-user span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.video-play-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-play-btn.playing svg path {
    d: path("M6 4h4v16H6zM14 4h4v16h-4z");
}

.video-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.video-card-title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

/* No Limits Section */


.no-limits-video-container {
    display: flex;
    align-items: center;
    gap: 80px;
    margin: 10rem 0rem;
}

.no-limits-video-left-section {
    flex: 1;
    position: relative;
    height: 750px;
}

.no-limits-video-main-video-thumbnail {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 0;
    position: absolute;
    left: -5rem;
    bottom: 0rem;
}

.no-limits-video-small-image {
    position: absolute;
        top: 27rem;
    right: -8%;
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 2;
}

.no-limits-video-no-limits-text {
    position: absolute;
    top: 8rem;
    left: 0rem;
    font-size: 180px;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -8px;
    color: #000;
    z-index: 10;
}

.no-limits-video-watch-video {
    position: absolute;
    bottom: 2rem;
    left: -3rem;
    background: white;
    padding: 14px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 15;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.no-limits-video-watch-video:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.no-limits-video-play-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-limits-video-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid #000;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

.no-limits-video-video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: no-limits-video-fadeIn 0.3s;
}

.no-limits-video-video-overlay.no-limits-video-active {
    display: flex;
}

@keyframes no-limits-video-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.no-limits-video-video-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    animation: no-limits-video-slideUp 0.4s;
}

@keyframes no-limits-video-slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.no-limits-video-video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.no-limits-video-close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
    color: #000;
}

.no-limits-video-close-video:hover {
    background: #fff;
}

.no-limits-video-right-section {
    flex: 1;
    max-width: 500px;
    padding-right: 6rem;
}

.no-limits-video-right-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: #000;
}

.no-limits-video-right-section p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 24px;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .no-limits-video-container {
        padding: 40px;
        gap: 60px;
    }

    .no-limits-video-no-limits-text {
        font-size: 140px;
    }

    .no-limits-video-small-image {
        width: 220px;
        height: 160px;
    }

    .no-limits-video-right-section h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .no-limits-video-container {
        flex-direction: column;
        padding: 20px;
        gap: 10rem;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .no-limits-video-right-section{
            padding-right: 0rem;
    }

    .no-limits-video-left-section {
        width: 280px;
        height: 280px;
        flex: auto;
            margin-right: auto;
    }
    .no-limits-video-main-video-thumbnail{
        left: 0rem;
        height: 100%;
    }

    .no-limits-video-no-limits-text {
        font-size: 6rem;
        top: 16rem;
        left: 0rem;
    }
    .your-way{
        padding: 50px 0;
    }

    .no-limits-video-small-image {
        width: 141px;
        height: 106px;
       right: -32%;
        top: 9rem;
            margin-right: auto;

    }

    .no-limits-video-watch-video {
        bottom: 20px;
        left: 20px;
        padding: 12px 24px;
        font-size: 14px;
    }

    .no-limits-video-right-section h1 {
        font-size: 36px;
    }
.no-limits-video-right-section h2 {
        font-size: 1.5rem;
            font-weight: 900;
}
    .no-limits-video-right-section p {
        font-size: 15px;
    }
    .no-limits-video-right-section h2{
            margin-bottom: .5rem;
    }
}
/* what-makes-reno */

.what-makes-reno-container {
            margin: 0 auto;
            padding: 9rem 0rem;
            display: grid;
            grid-template-columns: 1fr ;
            gap: 0;
            align-items: stretch;
            position: relative;
        }

        .what-makes-reno-content {
            position: absolute;
            padding: 35px 35px 35px 35px;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
            width: 34rem;
            border-radius: 0.4rem;
            bottom: 7rem;
            left: 0;
        }

        .what-makes-reno-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 28px;
            letter-spacing: -0.5px;
            color: #000000;
        }

        .what-makes-reno-description {
            font-size: 16px;
            line-height: 1.65;
            color: #000000;
            margin-bottom: 0;
        }

        .what-makes-reno-description a {
            color: #000000;
            text-decoration: underline;
        }

        .what-makes-reno-description a:hover {
            color: #333333;
        }

        .what-makes-reno-image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            justify-content: end;
        }


        .what-makes-reno-image-wrapper img {
            width: 45rem;
            height: 35rem;
            /* height: 100%; */
            object-fit: cover;
            display: block;
            border-radius: 0.3rem;
        }

        @media (max-width: 1024px) {
            .what-makes-reno-container {
                grid-template-columns: 1fr;
                gap: 0;
                padding: 40px 30px;
                height: 76rem;
            }

            .what-makes-reno-content {
                padding: 40px 30px;
                width: 85%;
            }

            .what-makes-reno-title {
                font-size: 42px;
            }

            .what-makes-reno-image-wrapper {
                min-height: 500px;
            }
        }

        @media (max-width: 768px) {
            .what-makes-reno-container {
                padding: 10px 0px;
            }
            

            .what-makes-reno-content {
                padding: 10px 20px;
                left: 1.9rem;
            }

            .what-makes-reno-title {
                font-size: 2rem;
                margin-bottom: .5rem;
                line-height: 1.1
            }
            

            .what-makes-reno-description {
                font-size: 15px;
            }

            .what-makes-reno-image-wrapper {
                min-height: 400px;
            }
        }



/* Social Grid */
.social-grid {
    width: 100vw;
}



.social-media-gallery-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* grid-template-rows: repeat(3, 200px); */
    gap: 1px;
    width: 100%;
    height: 70vh;
}

.social-media-gallery-item {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.2s;
}

/* .social-media-gallery-item:hover {
    transform: scale(1.02);
} */

.social-media-instagram-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.social-media-item1 {
    grid-column: 1;
    grid-row: 1;
    background: linear-gradient(to bottom, #4A90E2 0%, #2E5C8A 50%, #1E3A5F 100%);
}

.social-media-item2 {
    grid-column: 2;
    grid-row: 1;
    background: linear-gradient(135deg, #E8D5B7 0%, #C9A882 100%);
}

.social-media-item3 {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
    background: linear-gradient(to bottom, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media-item4 {
    grid-column: 5;
    grid-row: 1;
    background: linear-gradient(135deg, #C41E3A 0%, #8B1538 100%);
}

.social-media-item5 {
    grid-column: 6;
    grid-row: 1;
    background: linear-gradient(to bottom, #2C3E50 0%, #1a252f 100%);
}

.social-media-item6 {
    grid-column: 1;
    grid-row: 2;
    background: linear-gradient(135deg, #40E0D0 0%, #1E90FF 100%);
}

.social-media-item7 {
    grid-column: 2;
    grid-row: 2;
    background: linear-gradient(to bottom, #7CB342 0%, #558B2F 100%);
}

.social-media-item8 {
    grid-column: 5;
    grid-row: 2;
    background: linear-gradient(135deg, #D4A574 0%, #8B7355 100%);
}

.social-media-item9 {
    grid-column: 6;
    grid-row: 2;
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
}

.social-media-item10 {
    grid-column: 1 / 3;
    grid-row: 3;
    background: linear-gradient(135deg, #CD853F 0%, #8B4513 100%);
}

.social-media-item11 {
    grid-column: 3;
    grid-row: 3;
    background: linear-gradient(to bottom, #E0E0E0 0%, #999999 100%);
}

.social-media-item12 {
    grid-column: 4;
    grid-row: 3;
    background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
}

.social-media-item13 {
    grid-column: 5;
    grid-row: 3;
    background: linear-gradient(135deg, #FF1493 0%, #C71585 100%);
}

.social-media-item14 {
    grid-column: 6;
    grid-row: 3;
    background: linear-gradient(to right, #E94057 0%, #8A2387 50%, #F27121 100%);
}

.social-media-center-content {
    text-align: center;
    color: white;
    z-index: 10;
}

.social-media-fireworks-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 255, 255, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 50% 30%, rgba(0, 255, 0, 0.3) 0%, transparent 15%),
        radial-gradient(circle at 40% 70%, rgba(255, 165, 0, 0.3) 0%, transparent 18%),
        radial-gradient(circle at 60% 50%, rgba(255, 255, 0, 0.3) 0%, transparent 16%);
}

.social-media-hashtag {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.social-media-follow-btn {
    background-color: #E1306C;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}



.social-media-reno-sign {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FF1493, #00CED1);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.social-media-nevada-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.social-media-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.social-media-modal.social-media-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.social-media-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.social-media-modal-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    gap: 12px;
}

.social-media-modal-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.social-media-modal-username {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
    flex: 1;
}

.social-media-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #262626;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media-modal-close:hover {
    opacity: 0.6;
}

.social-media-modal-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #000;
}

.social-media-modal-footer {
    padding: 16px 20px;
}

.social-media-modal-caption {
    font-size: 14px;
    color: #262626;
    line-height: 1.5;
    margin-bottom: 12px;
}

.social-media-modal-username-bold {
    font-weight: 600;
    margin-right: 6px;
}

.social-media-modal-hashtag {
    color: #00376b;
}

.social-media-view-post-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0095f6;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.social-media-view-post-btn:hover {
    color: #00376b;
}

.social-media-arrow-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.2s;
}

.social-media-arrow-icon:hover {
    background: white;
}

.social-media-arrow-left {
    left: 20px;
}

.social-media-arrow-right {
    right: 20px;
}

@media (max-width: 768px) {
    .social-media-gallery-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(6, 150px);
    }

    .social-media-item3 {
        grid-column: 1 / 4;
        grid-row: 3 / 5;
    }

    .social-media-modal-content {
        max-width: 100%;
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .social-media-modal-image {
        height: 60vh;
    }
}



/* our-newsletter */
.our-newsletter-section{
     background: #FFFFFF;
    width: 100%;
    position: relative;
    
    overflow: hidden;
}

.our-newsletter-section::before {
    content: "";
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: 40%;
    height: 100%;
    background-color: #0093B2;
    z-index: 0;
}

.container-our-newsletter{
    max-width: 1700px;
    margin: 0 auto;
    overflow: hidden;
}



.our-newsletter-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 300px;
    /* background: linear-gradient(to right, #17a2b8 0%, #17a2b8 50%, #f5f5f5 50%, #f5f5f5 100%); */
    position: relative;

}


.our-newsletter-left-section {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.our-newsletter-left-section::before{
        content: '';
    position: absolute;
    top: -29rem;
    left: -32rem;
    width: 80rem;
    height: 80rem;
    background: #0093B2;
    border-radius: 50%;
    z-index: 0;
}

.our-newsletter-mountain {
    position: absolute;
    bottom: 0;
    width: 40rem;
}

.our-newsletter-mountain svg {
    width: 100%;
    height: 100%;
}

.our-newsletter-right-section {
	 z-index: 999;
    flex: 1;
    padding: 40px 60px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-newsletter-heading {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: .5rem;
    font-size: 1.75rem;
    color: #000;
}

.our-newsletter-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 24px;
}

.our-newsletter-subscribe-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    width: fit-content;
}

/* Starting circle behind the arrow */
.our-newsletter-subscribe-btn::before {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 22px;
    height: 22px;
    background: #CEDC00;
    border-radius: 50%;
    transform: translateY(-50%);
    transform-origin: right center;
    transition:
        width 0.20s ease-out,
        height 0.35s ease-out,
        right 0.25s ease-out,
        border-radius 0.25s ease-out;
    z-index: 0;
    border: 2px solid #CEDC00;
}

/* Keep text & arrow above the circle */
.our-newsletter-subscribe-btn span,
.our-newsletter-subscribe-btn .our-newsletter-arrow {
    position: relative;
    z-index: 2;
}

/* Hover - staged expansion */
.our-newsletter-subscribe-btn:hover::before {
    width: 120%;
    height: 120%;
    right: -10%;
    border-radius: 40px;
    transition:
        width 0.25s ease-in,
        height 0.15s ease-in,
        right 0.15s ease-in,
        border-radius 0.25s ease-in;
    border: unset;
}

.our-newsletter-subscribe-btn:hover {
    color: #000;
}

.our-newsletter-arrow {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

/* Tablet View */
@media (max-width: 1024px) {
    .our-newsletter-section::before {
        width: 45%;
    }

    .our-newsletter-container {
        height: auto;
        min-height: 280px;
    }

    .our-newsletter-left-section::before {
        top: -25rem;
        left: -28rem;
        width: 70rem;
        height: 70rem;
    }

    .our-newsletter-mountain {
        width: 30rem;
    }

    .our-newsletter-right-section {
        padding: 30px 40px;
        padding-right: 20px;
    }

    .our-newsletter-heading {
        font-size: 1.5rem;
    }

    .our-newsletter-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .our-newsletter-section::before {
        display: none;
    }

    .our-newsletter-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .our-newsletter-left-section {
        width: 100%;
        height: 180px;
        background: #0093B2;
    }

    .our-newsletter-left-section::before {
        display: none;
    }

    .our-newsletter-mountain {
        width: 100%;
        max-width: 20rem;
    }

    .our-newsletter-right-section {
        width: 100%;
        padding: 30px 20px;
        background: #fff;
    }

    .our-newsletter-heading {
        font-size: 1.4rem;
    }

    .our-newsletter-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .our-newsletter-subscribe-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .our-newsletter-subscribe-btn::before {
        width: 16px;
        height: 16px;
        right: 5px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .our-newsletter-left-section {
        height: 150px;
    }

    .our-newsletter-mountain {
        max-width: 12rem;
        top: 6rem;
        right: 1rem;
    }

    .our-newsletter-right-section {
        padding: 24px 16px;
    }

    .our-newsletter-heading {
        font-size: 1.25rem;
    }

    .our-newsletter-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .our-newsletter-subscribe-btn {
        padding: 6px 12px;
        font-size: 13px;
        gap: 10px;
    }

    .our-newsletter-arrow {
        font-size: 16px;
    }
    .our-newsletter-left-section {
        background-color: unset;
    }
}


/* Footer */
.footer-section {
            background: #000;
            color: #fff;
            padding: 60px 40px 40px;
        }

        .footer-section-top {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            padding-bottom: 60px;
        }

        .footer-section-brand h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .footer-section-social-icons {
            display: flex;
            gap: 12px;
        }

        .footer-section-social-icons a {
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: background 0.3s;
        }

        .footer-section-social-icons a:hover {
            background: #555;
        }

        .footer-section-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-section-column ul {
            list-style: none;
        }

        .footer-section-column ul li {
            margin-bottom: 16px;
        }

        .footer-section-column ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

        .footer-section-column ul li a:hover {
            color: #aaa;
        }

        .footer-section-cta {

            display: flex;
            flex-direction: row;
        }

        .footer-section-visitor-guide-preview {
            margin: auto;
            width: 7rem;
            margin-right: 20px;
            border-radius: 4px;
            height: 7rem;
        }
        .footer-card-text-area{
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .footer-section-cta h3 {
            font-size: 1.75rem;
            margin-bottom: .5rem;
            font-weight: 700;
        }

        .footer-section-cta p {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: .5rem;
            opacity: 0.95;
        }

        .footer-section-download-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            padding: 12px 24px;
            padding-left: 0px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            width: fit-content;
      
        }
        .footer-section-download-btn:hover{
            text-decoration: underline;
            text-underline-offset: 5px;
        }
        
        .arrow-background-section{
            position: relative;
        }
        .arrow-background{

            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: #64CCC9;
            border-radius: 50%;
            z-index: 0;
            top: -4px;
            left: 6px;
        }
         .footer-section-download-btn img{
            z-index: 1;
            position: relative;
         }

        .footer-section-middle {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 0;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            border-top: 1px solid #fff;
            border-bottom: 1px solid #fff;
            align-items: start;
        }

        .footer-section-endorsements h4 {
            font-size: 14px;
            color: #fff;
            margin-bottom: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section-endorsements-wrapper {
            padding: 30px;
            border-radius: 8px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .footer-section-endorsement-logos {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .footer-section-logo-item {
            height: 70px;
            display: flex;
            align-items: center;
        }

        .footer-section-logo-item img {
            max-height: 100%;
            width: auto;
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }

        .footer-section-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #999;
        }

        .footer-section-bottom a {
            color: #999;
            text-decoration: none;
            margin-left: 20px;
        }

        .footer-section-bottom a:hover {
            color: #fff;
        }

        @media (max-width: 1024px) {
            .footer-section-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-section-links {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-section-middle {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .experience .container {
                margin: 6rem .5rem;
            }
            /* .video-bg {
                width: 76%;
            } */
            .footer-section-brand h1{
                font-size: 38px;
                font-weight: 700;
                margin-bottom: 0px;
                letter-spacing: -1px;
            }
            .footer-section-social-icons{
                justify-content: center;
            }
            .footer-section {
                padding: 20px 20px;
            }
            .footer-section-endorsements{
                order: 2;
                border-top:1px solid #fff;
            }
            .footer-section-middle {
                padding-top: 15px;
                padding-bottom: 0px;
            }
            .footer-section-brand{
                text-align: center;
            }
            .footer-section-cta h3{
                font-size:  1.2rem;
                margin-bottom: unset;

            }
            .footer-section-cta p {
                font-size: .8rem;
            }
            .footer-section-download-btn {
                padding: unset;
            }
            .footer-section-visitor-guide-preview{
                width: 5rem;
                height: 5rem;
            }
            .footer-section-middle {
                gap: 26px;
            }
            .footer-section-top {
                gap: 26px;
                padding: 15px 0px;
            }
            .footer-section-endorsements-wrapper{
                padding: 15px;
            }
            .footer-section-endorsements h4{
                margin-bottom: 10px;
            }



            .footer-section-links {
                grid-template-columns: 1fr,1fr;
            }

            .footer-section-links{
                border-top: 1px solid #fff;
                padding-top: 2rem;
            }

            .footer-section-endorsement-logos {
                gap: 0px;
                    justify-content: center;
            }

            .footer-section-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .footer-section-bottom a {
                margin-left: 0;
            }
            .explore-more-hero-card-content {
                padding: 0px;
            }
            .explore-more-author-left-section{
                border-top: 2px solid #e0e0e0;
            }
            .explore-more-hero-card-section{
                    margin-top: 1.8rem;
                    margin-bottom: unset;

            }
            .explore-more-author-image-card img {
                display: none;
            }
            .explore-more h2{
                -webkit-box-orient: inherit;
            }
            .explore-more-author-card-content{
                     position: relative; 
                    width: 100%;
                    padding: 28px 20px;
            }
            .explore-more-author-article-card {
                padding: 28px 20px;
            }
            .explore-more-author-container {
                gap: 0px;
            }
            .explore-more{
                padding-bottom: 0px;

            }
            .city-limits-left {
                background-color: none;
            }
            .city-limits-left{
                background: unset;
            }
            .city-limits-title{
                position: relative;
                left: 0rem;

            }
            .location-header{
                margin-bottom: unset;
            }
            .location-card p{
                margin-bottom: 0px;
            }
        }

/* Responsive */
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .social-images {
        grid-template-columns: repeat(4, 1fr);
    }

    .city-limits-grid {
        grid-template-columns: 40% 60%;
    }

    .city-limits-map {
        width: 65%;
    }

    .city-limits-left {
        padding: 60px 40px;
    }
}

@media (max-width: 1024px) {
    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav {
        display: none;
    }
    .carousel-track ,.container{
        /* overflow: hidden; */
    }


    .menu-btn {
        display: flex;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
        align-items: center;
        justify-content: center;
        padding: 100px 24px 50px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        padding-right: 0;
        width: 95%;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-search-wrapper {
        align-items: center;
    }

    .hero-search {
        width: 100%;
        max-width: 300px;
    }

    .hero-cards-section {
        padding: 24px 0 32px;
    }

    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-card img {
        height: 100px;
    }

    .hero-card span {
        padding: 10px;
        font-size: 12px;
    }

    .made-for-you-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }



    .made-for-you-content h2 {
        font-size: 36px;
    }

    .experience-header {
        flex-direction: column;
        gap: 20px;
    }

    .experience-tabs {
        margin-left: 0;
        gap: 1rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .your-way-title {
        font-size: 2.2rem;
        font-weight: 800;
    }

    .your-way-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0rem;
        margin-bottom: .8rem;
    }



    .social-images {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .city-limits-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .city-limits::before {
        display: none;
    }

    .city-limits-left {
        position: relative;
        padding: 40px 20px;
        min-height: auto;
        width: 100%;
        background: #64CCC9;
    }

    .city-limits-map {
        position: relative;
        width: 100%;
        min-height: 300px;
    }

    .city-limits-title {
        position: relative;
        font-size: 2.2rem;
        margin-bottom: 20px;
        top: 0;
        left: 0;
        width: 100%;
    }

    .location-card {
        max-width: 100%;
    }

    .location-card-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .experience {
        margin-bottom: 5rem;
		overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 55vh;
        min-height: 350px;
        padding: 90px 16px 40px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .search-label {
        font-size: 10px;
    }

    .hero-search {
        width: 100%;
        max-width: 280px;
        padding: 4px 4px 4px 14px;
    }

    .hero-search input {
        font-size: 11px;
    }

    .hero-search-btn {
        width: 28px;
        height: 28px;
    }

    .hero-search-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-cards-section {
        padding: 20px 0 28px;
    }

    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-card img {
        height: 80px;
    }

    .hero-card span {
        padding: 8px 10px;
        font-size: 11px;
    }

    /* .made-for-you-content h2,
    .explore-more h2,
    .experience-title h2 {
        font-size: 28px;
    } */

    .city-limits-header h2 {
        font-size: 32px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

    /* Map markers for small mobile */
    .marker-label {
        font-size: 8px;
        padding: 1px 3px;
    }
    .marker-label-small {
        font-size: 7px;
        display: none;
    }
    .marker-dot {
        font-size: 14px;
        width: 18px;
        height: 18px;
    }
    .map-marker.active .marker-dot {
        width: 22px;
        height: 22px;
    }
    .city-limits-map {
        min-height: 250px;
    }
}
