.prx-home {
    font-family: 'Inter', sans-serif;
    background: #edf7ef;
    color: #102018;
    overflow: hidden;
}

/* HERO */
.prx-hero {
    position: relative;
    min-height: 720px;
    padding: 78px 32px 95px;
    background:
        linear-gradient(90deg, rgba(6, 34, 22, 0.78) 0%, rgba(6, 34, 22, 0.50) 48%, rgba(6, 34, 22, 0.22) 100%),
        url("/assets/img/home/platzradar-hero.jpg") center center / cover no-repeat;
}

.prx-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 190px;
    background: linear-gradient(180deg, rgba(237, 247, 239, 0) 0%, #edf7ef 100%);
}

.prx-wrap {
    position: relative;
    z-index: 2;
    max-width: 1450px;
    margin: 0 auto;
}

.prx-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 60px;
    align-items: center;
}

.prx-kicker {
    display: inline-flex;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(66, 140, 89, 0.22);
    color: #d7ffcb;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
}

.prx-hero h1 {
    max-width: 720px;
    margin: 18px 0 20px;
    color: #ffffff;
    font-size: clamp(38px, 4vw, 64px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.prx-hero h1 span {
    color: #8df0a8;
}

.prx-hero-text {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
}

/* SEARCH */
.prx-search {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 30px;
    padding: 24px;
    border: 1px solid rgba(198, 232, 206, 0.95);
    box-shadow:
        0 28px 70px rgba(6, 42, 23, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
}

.prx-search h2 {
    margin: 0 0 16px;
    color: #092b19;
    font-size: 26px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.prx-search-box {
    height: 58px;
    border-radius: 20px;
    background: #f1fbf3;
    border: 1px solid #bfe3c7;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    margin-bottom: 14px;
    transition: 0.2s ease;
}

.prx-search-box:focus-within {
    background: #ffffff;
    border-color: #2faf5a;
    box-shadow: 0 0 0 4px rgba(47, 175, 90, 0.14);
}

.prx-search-box span {
    font-size: 18px;
    color: #2f7048;
}

.prx-search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #092b19;
    font-size: 14px;
    font-weight: 850;
}

.prx-search-box input::placeholder {
    color: #7c9b85;
}

.prx-search-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.prx-search-category {
    position: relative;
    min-height: 104px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbf6 100%);
    border: 1px solid #d4ead9;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.22s ease;
    overflow: hidden;
}

.prx-search-category::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(72, 181, 99, 0.12), transparent 45%);
    opacity: 0;
    transition: 0.22s ease;
}

.prx-search-category:hover {
    transform: translateY(-3px);
    border-color: #38b964;
    box-shadow: 0 18px 38px rgba(18, 103, 48, 0.14);
}

.prx-search-category:hover::before {
    opacity: 1;
}

.prx-search-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: linear-gradient(135deg, #27a955, #168642);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 12px 26px rgba(23, 114, 53, 0.20);
    transition: 0.22s ease;
}

.prx-search-category:hover .prx-search-icon {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 16px 34px rgba(23, 114, 53, 0.26);
}

.prx-search-category strong {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #0a2f1b;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.prx-submit {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #20924b, #126c38);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(18, 92, 46, 0.28);
    transition: 0.2s ease;
}

.prx-submit:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #27a955, #197c40);
}

/* SECTIONS */
.prx-section {
    max-width: 1450px;
    margin: 0 auto;
    padding: 58px 32px 0;
}

.prx-section-head {
    text-align: center;
    margin-bottom: 26px;
}

.prx-section-head h2 {
    max-width: 760px;
    margin: 0 auto;
    color: #0a301c;
    font-size: clamp(28px, 2.8vw, 48px);
    line-height: 1.02;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.prx-section-head p {
    display: none;
}

/* CATEGORIES */
.prx-cats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.prx-cat {
    min-height: 165px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(91, 198, 116, 0.16), transparent 46%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 253, 247, 0.95));
    border: 1px solid #d2ead7;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 18px 48px rgba(19, 84, 44, 0.09);
    transition: 0.22s ease;
    text-decoration: none;
}

.prx-cat:hover {
    transform: translateY(-5px);
    border-color: #9fd8ad;
    box-shadow: 0 26px 70px rgba(19, 84, 44, 0.16);
}

