
/*
 * Website design & development by Davide Todeschin
 i*/

/* =====================================================
   VARIABLES
===================================================== */

:root {

    --navy: #071c26;
    --navy-soft: #0d2a36;

    --cream: #f5f3ee;
    --white: #ffffff;

    --text: #132b35;
    --muted: #718087;

    --line: rgba(19, 43, 53, 0.12);

    --gold: #b79b6a;

    --radius: 4px;

    --container: 1240px;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


body {

    font-family: "DM Sans", sans-serif;

    background: var(--cream);

    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;

}


img {

    display: block;

    width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


.container {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-inline: auto;

}


.section {

    padding: 140px 0;

}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3 {

    font-family: "Playfair Display", serif;

    font-weight: 400;

    line-height: 1.05;

}


h1 {

    font-size: clamp(
        4rem,
        8vw,
        8.5rem
    );

    letter-spacing: -0.045em;

}


h2 {

    font-size: clamp(
        3rem,
        5vw,
        5.5rem
    );

    letter-spacing: -0.035em;

}


h3 {

    font-size: 2rem;

}


h1 em,
h2 em {

    font-style: italic;

    color: var(--gold);

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 0.22em;

    color: var(--muted);

}


.eyebrow::before {

    content: "";

    width: 28px;

    height: 1px;

    background: var(--gold);

}


.large-text {

    font-family: "Playfair Display", serif;

    font-size: clamp(
        1.6rem,
        2.5vw,
        2.3rem
    );

    line-height: 1.35;

}


/* =====================================================
   HEADER
===================================================== */


.header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 10;

    color: white;

    border-bottom: 1px solid rgba(
        255,
        255,
        255,
        0.15
    );

}


.nav {

    min-height: 100px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

    letter-spacing: 0.12em;

}


.logo strong {

    font-size: 1.35rem;

    font-weight: 600;

}


.logo span {

    margin-top: 6px;

    font-size: 0.55rem;

    letter-spacing: 0.35em;

    opacity: 0.7;

}


.menu {

    display: flex;

    gap: 38px;

    font-size: 0.8rem;

}


.menu a {

    position: relative;

    opacity: 0.8;

    transition: opacity 0.3s ease;

}


.menu a:hover {

    opacity: 1;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 54px;

    padding: 0 30px;

    background: var(--white);

    color: var(--navy);

    border: 1px solid var(--white);

    font-size: 0.75rem;

    font-weight: 600;

    letter-spacing: 0.08em;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

}


.btn:hover {

    transform: translateY(-3px);

}


.btn-small {

    min-height: 44px;

    padding: 0 22px;

}


.btn-outline {

    background: transparent;

    color: inherit;

}

/* =====================================================
   LOGO NIC BOAT CLUB
===================================================== */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 65px;
    height: 65px;

    flex-shrink: 0;
}

.logo-image {
    display: block;

    width: 40px;
    height: 40px;

    max-width: 44px;
    max-height: 44px;

    object-fit: contain;

    flex-shrink: 0;
}


/* =====================================================
   LOGO MOBILE
===================================================== */

@media (max-width: 600px) {

    .logo-image {
        width: 58px;
        height: 58px;
    }

}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    color: white;

    overflow: hidden;

    background: var(--navy);

}


.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    animation: heroZoom 12s ease-out forwards;

}


@keyframes heroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}


.hero-gradient {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(5, 24, 32, 0.88) 0%,
            rgba(5, 24, 32, 0.58) 42%,
            rgba(5, 24, 32, 0.12) 100%
        ),

        linear-gradient(
            0deg,
            rgba(5, 24, 32, 0.55),
            transparent 55%
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 100px;

}


.hero-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    font-size: 0.7rem;

    letter-spacing: 0.25em;

}


.hero-label span {

    width: 35px;

    height: 1px;

    background: var(--gold);

}


.hero h1 {

    max-width: 1000px;

}


.hero h1 em {

    display: block;

}


.hero-text {

    max-width: 520px;

    margin: 35px 0 45px;

    color: rgba(
        255,
        255,
        255,
        0.78
    );

    font-size: 1.05rem;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 35px;

}


