/* ===== PREMIUM OVERLAY DESIGN ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif !important;
    background: #f4f8fc;
}

/* Hero (brukes kun på forsiden) */
.premium-hero {
    background: linear-gradient(rgba(15,61,110,0.75), rgba(15,61,110,0.75)),
                url('hero.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.premium-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.premium-hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.premium-hero a {
    background: white;
    color: #0f3d6e;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.premium-hero a:hover {
    background: #e0ecfa;
}

/* Premium footer enhancement */
.footer {
    background: linear-gradient(135deg, #0f3d6e, #1b5fa8) !important;
    color: white !important;
    padding: 50px 20px !important;
    text-align: center;
}

/* Mykere spacing */
.container {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Premium section spacing */
section {
    margin-bottom: 70px;
}

/* ===== FILTER KNAPPER MED FARGER ===== */

.filter button {
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    margin: 6px;
    transition: all 0.2s ease;
}

/* 1 = Alle */
.filter button:nth-child(1) {
    background: #2563eb;
}

/* 2 = Ledig */
.filter button:nth-child(2) {
    background: #16a34a;
}

/* 3 = Reservert */
.filter button:nth-child(3) {
    background: #f59e0b;
}

/* 4 = Solgt */
.filter button:nth-child(4) {
    background: #dc2626;
}

/* Hover */
.filter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Aktiv */
.filter button.active {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.15);
}

.lot-info-text {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #334155;
}
