/* 
   Il Giardino dei Desideri - Style Guide & Design System
   Aesthetic: Luxury Natural/Editorial (Olive Green, Warm Cream, Soft Gold)
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-olive: #4A5D4E;
    --primary-olive-dark: #374439;
    --primary-olive-light: #6A7E6E;
    --accent-gold: #C29F68;
    --accent-gold-dark: #A48350;
    --accent-gold-light: #E0C8A4;
    --bg-cream: #FCFAF5;
    --bg-cream-dark: #F3EFE3;
    --text-dark: #2A322C;
    --text-light: #FFFFFF;
    --text-muted: #626D65;
    --border-color: rgba(74, 93, 78, 0.15);
    
    /* Fonts */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
    --font-ui: 'Montserrat', sans-serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 10px 40px rgba(74, 93, 78, 0.05);
    --shadow-medium: 0 20px 50px rgba(74, 93, 78, 0.08);
    --shadow-premium: 0 30px 70px rgba(55, 68, 57, 0.15);
}

.logo-shape {
    
        width: 100%;
        height: 30px;
        position: absolute;
        bottom: -30px;
   
}
/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-olive-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-olive-light);
    border: 2px solid var(--bg-cream);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-olive);
}

/* Utility Components */
.badge {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
}

.badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 1px;
    background-color: var(--accent-gold);
}

.btn-gold {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: var(--accent-gold);
    color: var(--text-light);
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(194, 159, 104, 0.2);
}

.btn-gold:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 159, 104, 0.3);
}

.btn-outline {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--text-light);
    padding: 1rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-dark-outline {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--primary-olive-dark);
    padding: 1rem 2.2rem;
    border: 1px solid var(--primary-olive);
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-dark-outline:hover {
    background-color: var(--primary-olive);
    color: var(--text-light);
    transform: translateY(-2px);
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Layout Parts */

/* Main Header */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #062F28; /* Dark teal-green matching the mockup */
    font-family: var(--font-ui);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header Top Row */
.header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
}

.header-row-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    flex: 1;
    padding: 0.8rem
}

.header-top-left i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.contact-separator {
    color: var(--accent-gold);
    opacity: 0.7;
}

/* Spacers to prevent overlap with the central logo banner */
.header-top-spacer,
.header-nav-spacer {
    width: 180px;
    flex-shrink: 0;
    pointer-events: none;
    display: block;
}

/* Social Circles */
.header-top-right {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    flex: 1;
}

.social-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* -------------------------------------------------------
   Central Logo Banner:
   - White rectangle that spans the FULL HEIGHT of the header (top row + nav row)
   - Logo image is centered in the white rectangle
   - logo-shape-tail hangs below the rectangle into the hero area, visible
     against the hero image (it will be a distinct shape on the photo)
   ------------------------------------------------------- */
.logo-banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    /* Fixed height: covers both header rows (top ~44px + nav ~64px) */
    height: 150px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 1rem;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}

/* The rounded shape tail - positioned directly below the full-height white rectangle */
.logo-shape-tail {
    position: absolute;
    bottom: -40px;    /* Hangs 40px below the bottom of the white rectangle */
    left: 0;
    width: 100%;
    height: 40px;
    display: block;
    pointer-events: none;
    z-index: 200;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

/* Fallback for the logo img (first img in logo-banner, not .logo-shape-tail) */
.logo-link img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-link-mobile {
    display: none;
}


/* Header Bottom Row (Navigation) */
.header-navigation {
    padding: 1.2rem 0;
}

.header-nav-left-wrapper, 
.header-nav-right-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}

.header-nav-left-wrapper {
    justify-content: flex-start;
}

.header-nav-right-wrapper {
    justify-content: flex-end;
    gap: 2rem;
}

/* Menu Navigation Links */
.nav-left, .nav-right {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link .caret {
    font-size: 0.55rem;
    opacity: 0.75;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover .caret {
    transform: translateY(2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Rounded Pill Book Button matching Lucxorio Mockup */
.btn-book-now {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: var(--accent-gold);
    color: var(--primary-olive-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 30px; /* capsule border */
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(194, 159, 104, 0.25);
    flex-shrink: 0;
}

.btn-book-now:hover {
    background-color: var(--accent-gold-light);
    color: var(--primary-olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 159, 104, 0.35);
}

/* Left-aligned Hamburger toggle button */
.hamburger-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 12px;
    margin-right: 2rem;
    flex-shrink: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.hamburger-toggle:hover .hamburger-line:first-child {
    transform: translateY(-1px);
}

.hamburger-toggle:hover .hamburger-line:last-child {
    transform: translateY(1px);
}

/* Mobile Navigation Menu Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-cream);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-olive-dark);
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-olive-dark);
    display: block;
}

.mobile-nav-link:hover {
    color: var(--accent-gold-dark);
}

.mobile-nav-btn {
    margin-top: 3rem;
    text-align: center;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding-top: 160px; /* Offset the large desktop logo-banner to prevent overlap with stars */
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-bg-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(55, 68, 57, 0.45), rgba(55, 68, 57, 0.45));
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding: 0 1.5rem;
    z-index: 3;
}

.hero-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    animation: fadeIn 1.2s ease-out;
}

.hero-title {
    font-size: 6rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: slideUpFade 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    animation: slideUpFade 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: slideUpFade 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* SVG Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
    pointer-events: none;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--bg-cream);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About / Welcome Section */
.about {
    padding: 8rem 0;
    background-color: var(--bg-cream);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.about-content-left {
    padding-right: 1rem;
}

.about-title {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
}

.about-text {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-stats {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.about-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--bg-cream);
    object-fit: cover;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-plus {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-olive);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--bg-cream);
    margin-left: -12px;
}

.stat-item {
    font-family: var(--font-ui);
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-olive-dark);
    display: block;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-features-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.feature-card {
    background-color: var(--text-light);
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    border-left: 3px solid transparent;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--accent-gold);
}

.feature-icon-wrapper {
    background-color: rgba(74, 93, 78, 0.07);
    color: var(--primary-olive);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-olive);
    color: var(--text-light);
}