.prx-cat i {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(180deg, #28b45a 0%, #149246 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    font-style: normal;
    box-shadow: 0 10px 24px rgba(24, 123, 59, 0.20);
    transition: 0.22s ease;
}

.prx-cat:hover i {
    transform: translateY(-2px) scale(1.04);
    background: linear-gradient(180deg, #34cb68 0%, #1aa050 100%);
    box-shadow: 0 18px 38px rgba(24, 123, 59, 0.28);
}

.prx-cat strong {
    display: block;
    margin-top: 18px;
    color: #082819;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.prx-cat span {
    display: block;
    margin-top: 8px;
    color: #5f806a;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
}

/* PLACES */
.prx-place-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.prx-place {
    position: relative;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 16px;
    min-height: auto;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #d8eadb;
    box-shadow: 0 16px 44px rgba(19, 84, 44, 0.08);
    transition: 0.22s ease;
    text-decoration: none;
    overflow: hidden;
}

.prx-place:hover {
    transform: translateY(-4px);
    border-color: #a8dcb5;
    box-shadow: 0 24px 60px rgba(19, 84, 44, 0.14);
}

.prx-place img {
    width: 120px;
    height: 120px;
    border-radius: 22px;
    object-fit: cover;
    background: #dbe9de;
}

.prx-place-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0;
}

.prx-place-top {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #188447;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prx-place-content strong {
    margin: 0;
    color: #082819;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.prx-place-location {
    margin-top: 7px;
    color: #67816f;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.prx-place-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef8f0;
    border: 1px solid #d7eadb;
    color: #188447;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.prx-place-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.prx-place-rating,
.prx-place-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.prx-place-rating {
    background: linear-gradient(135deg, #1f8b47, #146636);
    color: #ffffff;
}

.prx-place-price {
    background: #ffffff;
    border: 1px solid #d6e9da;
    color: #10301d;
}

.prx-place-actions {
    margin-top: 14px;
}

.prx-place-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #20924b, #126c38);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    transition: 0.2s ease;
}

.prx-place:hover .prx-place-btn {
    transform: translateY(-1px);
}

/* DESTINATIONS */
.prx-destinations {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    padding-bottom: 86px;
}

.prx-destination {
    position: relative;
    min-height: 250px;
    border-radius: 34px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 24px 76px rgba(13, 63, 34, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.prx-destination:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 105px rgba(13, 63, 34, 0.24);
}

.prx-destination-big {
    min-height: 250px;
}

.prx-destination::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.78) 100%);
}

.prx-destination::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(18, 120, 58, 0.18), transparent 55%);
}

.prx-destination-garda {
    background: url("/assets/img/home/destination-garda.jpg") center center / cover no-repeat;
}

.prx-destination-allgaeu {
    background: url("/assets/img/home/destination-allgaeu.jpg") center center / cover no-repeat;
}

.prx-destination-istria {
    background: url("/assets/img/home/destination-istria.jpg") center center / cover no-repeat;
}

.prx-destination div {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 5;
}

.prx-destination span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(43, 143, 73, 0.78);
    backdrop-filter: blur(14px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prx-destination h3 {
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    line-height: 0.95;
    font-weight: 850;
    letter-spacing: -0.04em;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .prx-hero-grid {
        grid-template-columns: 1fr;
    }

    .prx-search {
        max-width: 500px;
    }

    .prx-cats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .prx-place-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prx-destinations {
        grid-template-columns: 1fr;
        padding-bottom: 70px;
    }
}

@media (max-width: 760px) {
    .prx-hero {
        padding: 36px 16px 54px;
        min-height: auto;
    }

    .prx-section {
        padding: 46px 16px 0;
    }

    .prx-hero-grid,
    .prx-cats,
    .prx-place-list {
        grid-template-columns: 1fr;
    }

    .prx-search {
        max-width: 100%;
        border-radius: 28px;
        padding: 22px;
    }

    .prx-search h2 {
        font-size: 24px;
    }

    .prx-search-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .prx-search-category {
        min-height: 96px;
        border-radius: 18px;
        padding: 12px 8px;
    }

    .prx-search-icon {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }

    .prx-search-category strong {
        font-size: 11px;
    }

    .prx-section-head {
        margin-bottom: 24px;
    }

    .prx-section-head h2 {
        font-size: 36px;
    }

    .prx-cat {
        min-height: 145px;
        border-radius: 26px;
    }

    .prx-place {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
        min-height: auto;
        border-radius: 28px;
    }

    .prx-place img {
        width: 110px;
        height: 110px;
        border-radius: 18px;
    }

    .prx-place-content {
        padding: 0;
    }

    .prx-place-content strong {
        font-size: 15px;
    }

    .prx-place-location {
        font-size: 13px;
    }

    .prx-destination,
    .prx-destination-big {
        min-height: 230px;
        border-radius: 28px;
    }

    .prx-destination div {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .prx-destination h3 {
        font-size: 30px;
    }

    .prx-destinations {
        padding-bottom: 56px;
    }
}

@media (min-width: 761px) {
    .mobile-home-map {
        display: none !important;
    }
}

@media (max-width: 760px) {
    .desktop-home {
        display: none !important;
    }

    .mobile-home-map {
        display: block !important;
    }
}