.text-link {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 0.75rem;

    letter-spacing: 0.1em;

}


.text-link span {

    font-size: 1.3rem;

    transition: transform 0.3s ease;

}


.text-link:hover span {

    transform: translateX(5px);

}


.hero-bottom {

    position: absolute;

    right: 40px;
    bottom: 35px;

    display: flex;

    gap: 35px;

    color: rgba(
        255,
        255,
        255,
        0.55
    );

    font-size: 0.6rem;

    letter-spacing: 0.15em;

}


.hero-bottom span {

    color: var(--gold);

    margin-right: 7px;

}


/* =====================================================
   INTRO
===================================================== */

.intro {

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(183,155,106,0.08),
            transparent 30%
        ),

        var(--cream);

}


.intro-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 120px;

}


.intro-title h2 {

    max-width: 600px;

}


.intro-title h2 em {

    display: block;

}


.intro-copy {

    padding-top: 50px;

}


.intro-copy > p:last-child {

    max-width: 500px;

    margin-top: 30px;

    color: var(--muted);

}


/* =====================================================
   SECTION HEADERS
===================================================== */

.section-top {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 60px;

    margin-bottom: 70px;

}


.section-description {

    max-width: 350px;

    color: var(--muted);

}
/* =====================================================
   ORARI NOLEGGIO
===================================================== */

.rental-hours-card {
    margin-bottom: 55px;
    padding: 30px 35px;
    background: var(--cream);
    border: 1px solid var(--line);
    box-shadow: 0 20px 55px rgba(7, 28, 38, 0.06);
}

.rental-hours-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.rental-hours-label {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.rental-hours-line {
    width: 35px;
    height: 1px;
    background: var(--gold);
}

.rental-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.rental-hours-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 5px 35px 5px 0;
}

.rental-hours-item + .rental-hours-item {
    padding-left: 35px;
    border-left: 1px solid var(--line);
}

.rental-hours-number {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    padding-top: 5px;
}

.rental-hours-item strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 400;
}

.rental-hours-item p {
    display: inline-block;
    margin-right: 18px;
    color: var(--muted);
    font-size: 0.78rem;
}


/* MOBILE */

@media (max-width: 600px) {

    .rental-hours-card {
        margin-bottom: 40px;
        padding: 25px;
    }

    .rental-hours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rental-hours-item {
        padding: 0;
    }

    .rental-hours-item + .rental-hours-item {
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 1px solid var(--line);
    }

}

/* =====================================================
   BOATS
===================================================== */

.boats {

    background: #ebe9e3;

}


.boat-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

}


.boat-card {

    background: var(--cream);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

}


.boat-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 70px rgba(
            7,
            28,
            38,
            0.12
        );

}

.boat-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.boat-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.boat-card:hover .boat-image img {
    transform: scale(1.04);
}


.boat-number {

    position: absolute;

    top: 25px;
    right: 25px;

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    background: rgba(
        255,
        255,
        255,
        0.9
    );

    backdrop-filter: blur(8px);

    font-size: 0.65rem;

}


.boat-info {

    padding: 35px;

}


.boat-category {

    font-size: 0.65rem;

    letter-spacing: 0.18em;

    color: var(--muted);

}


.boat-info h3 {

    margin: 10px 0 18px;

}


.boat-info > p {

    max-width: 430px;

    color: var(--muted);

}

.boat-bottom {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid var(--line);

}


/* CONTENITORE DEI DUE PREZZI */

.boat-prices {

    display: flex;

    align-items: flex-end;

    gap: 22px;

}


/* SINGOLO PREZZO */