.feature-details h4 {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--primary-olive-dark);
}

.feature-details p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Territory / Vicinanza Section */
.territory {
    padding: 8rem 0;
    background-color: var(--bg-cream-dark);
    position: relative;
    text-align: center;
    overflow: hidden; /* prevents background SVG wall from overflowing */
}

.territory-bg-svg {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.06; /* Subtle watermark */
    color: var(--primary-olive-dark);
}

.territory-title {
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto 5rem auto;
    font-style: italic;
    line-height: 1.3;
}

/* SVG Interactive Mappa Connection Styling */
.territory-map-container {
    position: relative;
    max-width: 900px;
    height: 600px;
    margin: 0 auto;
}

.map-svg-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-path {
    stroke: var(--accent-gold-dark);
    stroke-width: 2px;
    stroke-dasharray: 6, 6;
    fill: none;
    opacity: 0.6;
    transition: var(--transition-smooth);
    stroke-dashoffset: 0;
    animation: dashAnimate 30s linear infinite;
}

@keyframes dashAnimate {
    to {
        stroke-dashoffset: -1000;
    }
}

/* Center Logo Badge */
.center-logo-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px; /* resized to match layout hierarchy */
    height: 220px;
    background-color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(194, 159, 104, 0.25);
    padding: 20px;
}

.center-logo-node img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Attraction Outer Nodes */
.attraction-node {
    position: absolute;
    width: 200px; /* Resized to 200px as requested */
    height: 200px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transform: translate(-50%, -50%); /* Centered positioning */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--text-light);
    overflow: hidden;
}

.attraction-node-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.attraction-node:hover {
    transform: translate(-50%, -50%) scale(1.12); /* Preserves centering on scale hover */
    box-shadow: var(--shadow-premium);
    z-index: 15;
}

.attraction-node:hover .attraction-node-img {
    transform: scale(1.1);
}

/* Positions of nodes on map container (relative to 900x600 size, aligning centers perfectly with SVG path ends) */
.node-top-left {
    top: 18.33%;  /* 110px / 600px */
    left: 16.67%; /* 150px / 900px */
}

.node-top-right {
    top: 18.33%;  /* 110px / 600px */
    left: 83.33%; /* 750px / 900px */
}

.node-bottom-left {
    top: 81.67%;  /* 490px / 600px */
    left: 16.67%; /* 150px / 900px */
}

.node-bottom-right {
    top: 81.67%;  /* 490px / 600px */
    left: 83.33%; /* 750px / 900px */
}

/* Attraction labels directly on node */
.attraction-node-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(55, 68, 57, 0.95));
    color: var(--text-light);
    font-family: var(--font-ui);
    font-size: 0.8rem; /* scaled for 200px node */
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    pointer-events: none;
}

/* Tooltip info panel for attractions */
.attraction-details-overlay {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 420px;
    max-width: 90%;
    background-color: var(--text-light);
    box-shadow: var(--shadow-premium);
    border-radius: 8px;
    padding: 1.8rem;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: left;
    border-bottom: 4px solid var(--accent-gold);
}

.attraction-details-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.attraction-details-overlay h4 {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    margin-bottom: 0.4rem;
}

.attraction-details-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.attraction-details-overlay p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.attraction-details-distance {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-olive);
    background-color: rgba(74, 93, 78, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.attraction-details-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
}

.attraction-details-close:hover {
    color: var(--text-dark);
}

/* Rooms Section */
.rooms {
    padding: 8rem 0;
    background-color: #353f37;
    color: var(--text-light);
    position: relative;
}

.rooms-wave-top {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.rooms-wave-top img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.rooms-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 5;
    pointer-events: none;
}

.rooms-wave-bottom svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--bg-cream);
}

.rooms-header {
    text-align: center;
    margin: 0 auto 5rem auto;
}

