* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #183047;
    background: #fff;
    line-height: 1.6
}

.content {
    max-width: 1120px;
    margin: auto;
    padding: 0 24px
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #dfe8ed;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04)
}

.header-inner {
    max-width: 1120px;
    margin: auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 24px
}

.brand {
    flex: 0 0 auto
}

.brand img {
    height: 64px;
    width: auto;
    display: block
}

.header-inner nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    flex: 1;
    flex-wrap: wrap
}

.header-inner nav a {
    color: #183047;
    text-decoration: none;
    padding: 9px 10px;
    border-radius: 5px;
    font-size: .9rem;
    font-weight: 700;
    white-space: nowrap
}

.header-inner nav a:hover,
.header-inner nav a.active {
    background: #e9f3f6;
    color: #075e7e
}

.nav-dropdown {
    position: relative
}

.nav-dropdown>a {
    display: block
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 210px;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    border-radius: 6px
}

.dropdown-menu a {
    display: block !important
}

.nav-dropdown:hover .dropdown-menu {
    display: block
}

.menu-toggle {
    display: none;
    border: 0;
    background: #e9f3f6;
    font-size: 1.4rem;
    padding: 8px 12px;
    border-radius: 6px;
    color: #183047
}

.hero {
    min-height: 400px;
    background-image: url('/images/havnebillede.jpg');
    background-size: cover;
    background-position: center 58%;
    position: relative;
    display: flex;
    align-items: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 35, 52, .78), rgba(7, 35, 52, .28))
}

.hero-content {
    position: relative;
    color: #fff;
    padding-top: 55px;
    padding-bottom: 55px
}

.eyebrow {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: #38849e
}

.hero .eyebrow {
    color: #bce0e9
}

.hero h1,
.page-head h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.05;
    margin: 10px 0 16px
}

.hero p {
    font-size: 1.1rem;
    max-width: 680px
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

.button {
    display: inline-block;
    background: #08779d;
    color: #fff !important;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 5px;
    font-weight: 700;
    border: 1px solid #08779d
}

.button:hover {
    background: #065e7d
}

.button-light {
    background: #fff;
    color: #183047 !important;
    border-color: #fff
}

.two-col {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 45px
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.intro {
    padding-top: 65px;
    padding-bottom: 55px
}

.intro h2 {
    font-size: 2rem;
    line-height: 1.2
}

.side-boxes {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.info-card,
.contact-box {
    background: #f1f6f8;
    border-radius: 10px;
    padding: 26px
}

.info-card h3,
.contact-box h2 {
    margin-top: 0
}

.info-card a,
.contact-box a,
.text-link,
.club-card a {
    color: #086a8d
}

.text-link,
.club-card a {
    font-weight: 700;
    text-decoration: none
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-bottom: 65px
}

.feature-card {
    display: block;
    color: #183047;
    text-decoration: none;
    background: #fff;
    border: 1px solid #dce7eb;
    border-radius: 9px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(11, 48, 65, .05);
    transition: .2s
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(11, 48, 65, .1)
}

.feature-card span {
    font-size: 1.8rem
}

.feature-card h3 {
    margin: 10px 0 4px
}

.feature-card p {
    margin: 0;
    color: #617582
}

.opening {
    background: #edf4f6;
    padding: 48px 0
}

.opening h2 {
    font-size: 2rem;
    margin: 7px 0 20px
}

.hours {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 760px
}

.hours div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 5px
}

.hours strong {
    white-space: nowrap
}

.page-head {
    background: #edf4f6;
    padding: 48px 0
}

.page-head h1 {
    font-size: 3.1rem;
    margin-bottom: 8px
}

.page-head p {
    max-width: 720px;
    font-size: 1.08rem;
    margin: 0
}

.section {
    padding-top: 55px;
    padding-bottom: 65px
}

.notice {
    background: #e9f3f6;
    border-left: 5px solid #08779d;
    padding: 22px 25px;
    margin-bottom: 35px;
    border-radius: 5px
}

.placeholder-image {
    min-height: 280px;
    background: #dce9ed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #5c737f;
    font-weight: 800;
    letter-spacing: .1em
}

.placeholder-image small {
    display: block;
    font-weight: 400;
    letter-spacing: 0
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.facility-card {
    border: 1px solid #dce7eb;
    border-radius: 9px;
    padding: 24px;
    background: #fff
}

.facility-card .icon {
    font-size: 1.6rem
}

.facility-card h2 {
    font-size: 1.25rem;
    margin: 8px 0
}

.facility-card p {
    color: #647783;
    margin: 0
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.club-card {
    background: #f3f7f9;
    border-radius: 9px;
    padding: 24px
}

.club-card h2,
.club-card h3 {
    margin-top: 10px
}

.logo-placeholder {
    height: 90px;
    background: #fff;
    border: 1px dashed #aebfc7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a8d96
}

.big {
    font-size: 1.1rem
}

.compact {
    grid-template-columns: 1fr
}

.small-note {
    color: #657985
}

.contact-box {
    height: 100%
}

footer {
    background: #102a3b;
    color: #dce8ed
}

.footer-inner {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .9rem
}

@media(max-width:1050px) {
    .header-inner nav a {
        font-size: .82rem;
        padding: 8px 7px
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:800px) {
    .header-inner {
        flex-wrap: wrap
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .header-inner nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        order: 3
    }

    .menu-open .header-inner nav {
        display: flex
    }

    .header-inner nav a {
        font-size: 1rem
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f4f8f9;
        margin-left: 10px
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .three-col {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .facility-grid,
    .cards {
        grid-template-columns: 1fr 1fr
    }

    .hero {
        min-height: 380px
    }

    .hero-content {
        padding-top: 45px;
        padding-bottom: 45px
    }
}

@media(max-width:560px) {
    .content {
        padding-left: 18px;
        padding-right: 18px
    }

    .brand img {
        height: 55px
    }

    .feature-grid,
    .facility-grid,
    .cards {
        grid-template-columns: 1fr
    }

    .hours {
        grid-template-columns: 1fr
    }

    .page-head h1 {
        font-size: 2.4rem
    }

    .hero h1 {
        font-size: 2.7rem
    }

    .hero p {
        font-size: 1rem
    }

    .footer-inner {
        flex-direction: column
    }
}
.rates-table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #dce7eb
}

.rates-table-wrap table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: .95rem
}

.rates-table-wrap th,
.rates-table-wrap td {
    padding: 11px 15px;
    border-bottom: 1px solid #e2e8eb;
    text-align: left
}

.rates-table-wrap thead th {
    background: #08779d;
    color: #fff;
    font-weight: 700
}

.rates-table-wrap td:last-child,
.rates-table-wrap th:last-child {
    text-align: right;
    white-space: nowrap
}

.rates-table-wrap tr.section th {
    background: #e9f3f6;
    color: #075e7e;
    font-size: 1rem;
    padding-top: 14px;
    padding-bottom: 14px
}

.rates-note {
    margin-top: 18px;
    padding: 14px 16px;
    background: #e9f3f6;
    border-left: 4px solid #08779d;
    border-radius: 5px
}

@media(max-width:560px) {
    .rates-table-wrap table {
        min-width: 420px
    }
}