.boat-price {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


/* SEPARATORE TRA I PREZZI */

.boat-price + .boat-price {

    padding-left: 22px;

    border-left: 1px solid var(--line);

}


/* PREZZO */

.boat-price strong {

    font-family: "Playfair Display", serif;

    font-size: 1.5rem;

    font-weight: 400;

    line-height: 1;

}


/* DESCRIZIONE PREZZO */

.boat-price small {

    font-family: "DM Sans", sans-serif;

    font-size: 0.65rem;

    color: var(--muted);

    white-space: nowrap;

}


/* LINK SCOPRI */

.boat-bottom a {

    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 0.1em;

    white-space: nowrap;

}


.boat-bottom a span {

    margin-left: 8px;

}
/* =====================================================
   APERIBOAT
===================================================== */

.aperiboat {

    background: #e2ded4;

}


.aperiboat-grid {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 100px;

    align-items: center;

}
.aperiboat-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.aperiboat-package {
    border: 1px solid var(--line);
    padding: 25px;
}

.aperiboat-package-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 18px;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--line);
}

.aperiboat-package-title span {
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.aperiboat-package-title strong {
    font-family: "Playfair Display", serif;
    font-size: 0.95rem;
    font-weight: 400;
}

.aperiboat-items-list {
    display: flex;
    flex-direction: column;
}

.aperiboat-items-list .aperiboat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.aperiboat-items-list .aperiboat-item:last-child {
    border-bottom: none;
}

.aperiboat-items-list .aperiboat-item span {
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
}

.aperiboat-items-list .aperiboat-item strong {
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.4;
}


/* MOBILE */

@media (max-width: 700px) {

    .aperiboat-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

/* =====================================================
   APERIBOAT INTRO
===================================================== */

.aperiboat-intro h2 {

    max-width: 650px;

    margin-bottom: 35px;

}


.aperiboat-intro h2 em {

    display: block;

}


.aperiboat-lead {

    max-width: 520px;

    margin-bottom: 20px;

    font-family: "Playfair Display", serif;

    font-size: 1.45rem;

    line-height: 1.4;

}


.aperiboat-description {

    max-width: 500px;

    color: var(--muted);

    font-size: 0.9rem;

}


/* =====================================================
   APERIBOAT DETAILS
===================================================== */

.aperiboat-details {

    margin-top: 45px;

}


.aperiboat-detail {

    display: flex;

    gap: 22px;

    padding: 20px 0;

    border-top: 1px solid var(--line);

}


.aperiboat-detail:last-child {

    border-bottom: 1px solid var(--line);

}


.aperiboat-detail > span {

    color: var(--gold);

    font-size: 0.65rem;

    letter-spacing: 0.08em;

}


.aperiboat-detail strong {

    font-family: "Playfair Display", serif;

    font-size: 1.15rem;

    font-weight: 400;

}


.aperiboat-detail p {

    margin-top: 4px;

    color: var(--muted);

    font-size: 0.78rem;

}


/* =====================================================
   APERIBOAT MENU CARD
===================================================== */

.aperiboat-menu {

    background: var(--white);

    border: 1px solid var(--line);

    padding: 45px;

    box-shadow:
        0 25px 70px rgba(
            7,
            28,
            38,
            0.08
        );

}


.aperiboat-menu-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding-bottom: 25px;

    border-bottom: 1px solid var(--line);

}


.aperiboat-menu-header span {

    color: var(--muted);

    font-size: 0.65rem;

    font-weight: 600;

    letter-spacing: 0.18em;

}


.aperiboat-menu-header strong {

    font-family: "Playfair Display", serif;

    font-size: 2rem;

    font-weight: 400;

}


/* =====================================================
   MENU ITEMS
===================================================== */

.aperiboat-menu-title {

    margin: 30px 0 20px;

    font-family: "Playfair Display", serif;

    font-size: 1.35rem;

}


.aperiboat-items {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 0 30px;

}


.aperiboat-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid var(--line);

}


.aperiboat-item span {

    color: var(--gold);

    font-size: 0.6rem;

}


.aperiboat-item strong {

    font-size: 0.78rem;

    font-weight: 500;

}


/* =====================================================
   DRINKS
===================================================== */

.aperiboat-drinks {

    margin-top: 30px;

    padding: 22px 0;

    border-bottom: 1px solid var(--line);

}