.rooms-header h2 {
    color: var(--text-light);
    font-size: 3rem;
}

.rooms-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Room Cards (Horizontal Row layout) */
.room-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.room-card {
    background-color: var(--primary-olive);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.room-card:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.room-card:nth-child(even) .room-img-wrapper {
    order: 2;
}

.room-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-card:hover .room-img {
    transform: scale(1.05);
}

.room-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-title {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.room-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Amenities Grid inside Room */
.room-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.amenity-item i {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

/* Room price and footer action */
.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.room-price-wrapper {
    font-family: var(--font-ui);
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.room-price-lbl {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* Services / Experience Section */
.services {
    padding: 8rem 0;
    background-color: var(--bg-cream);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem auto;
}

.services-header h2 {
    font-size: 3rem;
}

.services-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-column-card {
    background-color: var(--text-light);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.service-column-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-col-img-wrapper {
    height: 240px;
    overflow: hidden;
}

.service-col-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-column-card:hover .service-col-img {
    transform: scale(1.06);
}

.service-col-content {
    padding: 2rem;
    text-align: center;
}

.service-col-icon {
    font-size: 1.5rem;
    color: var(--accent-gold-dark);
    margin-bottom: 1rem;
}

.service-col-title {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.service-col-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-col-link {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-olive);
    position: relative;
    padding-bottom: 3px;
}

.service-col-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.service-column-card:hover .service-col-link::after {
    width: 100%;
    left: 0;
}

/* Testimonials & Google Reviews Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(rgba(252, 250, 245, 0.92), rgba(252, 250, 245, 0.92)), 
                url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?q=80&w=1800&auto=format&fit=crop') no-repeat center center/cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 3rem;
    margin: 1rem 0;
}

.google-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.rating-number {
    font-family: var(--font-ui);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-olive-dark);
}

.rating-stars {
    color: #F4B400; /* Google Gold Star color */
    font-size: 1.1rem;
}

.rating-text {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Carousel Layout */
.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 4rem; /* Leave room for arrows */
}

.carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.carousel-viewport::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.carousel-track {
    display: flex;
    width: 100%;
    align-items: stretch; /* Cards stretch to same height */
    gap: 2rem;
}

.carousel-slide {
    flex: 0 0 calc((100% - 2rem) / 2); /* 2 cards on desktop and tablet */
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .carousel-slide {
        flex: 0 0 100%; /* 1 card on mobile */
    }
    .testimonials-carousel {
        padding: 0; /* Maximum space for cards on mobile */
    }
}

/* Card Design */
.testimonial-card {
    background-color: var(--text-light);
    border-radius: 8px;
    padding: 2rem; /* Reduced from 3rem to fit columns nicely */
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(194, 159, 104, 0.15);
    text-align: left;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold-light);
}

.user-info h4 {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.user-source {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.review-stars {
    color: #F4B400;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-text {
    font-family: var(--font-body);
    font-size: 1.1rem; /* Slightly smaller for editorial density */
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-olive-dark);
    margin-bottom: 0;
    flex-grow: 1; /* Stretch to occupy remaining space */
}

/* Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--text-light);
    color: var(--primary-olive-dark);
    border: 1px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.carousel-control:hover {
    background-color: var(--primary-olive);
    color: var(--text-light);
    border-color: var(--primary-olive);
    box-shadow: var(--shadow-medium);
}

.carousel-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

@media (max-width: 767px) {
    .carousel-control {
        display: none; /* Hide buttons on mobile in favor of native touch swiping */
    }
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(55, 68, 57, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.carousel-dot.active {
    background-color: var(--primary-olive);
    transform: scale(1.3);
}

/* Newsletter Subscription Section */
.newsletter {
    background-color: var(--accent-gold);
    color: var(--text-light);
    padding: 4rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text h3 {
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    flex-grow: 1;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-light);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    padding: 0.8rem 1.2rem;
    flex-grow: 1;
    min-width: 0;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
    background-color: var(--primary-olive-dark);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background-color: var(--text-light);
    color: var(--primary-olive-dark);
}

/* Accessibility Honeypot Form Field */
.form-honeypot {
    display: none !important;
}

/* Footer Section */
footer {
    background-color: #272F29;
    color: rgba(255, 255, 255, 0.75);
    padding: 5rem 0 2rem 0;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.footer-col-desc {
    font-family: var(--font-body);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 200px;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background-color: var(--accent-gold);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-contact-item i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-contact-item p {
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.footer-bottom-links a {
    margin-left: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--text-light);
}

/* Accessibility: Keyboard Focus Styles */
*:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

/* Motion Safety / prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    
    .connection-path {
        animation: none !important;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero {
        padding-top: 130px; /* Lower offset for tablet logo-banner */
    }
    
    .nav-left, .nav-right {
        display: none; /* Hide main horizontal menus */
    }
    
    .header-top-spacer,
    .header-nav-spacer {
        display: none; /* Hide spacers on tablet/mobile */
    }
    
    .logo-banner {
        width: 120px;
        height: 135px;
    }
    
    .logo-banner img {
        max-height: 70px;
    }
    
    .hamburger-toggle {
        display: flex; /* Show hamburger toggle */
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-content-left {
        padding-right: 0;
    }
    
    .room-card, .room-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .room-card:nth-child(even) .room-img-wrapper {
        order: 0;
    }
    .room-img-wrapper {
        height: 350px;
    }
    .room-content {
        padding: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-features-right {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 80px; /* Minimal offset for mobile logo-banner */
    }
    
    html {
        font-size: 15px;
    }
    
    .header-top {
        display: none; /* Hide contacts top row on mobile */
    }
    
    .main-header {
        background-color: #062F28;
    }
    
    .logo-banner {
        display: none;
    }
    
    .logo-link-mobile {
        display: block;
        position: absolute;
        left: 50%;
        top: -0.8rem;
        transform: translateX(-50%);
        z-index: 200;
    }
    
    .logo-link-mobile img {
        width: 150px;
        height: auto;
        display: block;
    }
    
    .header-navigation {
        padding: 0.8rem 0;
    }
    

    .btn-book-now {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-buttons .btn-gold,
    .hero-buttons .btn-outline {
        width: 80%;
    }
    
    .territory-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    /* Responsive territory map: stack nodes vertically on mobile */
    .territory-map-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .map-svg-connections {
        display: none;
    }
    
    .center-logo-node {
        position: static;
        transform: none;
        margin-bottom: 2rem;
        width: 150px;
        height: 150px;
    }
    
    .attraction-node {
        position: static;
        transform: none !important;
        width: 280px;
        height: 120px;
        border-radius: 8px;
    }

    .attraction-node:hover {
        transform: scale(1.02) !important;
    }
    
    .attraction-node-label {
        font-size: 0.8rem;
        padding: 1.5rem 0.5rem 0.5rem 0.5rem;
    }
    
    .attraction-details-overlay {
        position: fixed;
        bottom: 0;
        left: 0;
        transform: translateY(100%);
        width: 100%;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        z-index: 1001;
    }
    
    .attraction-details-overlay.active {
        transform: translateY(0);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links a {
        margin: 0 0.8rem;
    }
}

.floating {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

    .floating a {
        color: #fff;
    }


.float-button {
    margin-top: 16px;
}

/* ==========================================================================
   Contacts Page Styles (Contatti.cshtml)
   ========================================================================== */

/* Hero Section */
.contacts-hero,
.about-page-hero {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.contacts-hero .hero-bg-picture,
.about-page-hero .hero-bg-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contacts-hero .hero-bg-img,
.about-page-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contacts-hero .hero-overlay,
.about-page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 47, 40, 0.4) 0%, rgba(6, 47, 40, 0.7) 100%);
    z-index: 2;
}

.contacts-hero .hero-content,
.about-page-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 1.5rem;
    margin-top: 200px; /* offset for fixed header */
}

.contacts-hero .hero-title,
.about-page-hero .hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.contacts-hero .hero-subtitle,
.about-page-hero .hero-subtitle {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-style: italic;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Contacts Layout Grid */
.contacts-section {
    padding: 7rem 0;
    background-color: var(--bg-cream);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Contact Cards Info Column */
.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--bg-cream-dark);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-gold);
}

.contact-card .card-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    background-color: rgba(194, 159, 104, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card .card-icon.whatsapp-icon {
    color: #25d366;
    background-color: rgba(37, 211, 102, 0.1);
}

.contact-card .card-details h3 {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    color: var(--primary-olive-dark);
}

.contact-card .card-details p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card .card-details p.phone-number {
    font-family: var(--font-ui);
    font-weight: 500;
}

.contact-card .card-details .card-link {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-gold-dark);
    display: inline-block;
    margin-top: 0.5rem;
    position: relative;
}

.contact-card .card-details .card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold-dark);
    transition: var(--transition-smooth);
}

.contact-card .card-details .card-link:hover::after {
    width: 100%;
}

/* Elegant Form Card */
.form-container-card {
    background-color: var(--text-light);
    padding: 4rem 3.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(74, 93, 78, 0.08);
}

.form-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

/* Honeypot styling (accessibility-friendly hidden field) */
.form-honeypot {
    display: none !important;
}

/* Form Groups and Inputs */
.elegant-contact-form .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.elegant-contact-form label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-olive-dark);
    margin-bottom: 0.5rem;
}

.elegant-contact-form .required-asterisk {
    color: #b02a37;
    margin-left: 2px;
}

.elegant-contact-form .form-input-field,
.elegant-contact-form .form-select-field,
.elegant-contact-form .form-textarea-field {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
    outline: none;
}

.elegant-contact-form .form-input-field:focus,
.elegant-contact-form .form-select-field:focus,
.elegant-contact-form .form-textarea-field:focus {
    border-color: var(--accent-gold);
    background-color: var(--text-light);
    box-shadow: 0 0 0 3px rgba(194, 159, 104, 0.15);
}

.elegant-contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.elegant-contact-form .form-textarea-field {
    resize: vertical;
    min-height: 120px;
}

/* Checkboxes */
.form-checkboxes-group {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-control-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
}

.checkbox-control-wrapper .form-checkbox-input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--accent-gold);
}

