/* ============================================================
   GRISEN & DRAKEN — BRÖSARP & KRISTIANSTAD
   ============================================================ */

:root {
    --bg: #2a6b5e;
    --bg-light: #357a6b;
    --bg-dark: #1f5a4d;
    --card-bg: rgba(255,255,255,0.08);
    --card-border: rgba(255,255,255,0.12);
    --gold: #e6c850;
    --gold-light: #f0d878;
    --pink: #f4a4a4;
    --pink-dark: #e08a8a;
    --white: #fff;
    --text: #1a1a1a;
    --text-light: #555;
    --font-hand: 'Caveat', cursive;
    --font-body: 'Inter', sans-serif;
    --radius: 24px;
    --radius-sm: 16px;
    --transition: all 0.3s ease;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   MASKOTAR
   ============================================================ */
.maskot {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
.gris { top: 10%; left: -160px; animation: flygGris 25s linear infinite; }
.drake { top: 60%; right: -160px; animation: flygDrake 30s linear infinite; }
@keyframes flygGris {
    0% { left: -160px; transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-40px) rotate(4deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-30px) rotate(-3deg); }
    100% { left: 110vw; transform: translateY(0) rotate(0deg); }
}
@keyframes flygDrake {
    0% { right: -160px; transform: translateY(0) scaleX(-1) rotate(0deg); }
    25% { transform: translateY(-35px) scaleX(-1) rotate(-4deg); }
    50% { transform: translateY(0) scaleX(-1) rotate(0deg); }
    75% { transform: translateY(-25px) scaleX(-1) rotate(3deg); }
    100% { right: 110vw; transform: translateY(0) scaleX(-1) rotate(0deg); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(42,107,94,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 4px; }
.nav-link {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-hand);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.12); }
.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span {
    display: block; width: 26px; height: 2.5px;
    background: var(--white); border-radius: 3px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-spacer { height: 70px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding: 60px 24px;
}
.hero-inner {
    text-align: center;
    max-width: 700px;
}
.hero-logo {
    width: 220px;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}
.hero h1 {
    font-family: var(--font-hand);
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-tagline {
    font-family: var(--font-hand);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold-light);
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-family: var(--font-hand);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-main {
    background: var(--pink);
    color: var(--text);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-main:hover { background: var(--pink-dark); transform: scale(1.05); }
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.btn-gold {
    background: var(--gold);
    color: var(--text);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-gold:hover { background: var(--gold-light); transform: scale(1.05); }

/* ============================================================
   KORT
   ============================================================ */
.features-section { padding: 60px 24px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.feature-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-6px);
}
.feature-icon {
    width: 64px; height: 64px;
    background: rgba(230,200,80,0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.6rem;
}
.feature-card h3 {
    font-family: var(--font-hand);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 14px;
}
.feature-card p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-section { padding: 80px 24px; background: var(--bg-dark); }
.events-header { text-align: center; margin-bottom: 48px; }
.events-header h2 {
    font-family: var(--font-hand);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 8px;
}
.events-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }
.event-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.event-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.event-icon {
    width: 56px; height: 56px;
    background: rgba(230,200,80,0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.4rem;
}
.event-card h3 {
    font-family: var(--font-hand);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}
.event-card > p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.event-dates {
    background: rgba(0,0,0,0.15);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: 20px;
    text-align: left;
}
.event-dates-title {
    font-family: var(--font-hand);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 12px;
    text-align: center;
}
.event-date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
}
.event-date-row:last-child { border-bottom: none; }
.event-date-row span { color: rgba(255,255,255,0.85); font-weight: 500; }
.event-date-row .time { color: var(--gold); display: flex; align-items: center; gap: 6px; }
.event-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,200,80,0.15);
    border: 1px solid var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.event-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.event-actions .btn {
    padding: 12px 28px;
    font-size: 1.1rem;
}

/* ============================================================
   MENY PREVIEW
   ============================================================ */
.meny-preview { padding: 80px 24px; }
.meny-preview-header {
    text-align: center;
    margin-bottom: 48px;
}
.meny-preview-header h2 {
    font-family: var(--font-hand);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 10px;
}
.meny-preview-header p {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
}
.meny-showcase {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid var(--gold);
    background: var(--card-bg);
    min-height: 300px;
}
.meny-showcase img {
    width: 100%;
    height: auto;
    display: block;
}
.meny-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}
.meny-fallback svg {
    width: 64px; height: 64px;
    margin-bottom: 16px;
    opacity: 0.4;
}
.meny-fallback p {
    font-family: var(--font-hand);
    font-size: 1.5rem;
}
.meny-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   BOKA CTA
   ============================================================ */
.boka-section { background: var(--bg-dark); padding: 80px 24px; }
.boka-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 56px 48px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}
.boka-box h3 {
    font-family: var(--font-hand);
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 12px;
}
.boka-box p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

/* ============================================================
   MENY SIDAN
   ============================================================ */
.meny-page { min-height: calc(100vh - 70px); padding: 60px 24px; }
.meny-header { text-align: center; margin-bottom: 40px; }
.meny-header h1 {
    font-family: var(--font-hand);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 8px;
}
.meny-header p { color: rgba(255,255,255,0.6); }
.meny-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.meny-tab {
    padding: 14px 36px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-family: var(--font-hand);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.meny-tab.active, .meny-tab:hover {
    background: var(--gold);
    color: var(--text);
}
.meny-content { display: none; }
.meny-content.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.meny-img-full {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius);
    border: 3px solid var(--gold);
}
.meny-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 80px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255,255,255,0.5);
}
.meny-placeholder svg { width: 64px; height: 64px; margin-bottom: 16px; opacity: 0.4; }
.meny-placeholder p { font-family: var(--font-hand); font-size: 1.5rem; }