.aperiboat-drinks p {

    margin-bottom: 12px;

    color: var(--muted);

    font-size: 0.7rem;

    letter-spacing: 0.05em;

}


.aperiboat-drinks div {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.aperiboat-drinks span {

    padding: 7px 12px;

    background: var(--cream);

    font-size: 0.68rem;

}


/* =====================================================
   NOTE
===================================================== */

.aperiboat-note {

    margin-top: 25px;

}


.aperiboat-note strong {

    font-family: "Playfair Display", serif;

    font-size: 1rem;

    font-weight: 400;

}


.aperiboat-note p {

    max-width: 520px;

    margin-top: 6px;

    color: var(--muted);

    font-size: 0.72rem;

    line-height: 1.6;

}


/* =====================================================
   PRICE
===================================================== */

.aperiboat-price {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--line);

}


.aperiboat-price > div {

    display: flex;

    flex-direction: column;

}


.aperiboat-price strong {

    font-family: "Playfair Display", serif;

    font-size: 2rem;

    font-weight: 400;

}


.aperiboat-price span {

    color: var(--muted);

    font-size: 0.65rem;

}


.aperiboat-price small {

    color: var(--muted);

    font-size: 0.62rem;

}


/* =====================================================
   BUTTON
===================================================== */

.aperiboat-btn {

    width: 100%;

    margin-top: 25px;

    background: var(--navy);

    color: white;

    border-color: var(--navy);

}


.aperiboat-btn:hover {

    background: var(--navy-soft);

}


/* =====================================================
   APERIBOAT — TABLET
===================================================== */

@media (max-width: 900px) {

    .aperiboat-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }

}


/* =====================================================
   APERIBOAT — MOBILE
===================================================== */

@media (max-width: 600px) {

    .aperiboat-grid {

        gap: 40px;

    }


    .aperiboat-menu {

        padding: 25px;

    }


    .aperiboat-menu-header strong {

        font-size: 1.6rem;

    }


    .aperiboat-items {

        grid-template-columns: 1fr;

    }


    .aperiboat-price {

        align-items: flex-start;

        flex-direction: column;

        gap: 8px;

    }

}



/* =====================================================
   EXPERIENCE
===================================================== */

.experience {

    background: var(--navy);

    color: white;

}


.experience-grid {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 110px;

    align-items: center;

}


.experience-image {

    position: relative;

}


.experience-image img {

    height: 700px;

    object-fit: cover;

}


.image-caption {

    position: absolute;

    bottom: 20px;
    left: 20px;
    right: 20px;

    display: flex;

    justify-content: space-between;

    color: rgba(
        255,
        255,
        255,
        0.7
    );

    font-size: 0.6rem;

    letter-spacing: 0.15em;

}


.experience-content .eyebrow {

    color: rgba(
        255,
        255,
        255,
        0.55
    );

}


.experience-content h2 {

    margin-bottom: 35px;

}


.experience-text {

    max-width: 480px;

    color: rgba(
        255,
        255,
        255,
        0.65
    );

}


.features {

    margin-top: 55px;

}


.feature {

    display: flex;

    gap: 25px;

    padding: 25px 0;

    border-top: 1px solid rgba(
        255,
        255,
        255,
        0.12
    );

}


.feature:last-child {

    border-bottom: 1px solid rgba(
        255,
        255,
        255,
        0.12
    );

}


.feature > span {

    color: var(--gold);

    font-size: 0.65rem;

}


.feature strong {

    font-family: "Playfair Display", serif;

    font-size: 1.3rem;

    font-weight: 400;

}


.feature p {

    margin-top: 4px;

    color: rgba(
        255,
        255,
        255,
        0.5
    );

    font-size: 0.8rem;

}

/* =====================================================
   FISHING EXPERIENCE
===================================================== */

.fishing-experience {

    margin-top: 60px;

    padding: 35px;

    background: rgba(
        255,
        255,
        255,
        0.035
    );

    border: 1px solid rgba(
        255,
        255,
        255,
        0.12
    );

}


.fishing-experience-header {

    margin-bottom: 30px;

}