.checkbox-control-wrapper .form-checkbox-label {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
}

.checkbox-control-wrapper .inline-policy-link {
    color: var(--accent-gold-dark);
    font-weight: 500;
    text-decoration: underline;
}

.checkbox-control-wrapper .inline-policy-link:hover {
    color: var(--primary-olive);
}

/* Submit Button */
.form-submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 0.85rem;
    border-radius: 2px;
}

/* ASP.NET Validation Errors Custom Styling */
.validation-error-text {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    color: #b02a37;
    margin-top: 0.4rem;
    display: block;
}

.input-validation-error {
    border-color: #b02a37 !important;
    background-color: rgba(176, 42, 55, 0.02) !important;
}

.input-validation-error:focus {
    box-shadow: 0 0 0 3px rgba(176, 42, 55, 0.15) !important;
}

/* Map Section */
.map-section {
    padding: 6rem 0 0 0;
    background-color: var(--bg-cream-dark);
    text-align: center;
}

.map-section-header {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    padding: 0 1.5rem;
}

.map-section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.map-section-header p {
    color: var(--text-muted);
    font-family: var(--font-body);
}

.map-outer-container {
    width: 100%;
    height: 500px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.map-container-element {
    width: 100%;
    height: 100%;
    background-color: var(--bg-cream);
}

/* Custom Google Map InfoWindow Custom Styling (Matches fonts) */
.gm-style .gm-style-iw-c {
    background-color: var(--bg-cream) !important;
    border-radius: 4px !important;
    box-shadow: var(--shadow-premium) !important;
    padding: 12px 12px 0 12px !important;
}

.gm-style .gm-style-iw-t::after {
    background: var(--bg-cream) !important;
}

/* Responsive Rules for Contacts Page & About Page */
@media (max-width: 992px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contacts-hero .hero-title,
    .about-page-hero .hero-title {
        font-size: 3rem;
    }
    
    .contacts-hero,
    .about-page-hero {
        height: 380px;
    }
    
    .form-container-card {
        padding: 3rem 2rem;
    }
    
    .map-outer-container {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .elegant-contact-form .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contacts-hero .hero-title,
    .about-page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title,
    .map-section-header h2 {
        font-size: 2.2rem;
    }
    
    .form-container-card {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ==========================================================================
   About Page Styles (ChiSiamo.cshtml)
   ========================================================================== */

.about-page-section {
    padding: 7rem 0;
    background-color: var(--bg-cream);
    position: relative;
}

.about-page-section.alt-bg {
    background-color: var(--bg-cream-dark);
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6rem;
    align-items: center;
}

.about-page-grid.reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.about-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-page-title {
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--primary-olive-dark);
    margin-bottom: 2rem;
    line-height: 1.25;
}

.about-page-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 1.8rem;
}

.about-page-text:last-child {
    margin-bottom: 0;
}

.about-page-text strong {
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--primary-olive-dark);
}

.about-page-text em {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--accent-gold-dark);
}

