
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 200; src: url('../fonts/oswald-v57-latin-200.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 300; src: url('../fonts/oswald-v57-latin-300.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 400; src: url('../fonts/oswald-v57-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 500; src: url('../fonts/oswald-v57-latin-500.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 600; src: url('../fonts/oswald-v57-latin-600.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 700; src: url('../fonts/oswald-v57-latin-700.woff2') format('woff2'); }

@font-face { font-display: swap; font-family: 'Google Sans'; font-style: normal; font-weight: 400; src: url('../fonts/google-sans-v67-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Google Sans'; font-style: italic; font-weight: 400; src: url('../fonts/google-sans-v67-latin-italic.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Google Sans'; font-style: normal; font-weight: 700; src: url('../fonts/google-sans-v67-latin-700.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Google Sans'; font-style: italic; font-weight: 700; src: url('../fonts/google-sans-v67-latin-700italic.woff2') format('woff2'); }

:root {
    --primary:   #005029;
    --secondary: #da0e19;
    --dark:      #111111;
    --base:      #ffffff;
    --font-base: "Google Sans", "Segoe UI", Arial, Helvetica, sans-serif;
    --font-heading: 'Oswald', Arial, Helvetica, sans-serif;
}

/* ── Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    font-family: var(--font-base);
    color: #1a1a1a;
    background: #fff;
    line-height: 1.65;
}
html, body { font-size: 18px; }

/* ── Design Tokens ───────────────────────────────────── */


/* ── Typography ──────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.15; font-family: var(--font-heading); text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; font-family: var(--font-heading); text-transform: uppercase; }
h3 { font-size: 1.2rem; font-weight: 700; font-family: var(--font-heading); }

/* ── Navigation ──────────────────────────────────────── */
.backToTopIcon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
}
nav.mainNavigation {
    position: fixed;
    box-shadow: 0 0 0.4em rgba(0,0,0,0.12);
    top: 0; left: 0; right: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    z-index: 200;
    padding: 0.75rem .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav.mainNavigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(.75rem, 2vw, 2rem);
}
@media(max-width: 480px) {
    nav.mainNavigation ul { gap: clamp(.5rem, 3vw, 1.25rem); line-height: 1.2; }
}
nav.mainNavigation ul a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.6rem, 2vw, 1.05rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s;
    border-bottom: 0.2rem solid transparent;
    padding-bottom: 0.2rem;
    white-space: nowrap;
}
nav.mainNavigation ul a:hover,
nav.mainNavigation ul a.active { border-bottom-color: var(--secondary); }
nav.mainNavigation ul a.backToTopIcon { border-bottom: none; padding-bottom: 0; }

.textUppercase { text-transform: uppercase; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
    background: var(--primary);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}
/* subtle radial glow */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero-logo { width: clamp(130px, 80vw, 400px); margin-bottom: 0rem; position: relative; }
.hero h1 { position: relative; }
.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    opacity: 0.88;
    font-style: italic;
    margin-top: 0.4rem;
    position: relative;
}
.hero-tagline {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    opacity: 0.82;
    max-width: 580px;
    margin: 1.4rem auto 0;
    position: relative;
}
.hero-cta { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; position: relative; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.btn-red   { background: var(--secondary); color: #fff; }
.btn-outline { border: 2px solid rgba(255,255,255,0.8); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-green { background: var(--primary); color: #fff; }

.smallBtnUnderline { position: relative; }
.smallBtnUnderline small {
    display: block;
    font-size: 0.7em;
    opacity: 0.8;
    margin-top: 0.25rem;
    position:absolute; left: 50%; transform: translateX(-50%);
    width: 100%;
    bottom:0;
    text-transform: none !important;
}

/* ── Round Images ────────────────────────────────────── */
.img-round {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 7px solid var(--secondary);
    box-shadow: 0 4px 18px rgba(0,0,0,0.26);
    display: block;
}
.img-round.bp { border-color: var(--primary); }
.img-round.bw { border-color: #fff; }
.img-round.lg { width: 250px; height: 250px; }
.img-round.xl { width: 300px; height: 300px; }

/* ── Hero Image Row ──────────────────────────────────── */
.hero-images {
    display: flex;
    gap: 1.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ── Wave Dividers ───────────────────────────────────── */
.wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave svg { display: block; width: 100%; height: auto; margin-bottom: -2px; /* avoid 1px gap */ }

/* ── Shared Section Layout ───────────────────────────── */
section { padding: 20vh 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2  { color: var(--primary); margin-bottom: 0.5rem; }
.section-header h2 .accent { color: var(--secondary); }
.section-header p   { color: #555; font-size: 1.05rem; max-width: 620px; margin: 0 auto; }
.section-header.light h2 { color: #fff; }
.section-header.light p  { color: rgba(255,255,255,0.8); }

/* ── About ───────────────────────────────────────────── */
.about { background: #fff; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.about-text p { margin-bottom: 1rem; color: #444; font-size: 1.05rem; }
.about-text .btn { margin-top: 0.75rem; }
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    justify-items: center;
}

/* ── Offers ──────────────────────────────────────────── */
.offers { background: var(--primary); }
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}
.offer-card {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #fff;
    transition: background 0.25s, transform 0.25s;
}
.offer-card:hover { background: rgba(255,255,255,0.17); transform: translateY(-5px); }
.offer-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.offer-card h3 { margin-bottom: 0.6rem; }
.offer-card p  { opacity: 0.82; font-size: 0.95rem; line-height: 1.5; }

.capcity-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.capacity-badge {
    text-align: center;
    margin-top: 3rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    width: 300px;
    color: #fff;
}
.capacity-badge .big { font-size: 3.5rem; font-weight: 800; color: var(--base); line-height: 1; }
.capacity-badge p { margin-top: 0.3rem; opacity: 0.88; }

/* ── Docking Locations ──────────────────────────────────── */
.docking { background: #fff; padding: 10vh 2rem; }
.docking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.docking-card {
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    color:#fff;
}
.docking-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.docking-card h3 { margin-bottom: 0.5rem; color: #fff; }
.docking-card p { color: #fff; font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.25rem; }
.btn-map {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-map:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); }

/* ── Gallery ─────────────────────────────────────────── */
.gallery { background: #fff; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}
.gallery-item { display: block; cursor: zoom-in; }
.gallery-item .img-round { transition: transform 0.2s, box-shadow 0.2s; }
.gallery-item:hover .img-round { transform: scale(1.05); box-shadow: 0 8px 28px rgba(0,0,0,0.36); }

/* ── Lightbox ─────────────────────────────────────────── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}
#lightbox.active { display: flex; }
#lb-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    display: block;
}
#lb-close,
#lb-prev,
#lb-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s;
    line-height: 1;
    user-select: none;
}
#lb-close:hover, #lb-prev:hover, #lb-next:hover { opacity: 1; }
#lb-close {
    top: 1.25rem;
    right: 1.5rem;
    font-size: 3rem;
    padding: 0 0.25rem;
}
#lb-prev,
#lb-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    padding: 0 0.5rem;
}
#lb-prev { left: 1rem; }
#lb-next { right: 1rem; }

/* ── Booking ─────────────────────────────────────────── */
.booking {
    text-align: center;
    padding: 20vh 2rem;
    background: var(--primary);
    color: #fff;
}
.booking h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.75rem; color: #fff; }
.booking .sub { font-size: 1.1rem; opacity: 0.9; max-width: 520px; margin: 0 auto 2.5rem; }
.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.45rem;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(0,0,0,0.22);
    transition: transform 0.2s, box-shadow 0.2s;
}
.phone-link:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.phone-icon { width: 26px; height: 26px; flex-shrink: 0; }

.contact-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.wa-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.22);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.wa-link:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.wa-link svg { width: 34px; height: 34px; display: block; }

/* ── Footer ──────────────────────────────────────────── */
footer {
    background: var(--dark);
    color: var(--base);
    text-align: center;
    padding: 5vh 2rem;
    font-size: 1rem;
}
footer a { color: var(--base); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--base); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 820px) {
    nav ul { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .about-images { grid-template-columns: 1fr; }
    .img-round.lg { width: 180px; height: 180px; }
}


.svgPrimary {
    color: var(--primary);
}
.svgSecondary {
    color: var(--secondary);
}
.svgDark {
    color: var(--dark);
}
.svgWhite {
    color: var(--base);
}

.svgFromWhite {
    background: var(--base);
}
.svgFromPrimary {
    background: var(--primary);
}
.svgFromSecondary {
    background: var(--secondary);
}
.svgFromDark {
    background: var(--dark);
}