.fishing-eyebrow {

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 0.6rem;

    letter-spacing: 0.18em;

}


.fishing-experience h3 {

    margin-bottom: 15px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 2rem;

    font-weight: 400;

}


.fishing-intro {

    max-width: 500px;

    margin: 0;

    color: rgba(
        255,
        255,
        255,
        0.62
    );

    font-size: 0.85rem;

    line-height: 1.7;

}


/* DETAILS */

.fishing-details {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    border-top: 1px solid rgba(
        255,
        255,
        255,
        0.12
    );

}


.fishing-detail {

    display: flex;

    gap: 18px;

    padding: 20px 10px 20px 0;

    border-bottom: 1px solid rgba(
        255,
        255,
        255,
        0.12
    );

}


.fishing-detail:nth-child(odd) {

    border-right: 1px solid rgba(
        255,
        255,
        255,
        0.12
    );

    padding-right: 20px;

}


.fishing-detail:nth-child(even) {

    padding-left: 20px;

}


.fishing-detail > span {

    color: var(--gold);

    font-size: 0.6rem;

}


.fishing-detail strong {

    display: block;

    margin-bottom: 4px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 1rem;

    font-weight: 400;

}


.fishing-detail p {

    margin: 0;

    color: rgba(
        255,
        255,
        255,
        0.5
    );

    font-size: 0.75rem;

}


/* BUTTON */

.fishing-button {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 30px;

    padding: 15px 18px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.2
    );

    color: white;

    font-size: 0.65rem;

    letter-spacing: 0.14em;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;

}


.fishing-button span {

    color: var(--gold);

    font-size: 1rem;

}


.fishing-button:hover {

    background: rgba(
        255,
        255,
        255,
        0.06
    );

    border-color: var(--gold);

}


/* =====================================================
   QUOTE
===================================================== */

.quote {

    position: relative;

    background:

        radial-gradient(
            circle at center,
            rgba(183,155,106,0.12),
            transparent 55%
        ),

        var(--cream);

    text-align: center;

}


.quote-content {

    max-width: 900px;

    margin-inline: auto;

}


.quote h2 {

    font-size: clamp(
        3rem,
        6vw,
        6rem
    );

}


.quote .eyebrow {

    justify-content: center;

}


.quote .eyebrow::before {

    display: none;

}


/* =====================================================
   CTA
===================================================== */

.cta {

    position: relative;

    overflow: hidden;

    background: var(--navy);

    color: white;

    text-align: center;

}


.cta::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(183,155,106,0.16),
            transparent 45%
        );

}


.cta-content {

    position: relative;

    z-index: 1;

}


.cta-content > p:not(.eyebrow) {

    max-width: 500px;

    margin: 25px auto 40px;

    color: rgba(
        255,
        255,
        255,
        0.6
    );

}


.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

}


.cta .btn-outline {

    border-color: rgba(
        255,
        255,
        255,
        0.4
    );

    color: white;

}


/* =====================================================
   LOCATION
===================================================== */

.location {

    background: #ebe9e3;

}


.map-container {

    width: 100%;

    overflow: hidden;

    border-radius: 3px;

    box-shadow:
        0 25px 70px rgba(
            7,
            28,
            38,
            0.1
        );

}


.map-container iframe {

    display: block;

    width: 100%;

    height: 500px;

    border: 0;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding: 60px 0;

    background: #04151d;

    color: white;

}


.footer-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.footer-logo strong {

    font-size: 1.3rem;

    letter-spacing: 0.1em;

}


.footer-logo span {

    margin-top: 7px;

    font-size: 0.55rem;

    letter-spacing: 0.3em;

    opacity: 0.55;

}


.footer p {

    color: rgba(
        255,
        255,
        255,
        0.45
    );

    font-size: 0.7rem;

}