.about-page-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-page-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-page-image-wrapper:hover .about-page-image {
    transform: scale(1.04);
}

/* Specific styling for the Pet Friendly highlight panel */
.pet-friendly-highlight-panel {
    background: linear-gradient(135deg, var(--bg-cream-dark) 0%, #EDE9DD 100%);
    border-radius: 20px;
    padding: 5rem 4rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    border: 1px solid var(--border-color);
}

/* Responsive adjustments for Chi Siamo */
@media (max-width: 992px) {
    .about-page-section {
        padding: 5rem 0;
    }
    
    .about-page-grid,
    .about-page-grid.reverse {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-page-grid.reverse .about-page-image-wrapper {
        order: 2; /* push image below text */
    }
    
    .about-page-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pet-friendly-highlight-panel {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 3rem;
    }
    
    .pet-friendly-highlight-panel .about-page-image-wrapper {
        order: 2;
    }
}

/* ==========================================================================
   Thanks Page & Legal Pages (Grazie.cshtml & Privacy.cshtml)
   ========================================================================== */

.thanks-section {
    padding: 7rem 0;
    background-color: var(--bg-cream);
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-card {
    background-color: var(--bg-cream-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 5rem 4rem;
    max-width: 750px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
}

.thanks-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.thanks-card h2 {
    font-size: 3rem;
    color: var(--primary-olive-dark);
    margin-bottom: 1.5rem;
}

.thanks-card p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages Styling */
.legal-section {
    padding: 7rem 0;
    background-color: var(--bg-cream);
}

.legal-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 5rem 4rem;
    max-width: 900px;
    width: 100%;
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
}

.legal-document {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-document h2 {
    font-size: 2.2rem;
    color: var(--primary-olive-dark);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-document h3 {
    font-size: 1.6rem;
    color: var(--primary-olive-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-document h4 {
    font-size: 1.25rem;
    color: var(--primary-olive-dark);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-document p {
    margin-bottom: 1.5rem;
}

.legal-document ul,
.legal-document ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.8rem;
}

.legal-document a {
    color: var(--accent-gold-dark);
    text-decoration: underline;
}

.legal-document a:hover {
    color: var(--accent-gold);
}

.legal-document hr {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 4rem 0;
}

/* Responsive adjustments for Thanks & Legal Pages */
@media (max-width: 768px) {
    .thanks-card,
    .legal-card {
        padding: 3rem 1.5rem;
        border-radius: 12px;
    }
    
    .thanks-card h2 {
        font-size: 2.2rem;
    }
    
    .thanks-card p {
        font-size: 1rem;
    }
    
    .legal-document h2 {
        font-size: 1.8rem;
        margin-top: 2.5rem;
    }
    
    .legal-document h3 {
        font-size: 1.35rem;
        margin-top: 2rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Photo Gallery & Lightbox Styles
   ========================================================================== */

/* Gallery Hero Section */
.gallery-hero {
    padding: 9rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-cream-dark) 0%, var(--bg-cream) 100%);
    border-bottom: 1px solid var(--border-color);
}

.gallery-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-olive-dark);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.gallery-lead {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Gallery Main Container */
.gallery-main {
    padding: 5rem 0 8rem;
}

/* Gallery Empty State */
.gallery-empty-state {
    text-align: center;
    padding: 6rem 3rem;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-empty-state .empty-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.gallery-empty-state h3 {
    font-size: 2rem;
    color: var(--primary-olive-dark);
    margin-bottom: 1rem;
}

.gallery-empty-state p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Responsive Masonry Layout */
.gallery-masonry {
    column-count: 4;
    column-gap: 1.5rem;
    width: 100%;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(194, 159, 104, 0.4);
}

.gallery-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: none;
}

.gallery-link:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 4px;
    border-radius: 16px;
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.06);
}

/* Hover Overlay & Zoom Icon */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 93, 78, 0.45);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.gallery-link:hover .gallery-overlay,
.gallery-link:focus-visible .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    color: var(--text-light);
    font-size: 2rem;
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: rgba(194, 159, 104, 0.9);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-link:hover .zoom-icon,
.gallery-link:focus-visible .zoom-icon {
    transform: scale(1);
}

/* Lightbox GLightbox Brand Customization */
.gslide-desc {
    background: var(--bg-cream) !important;
    border-top: 3px solid var(--accent-gold) !important;
    padding: 20px !important;
}

.gslide-title {
    font-family: var(--font-display) !important;
    color: var(--primary-olive-dark) !important;
    font-size: 1.6rem !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
}

.gslide-desc-content p {
    font-family: var(--font-body) !important;
    color: var(--text-dark) !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
}

.gprev, .gnext, .gclose {
    background-color: rgba(74, 93, 78, 0.8) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition-smooth) !important;
}

.gprev:hover, .gnext:hover, .gclose:hover {
    background-color: var(--accent-gold) !important;
    transform: scale(1.05);
}

.gclose svg, .gprev svg, .gnext svg {
    width: 20px !important;
    height: 20px !important;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .gallery-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .gallery-masonry {
        column-count: 2;
        column-gap: 1.2rem;
    }
    
    .gallery-hero {
        padding: 8rem 0 3.5rem;
    }
    
    .gallery-main {
        padding: 4rem 0 6rem;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        column-count: 1;
        column-gap: 0;
    }
    
    .gallery-item {
        margin-bottom: 1.2rem;
    }
    
    .gallery-hero {
        padding: 7rem 0 3rem;
    }
    
    .gallery-hero h1 {
        font-size: 2.2rem;
    }
    
    .gallery-lead {
        font-size: 1.05rem;
    }
    
    .gallery-empty-state {
        padding: 4rem 1.5rem;
        border-radius: 12px;
    }
}

/* ==========================================================================
   CAMERE - Elenco e Dettaglio (Luxury Natural / Editorial style)
   ========================================================================== */

/* Hero Banner */
.rooms-page-hero,
.room-detail-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
    padding: 8rem 1rem 4rem;
}

.rooms-page-hero .hero-bg-picture,
.room-detail-hero .hero-bg-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.rooms-page-hero .hero-bg-img,
.room-detail-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 10s ease;
}

.rooms-page-hero:hover .hero-bg-img,
.room-detail-hero:hover .hero-bg-img {
    transform: scale(1);
}

.rooms-page-hero .hero-overlay,
.room-detail-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(55, 68, 57, 0.4), rgba(42, 50, 44, 0.7));
    z-index: 2;
}

