@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

:root {
    color-scheme: light;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background-color: #f7fafd;
    color: #181c1f;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-effect {
    backdrop-filter: blur(12px);
}

section {
    scroll-margin-top: 100px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* Align with dashboard styles */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #bfc8cf;
    border-radius: 10px;
}

.glass-nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.water-hero-bg {
    background-image: url('/assets/images/water-background.jpg');
}

.site-nav-shell {
    width: 1280px;
    max-width: calc(100vw - 64px);
}

.site-hero {
    padding-top: 140px;
    min-height: 860px;
}

.site-hero-bg {
    background-size: cover;
    background-position: 30% 25%;
}

.site-hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.02) 100%);
}

.site-hero-inner {
    min-height: 860px;
    transform: translateX(-40px);
}

.site-hero-content-row {
    min-height: 860px;
    padding: 30px 0 90px;
}

.site-pill-glass {
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.site-hero-title {
    margin-top: 28px;
    max-width: 920px;
    font-size: 78px;
    line-height: 0.98;
    font-weight: 600;
}

.site-hero-copy {
    margin-top: 28px;
    max-width: 760px;
    font-size: 24px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.site-hero-actions {
    margin-top: 34px;
    gap: 18px;
}

.btn,
.site-hero-btn,
.site-cta-btn,
.site-final-btn,
.site-hero-btn-secondary,
.site-image-cta-btn {
    border-radius: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn:hover,
.site-hero-btn:hover,
.site-cta-btn:hover,
.site-final-btn:hover,
.site-hero-btn-secondary:hover,
.site-image-cta-btn:hover {
    transform: translateY(-1px);
}

.site-hero-btn,
.site-cta-btn,
.site-final-btn {
    min-width: 168px;
    padding: 16px 28px;
    border-radius: 14px;
    background: #007ba7;
    box-shadow: 0 14px 34px rgba(0, 123, 167, 0.18);
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
}

.site-hero-btn-secondary {
    min-width: 190px;
    padding: 16px 28px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    color: #ffffff;
}

.site-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.site-image-cta-btn {
    margin-top: 28px;
    min-width: 260px;
    min-height: 64px;
    box-shadow: 0 10px 22px rgba(13, 110, 253, 0.20);
}

.site-final-btn {
    min-width: 240px;
    min-height: 60px;
    padding: 14px 24px;
    border-radius: 14px;
    background: #007ba7;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.site-image-cta {
    min-height: 420px;
    background-image: url('/assets/images/next-adventure.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 900px) {
    .site-nav-shell {
        width: calc(100vw - 32px);
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-hero {
        padding-top: 100px;
        min-height: auto;
    }

    .site-hero-inner {
        min-height: auto;
        transform: none;
    }

    .site-hero-content-row {
        min-height: auto;
        padding: 32px 0 60px;
    }

    .site-hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        max-width: 100%;
    }

    .site-hero-copy {
        font-size: 1rem;
        max-width: 100%;
    }

    .site-hero-actions {
        gap: 12px;
        margin-top: 24px;
        flex-direction: column;
    }

    .site-hero-btn,
    .site-hero-btn-secondary,
    .site-image-cta-btn,
    .site-final-btn {
        min-width: auto;
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }
}

.site-image-cta-overlay {
    background: rgba(8, 15, 28, 0.58);
}

.site-image-cta-inner {
    min-height: 420px;
    padding: 56px 0;
}

.site-image-cta-title,
.site-final-cta-title {
    max-width: 760px;
    font-size: 56px;
    line-height: 0.98;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.site-image-cta-copy,
.site-final-cta-copy {
    max-width: 760px;
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.site-image-cta-btn {
    margin-top: 28px;
    min-width: 260px;
    min-height: 64px;
    box-shadow: 0 10px 22px rgba(13, 110, 253, 0.20);
}

.site-final-cta {
    padding: 64px 24px;
    background: #1e1e1e;
}

.site-final-cta-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.site-final-cta-copy {
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.88);
}

.site-final-actions {
    margin-top: 32px;
}

.site-final-btn {
    min-width: 240px;
    min-height: 60px;
    padding: 14px 24px;
    border-radius: 14px;
    background: #0d6efd;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.site-footer {
    background: #1e1e1e;
}

.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 48px 56px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 72px;
    flex-wrap: nowrap;
}

.site-footer-brand {
    max-width: 320px;
    flex: 0 0 320px;
}

.site-footer-logo-wrap {
    margin-bottom: 24px;
}

.site-footer-logo {
    height: 56px;
    width: auto;
    display: block;
}

.site-footer-copy {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer-col-sm {
    min-width: 160px;
}

.site-footer-col-md {
    min-width: 190px;
}

.site-footer-col {
    min-width: 180px;
}

.site-footer-heading {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.site-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer-link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 24px 48px 32px;
}

.site-footer-bottom-copy {
    margin: 0;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.activities-hero {
    background-image: url('/assets/images/ocean-is-calling.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    min-height: 430px;
}

.activities-hero-overlay {
    background: linear-gradient(180deg, rgba(0, 123, 167, 0.28) 0%, rgba(0, 123, 167, 0.48) 45%, rgba(0, 123, 167, 0.72) 100%);
}

.activities-hero-inner {
    padding-top: 155px;
    padding-bottom: 72px;
}

.activities-pill {
    padding: 10px 26px;
    border-radius: 999px;
    background: #2ebd51;
}

.activities-title {
    margin-top: 26px;
    font-size: 68px;
    line-height: 0.98;
}

.activities-copy {
    max-width: 780px;
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.activities-filter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: end;
}

.activities-empty-icon {
    width: 72px;
    height: 72px;
}

.site-mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

.site-mobile-menu-link,
.site-mobile-menu-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.site-mobile-menu-link {
    color: #1f2937;
}

.site-mobile-menu-link:hover {
    background: #f1f5f9;
    color: #007ba7;
}

.site-mobile-menu-action {
    border: 1px solid #007ba7;
}

.site-mobile-menu-action-outline {
    color: #007ba7;
}

.site-mobile-menu-action-primary {
    background: #007ba7;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 123, 167, 0.18);
}

.cta-dot-overlay {
    background-image: radial-gradient(#ffffff 1px, transparent 0);
    background-size: 30px 30px;
}

.material-fill {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

@media (max-width: 1279px) {
    .site-header-nav {
        width: min(420px, calc(100vw - 24px));
    }

    .site-nav-shell {
        width: 100%;
        max-width: none;
        gap: 16px;
        padding: 12px 14px;
        border-radius: 22px;
    }

    .site-nav-logo {
        height: 40px;
    }

    .site-hero {
        padding-top: 0;
        min-height: auto;
    }

    .site-hero-inner {
        min-height: min(760px, 100svh);
        transform: none;
    }

    .site-hero-content-row {
        min-height: min(760px, 100svh);
        padding: 132px 0 72px;
    }

    .site-hero-title {
        max-width: 760px;
        font-size: clamp(52px, 8vw, 72px);
    }

    .site-hero-copy {
        max-width: 660px;
        font-size: 21px;
    }

    .activities-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer-inner {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    section {
        scroll-margin-top: 88px;
    }

    .site-header-nav {
        top: 12px;
        width: calc(100vw - 24px);
        max-width: 420px;
    }

    .site-nav-shell {
        padding: 10px 12px;
        border-radius: 20px;
    }

    .site-nav-logo {
        height: 34px;
    }

    .site-mobile-menu-toggle {
        height: 40px;
        width: 40px;
    }

    .site-mobile-menu {
        padding: 12px;
        border-radius: 20px;
    }

    .site-hero-bg {
        background-position: 43% center;
    }

    .site-hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.46) 55%, rgba(0, 0, 0, 0.3) 100%);
    }

    .site-hero-inner {
        min-height: auto;
        padding: 118px 20px 64px;
    }

    .site-hero-content-row {
        min-height: auto;
        padding: 0;
    }

    .site-pill-glass {
        padding: 9px 14px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .site-hero-title {
        margin-top: 22px;
        max-width: none;
        font-size: clamp(42px, 12.5vw, 56px);
        line-height: 1.02;
    }

    .site-hero-copy {
        margin-top: 20px;
        max-width: none;
        font-size: 17px;
        line-height: 1.55;
    }

    .site-hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 28px;
        gap: 12px;
    }

    .site-hero-btn,
    .site-hero-btn-secondary,
    .site-cta-btn,
    .site-final-btn {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        padding: 13px 18px;
        font-size: 16px;
    }

    .site-image-cta {
        min-height: auto;
    }

    .site-image-cta-inner {
        min-height: auto;
        padding: 60px 0;
    }

    .site-image-cta-title,
    .site-final-cta-title {
        max-width: none;
        font-size: clamp(32px, 10vw, 42px);
        line-height: 1.05;
    }

    .site-image-cta-copy,
    .site-final-cta-copy {
        max-width: none;
        font-size: 16px;
        line-height: 1.55;
    }

    .site-final-cta {
        padding: 56px 20px;
    }

    .site-final-actions {
        width: 100%;
        padding: 0 4px;
    }

    .site-footer-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 48px 20px 36px;
        gap: 32px;
    }

    .site-footer-brand {
        max-width: none;
        flex: 1 1 auto;
    }

    .site-footer-col-sm,
    .site-footer-col-md,
    .site-footer-col {
        min-width: 0;
        width: 100%;
    }

    .site-footer-bottom {
        padding: 20px;
    }

    .activities-hero {
        min-height: auto;
    }

    .activities-hero-inner {
        padding-top: 114px;
        padding-bottom: 52px;
    }

    .activities-pill {
        padding: 9px 16px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .activities-title {
        margin-top: 20px;
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.04;
    }

    .activities-copy {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .activities-filter-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 420px) {
    .site-nav-logo {
        height: 30px;
    }

    .site-hero-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-hero-title {
        font-size: clamp(36px, 12vw, 48px);
    }
}