.copyright {

    text-align: right;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
   .language-switch {
        margin-left: 0;
        margin-top: 10px;
    }

    .nav {
        min-height: 105px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        gap: 0;
        padding: 8px 0;
    }   

    .logo {
        position: absolute;
        left: 50%;
        top: 8px;
        transform: translateX(-50%);
    }
    .container {

        width: min(
            calc(100% - 40px),
            var(--container)
        );

    }


    .section {

        padding: 90px 0;

    }


    .hero-bottom {

        display: none;

    }


    .intro-grid,
    .experience-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .intro-copy {

        padding-top: 0;

    }


    .section-top {

        flex-direction: column;

        align-items: start;

        gap: 25px;

    }


    .boat-grid {

        grid-template-columns: 1fr;

    }


    .experience-image img {

        height: 500px;

    }
    .fishing-experience {

        padding: 25px 20px;

    }


    .fishing-experience h3 {

        font-size: 1.7rem;

    }


    .fishing-details {

        grid-template-columns: 1fr;

    }


    .fishing-detail:nth-child(odd) {

        border-right: none;

        padding-right: 0;

    }


    .fishing-detail:nth-child(even) {

        padding-left: 0;

    }

}

@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }

    .section {
        padding: 75px 0;
    }

    .nav {
        min-height: 105px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        gap: 0;
        padding: 8px 0;
    }

    .nav > .btn {
        display: inline-flex;
        min-height: 34px;
        padding: 0 14px;
        margin-left: auto;
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }

    .menu {
        width: 100%;
        order: 3;
        justify-content: center;
        gap: 20px;
        padding: 36px 0 2px;
        font-size: 0.62rem;
    }

    .menu a {
        white-space: nowrap;
    }


    h1 {

        font-size: clamp(
            3.2rem,
            16vw,
            5rem
        );

    }


    h2 {

        font-size: clamp(
            2.7rem,
            13vw,
            4rem
        );

    }


    .hero-content {

        padding-top: 80px;

    }


    .hero-text {

        font-size: 0.95rem;

    }


    .hero-buttons {

        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

    }


    .hero .btn {

        width: 100%;

    }


    .boat-image {

        height: 350px;

    }


    .boat-info {

        padding: 25px;

    }


    .experience-image img {

        height: 400px;

    }


    .cta-buttons {

        flex-direction: column;

    }


    .cta-buttons .btn {

        width: 100%;

    }


    .map-container iframe {

        height: 380px;

    }


    .footer-content {

        flex-direction: column;

        align-items: flex-start;

    }

   .copyright {

        text-align: left;

    }

}


/* =====================================================
   RECENSIONI
===================================================== */

.reviews {

    width: 100%;

    background: var(--cream);

}


/* =====================================================
   REVIEWS HEADER
===================================================== */

.reviews-header {

    width: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    margin-bottom: 70px;

}


.reviews-header h2 {

    max-width: 700px;

}


.reviews-header h2 em {

    display: block;

}


/* =====================================================
   GOOGLE RATING
===================================================== */

.google-rating {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    padding-bottom: 8px;

}


.google-stars {

    color: var(--gold);

    font-size: 1rem;

    letter-spacing: 3px;

    white-space: nowrap;

}


.google-rating strong {

    font-family: "Playfair Display", serif;

    font-size: 1.5rem;

    font-weight: 400;

    color: var(--text);

}


.google-rating span {

    color: var(--muted);

    font-size: 0.7rem;

    letter-spacing: 0.08em;

}


/* =====================================================
   REVIEWS GRID
===================================================== */

.reviews-grid {

    width: 100%;

    display: grid;

    grid-template-columns: repeat(
        3,
        minmax(0, 1fr)
    );

    gap: 25px;

    align-items: stretch;

}


/* =====================================================
   REVIEW CARD
===================================================== */

.review-card {

    width: 100%;

    min-width: 0;

    display: flex;

    flex-direction: column;

    background: var(--white);

    border: 1px solid var(--line);

    padding: 30px;

    min-height: 310px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

}


.review-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(
            7,
            28,
            38,
            0.10
        );

}


/* =====================================================
   REVIEW TOP
===================================================== */

.review-top {

    width: 100%;

    min-width: 0;

    display: grid;

    grid-template-columns:
        46px minmax(0, 1fr) auto;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;

}


/* =====================================================
   REVIEW AVATAR
===================================================== */

