﻿/* Management table contrast fix */
.management-table {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #aaa;
    padding: 24px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
    color: #222;
}
th {
    background: #f5f5f5;
    color: #0b1a2e;
    font-weight: bold;
}

/* PX Kayaking base styles */
:root {
    --bg: #0b1a2e;
    --panel: #10263f;
    --accent: #34d399;
    --accent-dark: #10b981;
    --text: #e8f2ff;
    --muted: #9bb6d1;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
.page-bg::before, body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(11,26,46,0.75), rgba(11,26,46,0.9)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    opacity: 0.9;
    pointer-events: none;
}
.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(11,26,46,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 18px;
}
.brand {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 20px;
}
.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}
.nav a {
    padding: 8px 10px;
    border-radius: 6px;
    transition: 0.2s ease;
    color: var(--muted);
}
.nav a:hover,
.nav a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.cta {
    background: #10b981;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(16,185,129,0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: 2px solid #fff;
    text-shadow: 0 1px 2px #0b1a2e;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(52,211,153,0.45); }
.hero {
    max-width: 1100px;
    margin: 24px auto 40px;
    padding: 32px 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 28px;
    align-items: center;
}
.hero-card {
    background: linear-gradient(145deg, var(--panel), #0d2037);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hero h1 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 40px); }
.hero p { margin: 0 0 18px; color: var(--muted); }
.hero-list { display: grid; gap: 10px; color: var(--text); padding: 0; list-style: none; }
.hero-list li { display: flex; gap: 8px; align-items: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.3);
    color: var(--accent);
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}
.hero-visual {
    min-height: 260px;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 20%, rgba(52,211,153,0.35), transparent 40%),
                radial-gradient(circle at 80% 10%, rgba(59,130,246,0.25), transparent 35%),
                linear-gradient(135deg, #0d2037, #0b1a2e);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1516564713454-1f94cfc282a6?auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.45;
    mix-blend-mode: screen;
}
.section {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 18px;
}
.section h2 { margin: 0 0 14px; font-size: 26px; }
.section p { margin: 0 0 12px; color: var(--muted); }
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 18px;
}
.card {
    background: var(--panel);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.card h3 { margin: 0 0 8px; }
.tag { display: inline-block; padding: 6px 10px; background: rgba(52,211,153,0.12); border-radius: 8px; color: var(--accent); margin-bottom: 8px; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 18px;
}
form {
    display: grid;
    gap: 12px;
}
input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--text);
}
input:focus, textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
textarea { min-height: 120px; resize: vertical; }
.btn {
    background: var(--accent);
    color: #0b1a2e;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(52,211,153,0.4); }
.footer {
    text-align: center;
    padding: 22px 12px 30px;
    color: var(--muted);
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(11,26,46,0.9);
}

/* Mobile tweaks */
@media (max-width: 720px) {
    .nav-inner { flex-wrap: wrap; gap: 10px; }
    .nav-links { width: 100%; justify-content: space-between; }
    .hero { margin-top: 12px; }
}

.time-range { display: flex; gap: 8px; align-items: center; }
.time-range input { flex: 1; }
.time-separator { color: var(--muted); font-size: 14px; }





/* Hero slider */
.hero-visual { position: relative; min-height: 280px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 24px 70px rgba(0,0,0,0.4); background: rgba(255,255,255,0.03); }
.hero-slider { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; animation: heroFade 18s infinite; transition: opacity 1s ease; }
.slide-1 { background-image: url("images/hero1.jpg"); animation-delay: 0s; }
.slide-2 { background-image: url("images/hero2.jpg"); animation-delay: 6s; }
.slide-3 { background-image: url("images/hero3.jpg"); animation-delay: 12s; }
@keyframes heroFade { 0% { opacity: 0; } 5% { opacity: 1; } 28% { opacity: 1; } 33% { opacity: 0; } 100% { opacity: 0; } }
