*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
}

body{
    margin:0;
    background:#f3f4f6;
    color:#111827;
}

/* ============================= */
/* PREMIUM HEADER V3 */
/* ============================= */

.pr-header{
    background:#0f172a;
    position:sticky;
    top:0;
    z-index:1000;
}

.pr-header-inner{
    max-width:1500px;
    margin:0 auto;
    padding:0 70px;
    height:110px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.pr-logo{
    display:flex;
    align-items:center;
    font-size:26px;
    font-weight:700;
    text-decoration:none;
    color:white;
    letter-spacing:-0.5px;
}

.pr-dot{
    width:12px;
    height:12px;
    background:#22c55e;
    border-radius:50%;
    margin-right:12px;
    box-shadow:0 0 0 6px rgba(34,197,94,0.2);
}

.pr-nav{
    display:flex;
    gap:50px;
}

.pr-nav a{
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    color:#cbd5e1;
    transition:0.2s;
}

.pr-nav a:hover{
    color:white;
}

.pr-right{
    display:flex;
    align-items:center;
    gap:30px;
}

.pr-login{
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    color:#cbd5e1;
}

.pr-login:hover{
    color:white;
}

.pr-cta{
    background:#22c55e;
    color:#0f172a;
    padding:16px 30px;
    border-radius:18px;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    transition:0.2s ease;
}

.pr-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 40px rgba(34,197,94,0.4);
}

@media(max-width:1100px){
    .pr-header-inner{padding:0 40px;}
    .pr-nav{gap:30px;}
}
@media(max-width:900px){
    .pr-nav{display:none;}
    .pr-header-inner{height:85px;}
}

/* ============================= */
/* HERO + SEARCH (PEP) */
/* ============================= */

.hero{
    padding:120px 0 90px 0;
    background:linear-gradient(180deg,#0f172a 0%, #1e293b 55%, #f3f4f6 100%);
    text-align:center;
}

.hero-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}

.hero h1{
    font-size:52px;
    font-weight:700;
    color:white;
    margin-bottom:18px;
    letter-spacing:-0.6px;
}

.hero p{
    font-size:20px;
    color:#cbd5e1;
    margin-bottom:45px;
}

.search-card{
    background:white;
    padding:34px;
    border-radius:26px;
    box-shadow:0 55px 140px rgba(0,0,0,0.45);
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    max-width:980px;
    margin:0 auto;
}

.search-card input,
.search-card select{
    padding:16px 20px;
    border-radius:14px;
    border:1px solid #e5e7eb;
    font-size:15px;
    min-width:240px;
    background:#fff;
    outline:none;
}

.search-card input:focus,
.search-card select:focus{
    border-color:rgba(17,24,39,0.35);
    box-shadow:0 0 0 5px rgba(17,24,39,0.08);
}

.search-card button{
    background:#111827;
    color:white;
    padding:16px 30px;
    border:none;
    border-radius:14px;
    font-weight:700;
    cursor:pointer;
    transition:0.2s ease;
}

.search-card button:hover{
    transform:translateY(-2px);
    box-shadow:0 22px 70px rgba(0,0,0,0.25);
}

/* ============================= */
/* APP LAYOUT */
/* ============================= */

.app-layout{
    background:#f3f4f6;
    display:grid;
    grid-template-columns:450px 1fr;
    gap:40px;
    padding:70px 60px 90px 60px;
}

.results-panel{
    background:white;
    border-radius:28px;
    padding:34px;
    box-shadow:0 30px 90px rgba(0,0,0,0.08);
    height:720px;
    overflow-y:auto;
}

.results-panel h2{
    font-size:22px;
    margin-bottom:20px;
}

.empty-state{
    color:#9ca3af;
    font-size:15px;
}

/* Ergebnis-Karten (damit es nicht wie Textliste aussieht) */
.result-item{
    background:#f1f5f9;
    padding:18px;
    border-radius:18px;
    margin-bottom:16px;
    transition:0.2s ease;
    cursor:pointer;
}

.result-item:hover{
    background:white;
    box-shadow:0 18px 60px rgba(0,0,0,0.12);
    transform:translateY(-1px);
}

.result-title{
    font-weight:700;
    font-size:16px;
    margin-bottom:6px;
    color:#0f172a;
}

.result-meta{
    font-size:14px;
    color:#64748b;
    margin-bottom:10px;
}

.result-link a{
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    color:#0f172a;
}

/* MAP */
.map-panel{
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 40px 120px rgba(0,0,0,0.18);
    background:white;
}

#map{
    width:100%;
    height:720px;
}

/* FOOTER (falls footer.php minimal ist, sieht es trotzdem gut aus) */
/* ============================= */
/* PREMIUM FOOTER */
/* ============================= */

.pr-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 80px;
}

.pr-footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 70px 60px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

/* BRAND */

.pr-footer-brand {
    max-width: 400px;
}

.pr-footer-logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.pr-footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
}

/* COLUMNS */

.pr-footer-column h4 {
    font-size: 15px;
    margin-bottom: 18px;
    color: white;
}

.pr-footer-column a {
    display: block;
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 12px;
    transition: 0.2s;
}

.pr-footer-column a:hover {
    color: white;
}

/* BOTTOM */

.pr-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 25px 20px;
    font-size: 14px;
    color: #64748b;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .pr-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media(max-width:700px){

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

    .pr-footer {
        padding-top: 60px;
    }
}


/* RESPONSIVE */
@media(max-width:1100px){
    .app-layout{
        grid-template-columns:1fr;
        padding:50px 30px;
    }
    .results-panel{height:350px;}
    #map{height:520px;}
}

@media(max-width:800px){
    .hero h1{font-size:34px;}
    .hero p{font-size:16px;}
    .search-card{padding:22px;}
    .search-card input, .search-card select{min-width:220px;}
}