.rooms-page-hero .hero-content,
.room-detail-hero .hero-content {
    position: relative;
    z-index: 3;
    /*max-width: 800px;*/
}

/* Back Link in Hero */
.btn-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold-light);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.btn-back-link:hover {
    color: var(--text-light);
    transform: translateX(-5px);
}

/* Intro Section */
.rooms-intro-section {
    padding: 6rem 0;
    background-color: var(--bg-cream);
}

.rooms-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.rooms-intro-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.rooms-intro-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.rooms-breakfast-box {
    background-color: var(--bg-cream-dark);
    padding: 3rem;
    border-left: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-soft);
}

.breakfast-box-icon {
    font-size: 2.2rem;
    color: var(--accent-gold-dark);
    margin-bottom: 1rem;
}

.rooms-breakfast-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.rooms-breakfast-box p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Common Amenities */
.common-amenities-wrapper {
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.amenities-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: var(--text-light);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-medium);
}

.amenity-card i {
    font-size: 2rem;
    color: var(--primary-olive);
    transition: var(--transition-smooth);
}

.amenity-card:hover i {
    color: var(--accent-gold);
}

.amenity-card span {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

/* Rooms List Cards */
.rooms-list-section {
    padding: 6rem 0;
    background-color: var(--bg-cream-dark);
}

.rooms-cards-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.room-card-horizontal {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.room-card-horizontal:hover {
    box-shadow: var(--shadow-premium);
}

.room-card-image {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-card-horizontal:hover .room-card-image img {
    transform: scale(1.05);
}

.room-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-olive-dark);
    color: var(--text-light);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 0;
    z-index: 10;
}

.room-card-info {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.room-card-header h3 {
    font-size: 2.2rem;
    font-family: var(--font-display);
    color: var(--primary-olive-dark);
}

.room-price-info {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.room-price-info .price-lbl {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.room-price-info .price-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold-dark);
}

.room-price-info .price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.room-card-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.room-card-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.room-card-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-card-features span i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.room-card-horizontal.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.room-card-horizontal.reverse .room-card-image {
    order: 2;
}

.room-card-horizontal.reverse .room-card-info {
    order: 1;
}

/* Detail View Layout */
.room-detail-content-section {
    padding: 6rem 0;
    background-color: var(--bg-cream);
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
}

.room-detail-main {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* Interactive Photo Gallery */
.room-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border-color);
    padding: 10px;
    background: var(--text-light);
    box-shadow: var(--shadow-medium);
}

.gallery-main-viewport {
    position: relative;
    width: 100%;
    height: 480px;
    background: #111;
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-main-viewport::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.thumb-btn {
    border: 2px solid transparent;
    padding: 0;
    background: none;
    cursor: pointer;
    overflow: hidden;
    height: 80px;
    transition: var(--transition-smooth);
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.thumb-btn:hover img,
.thumb-btn.active img {
    opacity: 1;
}

.thumb-btn.active {
    border-color: var(--accent-gold);
}

.thumb-btn:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Description Text */
.room-section-subtitle {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.room-section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

.room-description-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Specific Amenities bullet list */
.room-section-subtitle-small {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    color: var(--primary-olive-dark);
}

.amenities-bullets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    list-style: none;
    padding: 0;
}

.amenities-bullets-grid li {
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenities-bullets-grid li i {
    color: var(--primary-olive-light);
    font-size: 1rem;
}

/* Sidebar Styling */
.room-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.premium-rates-card {
    background: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-medium);
}

.premium-rates-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.season-rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px dashed var(--border-color);
}

.season-rate-row.emphasis {
    border-bottom: none;
    background-color: var(--bg-cream-dark);
    padding: 1.2rem 1.5rem;
    margin: 1rem -1.5rem;
}

.season-info {
    display: flex;
    flex-direction: column;
}

.season-name {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.season-period {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.season-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.season-price .price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-olive-dark);
}

.season-rate-row.emphasis .season-price .price {
    color: var(--accent-gold-dark);
}

.season-price .unit {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.rates-notes {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rates-notes p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.rates-notes p i {
    color: var(--accent-gold);
    margin-top: 2px;
}

.btn-book-sidebar {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: var(--primary-olive);
    color: var(--text-light);
    padding: 1.2rem;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    display: block;
    margin-top: 2.5rem;
    box-shadow: 0 4px 15px rgba(74, 93, 78, 0.2);
    transition: var(--transition-smooth);
}

.btn-book-sidebar:hover {
    background-color: var(--primary-olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 93, 78, 0.3);
}

/* Assistance Box */
.assistance-box-card {
    background-color: var(--bg-cream-dark);
    padding: 2rem 2.5rem;
    border-left: 2px solid var(--accent-gold);
}

.assistance-box-card h4 {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.assistance-box-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.assistance-phone {
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--primary-olive-dark);
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.assistance-phone:hover {
    color: var(--accent-gold-dark);
}

/* Accessibility visible focus */
.btn-gold:focus-visible,
.btn-book-sidebar:focus-visible,
.btn-dark-outline:focus-visible,
.btn-back-link:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
}

/* Responsiveness Media Queries for Camere */
@media (max-width: 991px) {
    .rooms-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .room-card-horizontal,
    .room-card-horizontal.reverse {
        grid-template-columns: 1fr;
    }
    
    .room-card-horizontal.reverse .room-card-image {
        order: 1;
    }
    
    .room-card-horizontal.reverse .room-card-info {
        order: 2;
    }
    
    .room-card-info {
        padding: 2.5rem;
    }
    
    .room-detail-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .room-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .rooms-page-hero,
    .room-detail-hero {
        height: 45vh;
        min-height: 300px;
    }
    
    .rooms-intro-title {
        font-size: 2.2rem;
    }
    
    .room-card-header h3 {
        font-size: 1.8rem;
    }
    
    .gallery-main-viewport {
        height: 320px;
    }
    
    .thumb-btn {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .rooms-page-hero,
    .room-detail-hero {
        padding-top: 6rem;
    }
    
    .rooms-intro-section,
    .rooms-list-section,
    .room-detail-content-section {
        padding: 4rem 0;
    }
    
    .rooms-breakfast-box {
        padding: 2rem;
    }
    
    .room-card-info {
        padding: 1.8rem;
    }
    
    .room-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .gallery-thumbnails {
        gap: 5px;
    }
    
    .thumb-btn {
        height: 50px;
    }
}

.mt-150 {
    margin-top: 150px;
}

/* ==========================================================================
   News / Notizie Section Styles
   ========================================================================== */

/* Hero for News page */
.news-page-hero,
.news-detail-hero {
    position: relative;
    height: 50vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.news-page-hero .hero-bg-picture,
.news-detail-hero .hero-bg-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.news-page-hero .hero-bg-img,
.news-detail-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-page-hero .hero-overlay,
.news-detail-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 47, 40, 0.4), rgba(42, 50, 44, 0.8));
    z-index: 2;
}

.news-page-hero .hero-content,
.news-detail-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 1.5rem;
}

.news-detail-hero .hero-content {
    max-width: 900px;
}

/* News List Layout */
.news-list-section {
    padding: 6rem 0;
    background-color: var(--bg-cream);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* News Card */
.news-card {
    background-color: var(--bg-cream-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(194, 159, 104, 0.3);
}

.news-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card:hover .news-card-img {
    transform: scale(1.08);
}

.news-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-olive);
    color: var(--text-light);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: 0;
    z-index: 4;
}

.news-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-meta {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-card-meta i {
    color: var(--accent-gold);
}

.news-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-olive-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: var(--transition-smooth);
}

.news-card:hover .news-card-title {
    color: var(--accent-gold-dark);
}

.news-card-excerpt {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(74, 93, 78, 0.08);
}

.news-read-more-link {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-olive);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-read-more-link i {
    transition: transform 0.3s ease;
}

.news-card:hover .news-read-more-link {
    color: var(--accent-gold-dark);
}

.news-card:hover .news-read-more-link i {
    transform: translateX(5px);
}

/* PagedList Pagination Custom Styling */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.pagination li {
    display: inline-block;
}

.pagination li a,
.pagination li span {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-olive-dark);
    padding: 0.7rem 1.1rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-cream-dark);
    transition: var(--transition-smooth);
    min-width: 40px;
    text-align: center;
    box-sizing: border-box;
}