/* ============================================================
   KRISTIANSTAD SIDAN
   ============================================================ */
.kristianstad-page { min-height: calc(100vh - 70px); padding: 60px 24px; }
.kristianstad-header { text-align: center; margin-bottom: 48px; }
.kristianstad-header h1 {
    font-family: var(--font-hand);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 8px;
}
.kristianstad-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }
.kristianstad-info {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 600px;
    margin: 0 auto 40px;
    backdrop-filter: blur(10px);
}
.kristianstad-info-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.kristianstad-info-item:last-child { border-bottom: none; }
.kristianstad-info-item svg { color: var(--gold); flex-shrink: 0; width: 20px; height: 20px; }
.kristianstad-info-item a { color: var(--gold); text-decoration: none; }
.kristianstad-meny {
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================================
   ÖPPETTIDER
   ============================================================ */
.hours-page {
    min-height: calc(100vh - 70px);
    display: flex; align-items: center; justify-content: center;
    padding: 60px 24px;
}
.hours-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}
.hours-card h1 {
    font-family: var(--font-hand);
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 4px;
}
.hours-card .subtitle { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.hours-table { width: 100%; text-align: left; margin-bottom: 24px; }
.hours-row {
    display: flex; justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day {
    font-family: var(--font-hand);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}
.hours-time { color: rgba(255,255,255,0.7); }
.hours-note {
    background: rgba(230,200,80,0.1);
    border-left: 3px solid var(--gold);
    padding: 14px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-align: left;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   BOKA SIDAN
   ============================================================ */
.boka-page {
    min-height: calc(100vh - 70px);
    display: flex; align-items: center; justify-content: center;
    padding: 60px 24px;
}
.boka-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}
.boka-card h1 {
    font-family: var(--font-hand);
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 8px;
}
.boka-card > p { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.boka-detail {
    background: rgba(0,0,0,0.15);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}
.boka-detail-item {
    display: flex; align-items: center; gap: 14px;
    padding: 10px 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}
.boka-detail-item svg { color: var(--gold); flex-shrink: 0; width: 20px; height: 20px; }
.boka-detail-item a { color: var(--gold); text-decoration: none; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-page { min-height: calc(100vh - 70px); padding: 60px 24px; }
.kontakt-header { text-align: center; margin-bottom: 48px; }
.kontakt-header h1 {
    font-family: var(--font-hand);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 8px;
}
.kontakt-header p { color: rgba(255,255,255,0.6); }
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
.kontakt-info {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 36px;
    backdrop-filter: blur(10px);
}
.kontakt-info h2 {
    font-family: var(--font-hand);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 28px;
}
.kontakt-item {
    display: flex; gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.kontakt-item:last-child { border-bottom: none; }
.kontakt-item-icon {
    width: 44px; height: 44px;
    background: rgba(230,200,80,0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.kontakt-item-icon svg { width: 20px; height: 20px; }
.kontakt-item-text h4 {
    font-family: var(--font-hand);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2px;
}
.kontakt-item-text p, .kontakt-item-text a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
}
.kontakt-item-text a:hover { color: var(--gold); }
.kontakt-map {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%; min-height: 440px;
}
.kontakt-map iframe { width: 100%; height: 100%; min-height: 440px; border: none; display: block; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-login {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
}
.admin-login-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}
.admin-login-card h1 {
    font-family: var(--font-hand);
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 4px;
}
.admin-login-card p { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; text-align: left; }
.form-group label {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 6px;
}
.form-group input {
    width: 100%; padding: 14px 16px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(0,0,0,0.2);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus { outline: none; border-color: var(--gold); }
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-error {
    background: rgba(212,56,13,0.1);
    color: #ff8a80;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin-bottom: 18px;
}
.admin-dashboard {
    min-height: calc(100vh - 70px);
    padding: 40px 24px;
}
.admin-container { max-width: 900px; margin: 0 auto; }
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap; gap: 12px;
}
.admin-header h1 {
    font-family: var(--font-hand);
    font-size: 2.2rem;
    color: var(--white);
}
.admin-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.admin-card h2 {
    font-family: var(--font-hand);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
}
.upload-zone {
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: rgba(0,0,0,0.1);
}
.upload-zone:hover { border-color: var(--gold); background: rgba(230,200,80,0.05); }
.upload-zone svg { width: 48px; height: 48px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.upload-zone p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 6px; }
.upload-zone .hint { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.file-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.file-item {
    background: rgba(0,0,0,0.15);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.file-item:hover { transform: translateY(-4px); border-color: var(--gold); }
.file-item img { width: 100%; height: 100px; object-fit: cover; display: block; }
.file-item-info { padding: 10px; }
.file-item-info p { font-size: 0.75rem; color: var(--white); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-item-info span { font-size: 0.68rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand { max-width: 260px; }
.footer-logo-img { height: 44px; width: auto; margin-bottom: 14px; opacity: 0.9; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h5 {
    font-family: var(--font-hand);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4px;
}
.footer-col a, .footer-col span {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col .muted { opacity: 0.35; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}
.footer-bottom p:last-child {
    margin-top: 4px;
    font-family: var(--font-hand);
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .kontakt-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .nav-inner { height: 64px; }
    .nav-spacer { height: 64px; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 64px; left: 0; width: 100%;
        background: rgba(42,107,94,0.98);
        flex-direction: column; padding: 16px 24px; gap: 2px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        align-items: stretch;
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-link { padding: 12px 16px; font-size: 1.2rem; }
    .hero { min-height: calc(100vh - 64px); padding: 40px 20px; }
    .hero-logo { width: 180px; }
    .features-section { padding: 40px 20px; }
    .feature-card { padding: 32px 24px; }
    .events-section { padding: 60px 20px; }
    .event-card { padding: 32px 24px; }
    .meny-preview { padding: 60px 20px; }
    .boka-section { padding: 60px 20px; }
    .boka-box { padding: 40px 24px; }
    .hours-card { padding: 36px 24px; }
    .boka-card { padding: 36px 24px; }
    .kontakt-page { padding: 40px 20px; }
    .kontakt-info { padding: 28px 20px; }
    .kristianstad-page { padding: 40px 20px; }
    .kristianstad-info { padding: 24px 20px; }
    .footer { padding: 48px 20px 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .maskot { width: 110px; }
    .admin-header { flex-direction: column; align-items: flex-start; }
    .event-actions { flex-direction: column; align-items: center; }
    .event-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
    .meny-tab { padding: 12px 24px; font-size: 1.2rem; }
    .file-list { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   LOCATION PICKER
   ============================================================ */
.location-picker {
    padding: 80px 24px;
    background: var(--bg-dark);
}
.location-picker-header {
    text-align: center;
    margin-bottom: 48px;
}
.location-picker-header h2 {
    font-family: var(--font-hand);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 10px;
}
.location-picker-header p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}
.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.location-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
    display: block;
}
.location-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
    border-color: var(--gold);
}
.location-card-icon {
    width: 72px; height: 72px;
    background: rgba(230,200,80,0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold);
}
.location-card-icon svg { width: 32px; height: 32px; }
.location-card h3 {
    font-family: var(--font-hand);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 10px;
}
.location-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 6px;
}
.location-card .location-phone {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .location-grid { grid-template-columns: 1fr; }
    .location-card { padding: 36px 24px; }
}
