:root {

    --color-primary: #EA6753; /* #c37a5c */
    --color-dark: #1198B6; /* #0d94bb */
    --color-text: #555;
    --color-bg: #faf8f6;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    padding-top: 80px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #2d2d2d;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease;
}

a:visited {
    opacity: .85;
}

a:focus {
    /*outline: 2px solid var(--color-primary);
    outline-offset: 2px;*/
}

.section {
    padding: 90px 0;
}

.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero.small {
    height: 60vh;
}

/* HERO OVERLAY */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, .15) 0%,
        rgba(0, 0, 0, .35) 60%,
        rgba(0, 0, 0, .55) 100%
    );
    z-index: 2;
}

/* SLIDER OVERLAY */
.hero-slider .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, .3),
        rgba(0, 0, 0, .55)
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 0 20px;
}

.hero-content-inner {
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    letter-spacing: .02em;
    text-shadow: 0 5px 25px rgba(0, 0, 0, .45);
}

.hero-content p {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, .9);
    font-weight: 300;
    letter-spacing: .04em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
    max-width: 600px;
    margin: 0 auto;
}


.hero-content h1,
.hero-content p {
    opacity: 0;
    transform: translateY(20px);
    transition: .7s ease;
}

.slide.active ~ .hero-content h1,
.slide.active ~ .hero-content p {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(0, 0, 0, .15), rgba(0, 0, 0, .55));
}

.eyebrow {
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .8rem;
}

.card-custom img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.card-custom h5 {
    font-weight: 600;
}

.subtitle {
    color: #777;
}

.link-arrow {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.cta {
    padding: 120px 0;
    position: relative;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.cta .container {
    position: relative;
}

.cta h2 {
    color: #efefef;
}


/* ===============================
FOOTER BASE
================================= */

.footer {
    background: var(--color-dark);
    color: #f4f8fa; /* bianco leggermente freddo */
    padding: 50px 0 35px;
    font-size: 0.9rem;
}

.footer-credits {
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* ===============================
RIGHE FOOTER
================================= */

.footer-line {
    margin: 8px 0;
}

.footer-copy {
    font-weight: 500;
    letter-spacing: .3px;
}

.footer-legal {
    font-size: 0.85rem;
    opacity: .9;
}

.footer-contacts {
    font-size: 0.9rem;
}

/* ===============================
LINK FOOTER
================================= */

.footer a {
    color: #ffffff;
    font-weight: 500;
}

.footer a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.footer a:visited {
    color: #ffffff;
    opacity: .85;
}

/* ===============================
SEPARAZIONE VISIVA LEGGERA
================================= */

.footer-credits::before {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin: 20px auto;
}

.booking-box {
    margin-top: -70px;
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    position: relative;
    z-index: 5;
}

.booking-box label {
    font-size: .8rem;
    margin-bottom: 4px;
    color: #777;
}

.btn-primary {
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: #b96d4e;
    --bs-btn-hover-border-color: #b96d4e;
    --bs-btn-active-bg: #a85f43;
    --bs-btn-active-border-color: #a85f43;
    border-radius: 40px;
    padding: 14px 28px;
    font-weight: 600;
}

.btn-theme {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

.btn-theme:hover {
    background: #b96d4e;
    color: white;
}

/* NAVBAR BASE */
.navbar-custom {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
    transition: .4s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    /*padding: 18px 0;*/
}

/* shrink on scroll */
.navbar-custom.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

/* LOGO */
.logo img {
    height: 70px;
    transition: .3s;
}

.navbar-custom.scrolled .logo img {
    height: 38px;
}

/* MENU */
.nav-menu {
    gap: 25px;
    margin-left: 40px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #444;
    transition: .3s;
}

/* underline elegante */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: .35s;
}

/* hover */
.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* ACTIVE LINK */
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    width: 100%;
}

/* CTA */
.nav-cta {
    margin-left: auto;
}

.hero-slider {
    position: relative;
    height: 95vh;
    overflow: hidden;
    animation: heroFade 1.4s ease forwards;
    opacity: 0;
}

@keyframes heroFade {
    to {
        opacity: 1;
    }
}

/* SLIDES */
.slides {
    position: absolute;
    inset: 0;
}


.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.8s ease, transform 7s ease;
    will-change: transform, opacity;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}


/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, .7);
    background: transparent;
    cursor: pointer;
    position: relative;
}

.dot.active {
    background: white;
    transform: scale(1.15);
}

.dot:hover {
    transform: scale(1.25);
    background: white;
}

.dot::after {
    content: "";
    position: absolute;
    inset: -8px;
}

.page-header {
    background: var(--color-primary);
    color: white;
    padding: 70px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.breadcrumb {
    font-size: .9rem;
    opacity: .9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (max-width: 991px) {
    .sidebar {
        position: static;
    }
}

.sidebar .booking-box {
    margin-top: 0;
}

.sidebar-box {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.sidebar-box h6 {
    margin-bottom: 12px;
    font-weight: 600;
}

.sidebar-box ul {
    padding-left: 18px;
    margin: 0;
}

.sidebar-box.booking {
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.sidebar-box.booking .btn {
    margin-top: 10px;
}

.content-block {
    margin-bottom: 40px;
}

.content-highlight {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    margin-top: 40px;
}

.fullwidth-feature {
    background: white;
    padding: 100px 0;
}

.btn-book {
    background: var(--color-primary);
    border: 3px solid white;
    color: white;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.btn-book:hover {
    border: 3px solid var(--color-primary);
    color: var(--color-primary);
}

/* ===============================
WHERE WE ARE
================================= */

.where-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
}

.where-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
}

.where-features div {
    margin-bottom: 8px;
    font-size: .95rem;
}

.where-map {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.where-map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* soft background coerente col sito */
.bg-light-soft {
    background: #f8f9fa;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
}

/* CARD */
.info-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    height: 100%;
}

.info-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

/* TRAVEL BOX */
.travel-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
}

.travel-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.travel-row {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    padding: 6px 0;
}

/* CTA FINALE */
.where-cta {
    background: #111;
    color: white;
    padding: 110px 0;
    text-align: left;
}

.where-cta h2 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.where-cta p {
    max-width: 700px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
}

.iconbox {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.iconbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.iconbox-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(195, 122, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--color-primary);
}

.iconbox h5 {
    margin-bottom: 8px;
    font-weight: 600;
}

.iconbox p {
    color: var(--color-text);
    margin: 0;
}

.gallery-card {
    position: relative;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-card h5 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    transition: background .3s ease;
}

.gallery-card:hover::after {
    background: rgba(0, 0, 0, .5);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

/* Nasconde barra superiore Google */
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

html {
    margin-top: 0 !important;
}

/* Rimuove highlight blu */
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* Nasconde logo Google nel widget */
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}