.pagination li a:hover {
    background-color: var(--primary-olive-light);
    color: var(--text-light);
    border-color: var(--primary-olive-light);
}

.pagination li.active span {
    background-color: var(--accent-gold);
    color: var(--text-light);
    border-color: var(--accent-gold);
}

.pagination li.disabled span,
.pagination li.disabled a {
    color: var(--text-muted);
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--bg-cream);
}

/* News Detail Content Section */
.news-detail-content-section {
    padding: 6rem 0;
    background-color: var(--bg-cream);
}

.news-detail-body {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-cream);
}

.news-detail-body .btn-back-link {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-olive);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.news-detail-body .btn-back-link:hover {
    color: var(--accent-gold-dark);
}

.news-detail-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-dark);
}

.news-detail-text p {
    margin-bottom: 1.8rem;
}

.news-detail-text h2,
.news-detail-text h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-display);
    color: var(--primary-olive-dark);
}

.news-detail-text h2 {
    font-size: 2.2rem;
}

.news-detail-text h3 {
    font-size: 1.7rem;
}

.news-detail-main-img {
    width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    display: block;
}

.news-detail-text img {
    margin: 2rem 0;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    max-width: 100%;
    height: auto;
}

.news-detail-text blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--accent-gold);
    background-color: var(--bg-cream-dark);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--primary-olive-dark);
}

/* Responsiveness Media Queries for News */
@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .news-page-hero,
    .news-detail-hero {
        height: 45vh;
        min-height: 300px;
    }
    
    .news-detail-text {
        font-size: 1.1rem;
        line-height: 1.75;
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .news-list-section,
    .news-detail-content-section {
        padding: 4rem 0;
    }
    
    .news-card-content {
        padding: 1.5rem;
    }
    
    .news-card-image-wrapper {
        height: 200px;
    }
}
