/**
 * Block: tr-fields/structural-hero-city
 * Fully contained block CSS
 * Auto-generated by cr-generate-blocks.php
 */

/* CSS Custom Properties */
:root {
            /* Airbnb-inspired palette */
            --coral: #FF385C;
            --coral-dark: #E31C5F;
            --coral-light: #FF5A7D;
            --teal: #008489;
            --teal-light: #00A699;
            --black: #222222;
            --gray-900: #484848;
            --gray-700: #717171;
            --gray-500: #B0B0B0;
            --gray-300: #DDDDDD;
            --gray-100: #F7F7F7;
            --white: #FFFFFF;

            /* Semantic */
            --success: #008A05;
            --warning: #FFB400;
            --star: #FF385C;

            /* Typography */
            --font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;

            /* Spacing */
            --section-padding: clamp(3rem, 6vw, 6rem);
            --container-max: 1280px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
        }

/* Component: structural-hero-city */
/* ================================
           CITY HERO
        ================================ */
        .city-hero {
    padding: 48px 0 64px;
            background: linear-gradient(to bottom, var(--gray-100) 0%, var(--white) 100%);
}

.city-hero__grid {
    display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
}

@media (min-width: 950px) {
    .city-hero__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.city-hero__content {
    max-width: 600px;
}

.city-hero__badges {
    display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
}

.city-hero__badge {
    display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: var(--white);
            border: 1px solid var(--gray-300);
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-900);
}

.city-hero__badge svg {
    width: 16px;
            height: 16px;
}

.city-hero__badge--verified svg {
    color: var(--teal);
}

.city-hero__badge--licensed svg {
    color: var(--coral);
}

.city-hero__badge--population svg {
    color: var(--gray-700);
}

.city-hero__title {
    font-size: clamp(32px, 5vw, 52px);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 16px;
}

.city-hero__title span {
    color: var(--coral);
}

.city-hero__description {
    font-size: 18px;
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 32px;
}

.city-hero__cta {
    display: flex;
            flex-wrap: wrap;
            gap: 12px;
}

.city-hero__image {
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
            border-radius: var(--radius-xl);
            aspect-ratio: 4/3;
            overflow: hidden;
            position: relative;
}

.city-hero__image img {
    width: 100%;
            height: 100%;
            object-fit: cover;
}

.city-hero__image-overlay {
    position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: var(--white);
}

.city-hero__image-label {
    font-size: 14px;
            font-weight: 600;
}

/* Layout */
        .container {
    max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
}

@media (min-width: 744px) {
    .container {
        padding-left: 40px;
                padding-right: 40px;
    }
}

@media (min-width: 1128px) {
    .container {
        padding-left: 80px;
                padding-right: 80px;
    }
}

/* Buttons - Airbnb style */
        .btn {
    display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 24px;
            font-family: var(--font-primary);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s ease;
}

.contact-form__footer .btn {
    display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 320px;
}

.btn--primary {
    background: linear-gradient(to right, var(--coral), var(--coral-dark));
            color: var(--white);
}

.btn--primary:hover {
    transform: scale(1.02);
            box-shadow: 0 4px 14px rgba(255, 56, 92, 0.4);
}

.btn--large {
    padding: 16px 32px;
            font-size: 18px;
}

.btn--pill {
    border-radius: var(--radius-full);
}

.btn--outline {
    background: var(--white);
            color: var(--black);
            border: 1px solid var(--black);
}

.btn--outline:hover {
    background: var(--gray-100);
}