.review-avatar {

    width: 46px;

    height: 46px;

    min-width: 46px;

    min-height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--navy);

    color: var(--white);

    font-family: "DM Sans", sans-serif;

    font-size: 0.9rem;

    font-weight: 600;

    line-height: 1;

    text-transform: uppercase;

    overflow: hidden;

}


/* =====================================================
   REVIEW USER
===================================================== */

.review-top > div:nth-child(2) {

    min-width: 0;

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.review-top > div:nth-child(2) strong {

    display: block;

    min-width: 0;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-family: "DM Sans", sans-serif;

    font-size: 0.85rem;

    font-weight: 600;

    color: var(--text);

}


.review-top > div:nth-child(2) span {

    display: block;

    min-width: 0;

    color: var(--muted);

    font-size: 0.65rem;

    line-height: 1.3;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}


/* =====================================================
   REVIEW STARS
===================================================== */

.review-stars {

    flex-shrink: 0;

    color: var(--gold);

    font-size: 0.75rem;

    letter-spacing: 2px;

    white-space: nowrap;

}


/* =====================================================
   REVIEW TEXT
===================================================== */

.review-text {

    width: 100%;

    min-width: 0;

    flex: 1;

    color: var(--text);

    font-size: 0.88rem;

    line-height: 1.75;

    overflow-wrap: anywhere;

    word-break: normal;

}


/* =====================================================
   REVIEW DATE
===================================================== */

.review-date {

    display: block;

    width: 100%;

    margin-top: 25px;

    padding-top: 18px;

    border-top: 1px solid var(--line);

    color: var(--muted);

    font-size: 0.65rem;

}


/* =====================================================
   REVIEWS FOOTER
===================================================== */

.reviews-footer {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid var(--line);

}


.reviews-footer p {

    color: var(--muted);

    font-size: 0.7rem;

    letter-spacing: 0.05em;

}


.review-google-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 0.08em;

    white-space: nowrap;

}


.review-google-link span {

    color: var(--gold);

    font-size: 1.1rem;

    transition:
        transform 0.25s ease;

}


.review-google-link:hover span {

    transform: translateX(5px);

}


/* =====================================================
   REVIEWS — TABLET
===================================================== */

@media (max-width: 1100px) {

    .reviews-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}
/* =====================================================
   LANGUAGE SWITCH
===================================================== */

.nav {
    position: relative;
}

.language-switch {
    position: absolute;
    right: 0;
    top: 15%;
    transform: translateY(-50%);

    display: flex;
    align-items: center;
    gap: 8px;

    white-space: nowrap;
}

.lang-btn {
    border: none;
    outline: none;
    background: transparent;

    padding: 0;
    margin: 0;

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;

    color: rgba(255, 255, 255, 0.5);

    cursor: pointer;
    transition: color 0.25s ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: #ffffff;
}

.language-switch > span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
}

/* =====================================================
   REVIEWS — TABLET PICCOLO
===================================================== */

@media (max-width: 900px) {

    .reviews-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 30px;

    }


    .google-rating {

        padding-bottom: 0;

    }


    .reviews-grid {

        grid-template-columns: 1fr;

    }


    .review-card {

        min-height: auto;

    }

}


/* =====================================================
   REVIEWS — MOBILE
===================================================== */

@media (max-width: 600px) {

    .reviews-header {

        margin-bottom: 45px;

    }


    .google-rating {

        width: 100%;

        flex-wrap: wrap;

        gap: 10px;

    }


    .reviews-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .review-card {

        padding: 24px;

        min-height: auto;

    }


    .review-top {

        grid-template-columns:
            42px minmax(0, 1fr);

        gap: 12px;

        align-items: start;

    }


    .review-avatar {

        width: 42px;

        height: 42px;

        min-width: 42px;

        min-height: 42px;

    }


    .review-stars {

        grid-column: 2;

        margin-top: 4px;

    }


    .review-text {

        margin: 25px 0 22px;

        font-size: 1rem;

    }


    .reviews-footer {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

    }

}