/* --- CONFIGURAZIONE VARIABILI --- */
:root {
    --navy-blue: #001f3f; /* Blu Navy meno acceso */
    --gold: #c5a059;
    --gold-light: #e0c08d;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --bg-light: #f9f9f9;
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {font-family: 'Montserrat', sans-serif; color: var(--text-dark); background-color: var(--white); line-height: 1.8; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: auto; padding: 0 25px; }

/* RIMOZIONE STILE DEFAULT LINK (Telefono e Footer) */
.plain-link {text-decoration: none !important; color: inherit !important; }

/* --- TIPOGRAFIA --- */
h1, h2, h3, .brand-text { font-family: 'Playfair Display', serif; }

.section-header { text-align: center; margin-bottom: 60px; }
.subtitle {display: block; text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.section-title { font-size: 2.8rem; color: var(--navy-blue); font-weight: 700; }

/* --- TOP NAV & MENU --- */
.top-nav { background: var(--navy-blue); color: var(--white); padding: 10px 0; font-size: 0.75rem; }
.top-nav-flex { display: flex; justify-content: space-between; align-items: center; }

.social-lang-row { display: flex; align-items: center; gap: 15px; }
.socials a { color: var(--white); margin: 0 5px; transition: 0.3s; }
.socials a:hover { color: var(--gold); }
.lang-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }
.lang-switch a { color: var(--white); text-decoration: none; opacity: 0.7; }
.lang-switch a.active { opacity: 1; color: var(--gold); font-weight: 600; }

.main-menu { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo-branding a { display: flex; align-items: center; gap: 15px; }
.logo-img { height: 60px; width: auto; }
.brand-text { font-size: 1.8rem; color: var(--navy-blue); line-height: 0.9; text-transform: uppercase; }
.brand-text small { display: block; font-size: 0.75rem; color: var(--gold); letter-spacing: 5px; font-family: 'Montserrat'; font-weight: 300; }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: white !important; padding: 12px 25px; border-radius: 2px; text-decoration: none; }

/* --- HERO --- */
.hero {height: 90vh; background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero_home.jpg') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.elegant-title { font-size: clamp(2.5rem, 6vw, 5rem); font-style: italic; font-weight: 400; margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 1.2rem; font-weight: 300; letter-spacing: 1px; }
.btn-hero {display: inline-block; margin-top: 40px; padding: 18px 45px; background: transparent; border: 1px solid var(--white); color: var(--white); text-decoration: none; text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; transition: 0.4s; }
.btn-hero:hover { background: var(--white); color: var(--navy-blue); }

/* --- EXPERIENCE SECTION --- */
.experience-intro { padding: 120px 0; background: var(--bg-light); text-align: center; }
.experience-content { max-width: 800px; margin: auto; }
.experience-content p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 25px; font-weight: 300; }

/* --- SUITES SECTION --- */
.suites-selection { padding: 100px 0; }
.suites-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.suite-card { background: var(--white); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.05); transition: 0.5s ease; }
.suite-card:hover { transform: translateY(-15px); }
.text-gold {color: var(--gold) !important; }

.suite-img-wrapper { position: relative; height: 450px; overflow: hidden; }
.suite-img { height: 100%; background-size: cover; background-position: center; transition: 1.2s; }
.suite-card:hover .suite-img { transform: scale(1.1); }
.suite-badge {position: absolute; top: 20px; left: 20px; background: var(--white); padding: 5px 15px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; }
.suite-info { padding: 50px; text-align: center; }
.suite-logo { height: 70px; margin-bottom: 25px; }
.suite-info h3 { font-size: 2rem; margin-bottom: 20px; color: var(--navy-blue); }
.suite-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 30px; }

.btn-suite {display: inline-block; padding: 12px 35px; text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; border-radius: 2px; transition: 0.3s; }
.btn-blue { background: var(--navy-blue); color: white; }
.btn-gold { background: var(--gold); color: white; }
.btn-suite:hover { opacity: 0.9; }

/* --- FOOTER --- */
.main-footer { background: var(--navy-blue); color: #d1d1d1; padding: 80px 0 40px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-col h4 { color: var(--gold); font-family: 'Playfair Display'; font-size: 1.5rem; margin-bottom: 25px; }
.footer-links li { list-style: none; margin-bottom: 12px; }
.footer-links a { color: #d1d1d1; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-logo-text { font-family: 'Playfair Display'; font-size: 1.4rem; color: var(--white); margin-left: 10px; }
.footer-social { margin-top: 20px; }
.footer-social a { color: var(--white); font-size: 1.3rem; margin-right: 15px; }
.footer-social a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; text-align: center; }
.footer-legal { margin-top: 15px; }
.footer-legal a { color: var(--white); text-decoration: none; margin: 0 10px; }
.logo-img-footer {height: 50px; width: auto; margin-bottom: 15px; display: block; }
.footer-logo-wrapper {display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }

/* MOBILE MENU */
.hamburger { display: none; background: none; border: none; font-size: 1.8rem; color: var(--navy-blue); cursor: pointer; }
.mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; transition: 0.5s; padding: 80px 40px; text-align: center; }
.mobile-nav.active { right: 0; }
.close-menu { position: absolute; top: 30px; right: 30px; font-size: 3rem; color: var(--navy-blue); background: none; border: none; }
.mobile-nav li { list-style: none; margin-bottom: 30px; }
.mobile-nav a { text-decoration: none; font-family: 'Playfair Display'; font-size: 1.8rem; color: var(--navy-blue); }
.mobile-logo {height: 60px; width: auto; margin-bottom: 40px; display: inline-block; 
}

/* --- PAGINA CREDITS --- */
.credits-section {padding: 120px 0; background-color: #ffffff; text-align: center; }
.section-header-credits {margin-bottom: 80px; }
.subtitle-credits {color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 15px; }
.title-credits {font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--text-dark); }
.divider-credits {width: 60px; height: 2px; background-color: var(--gold); margin: 25px auto 0; }
.credits-grid {display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.credit-card {background: #fdfdfd; border: 1px solid #f0f0f0; padding: 60px 40px; transition: all 0.4s ease; display: flex; flex-direction: column; align-items: center; }
.credit-card:hover {background: #ffffff; box-shadow: 0 20px 50px rgba(0,0,0,0.05); transform: translateY(-10px); }
.credit-icon {font-size: 2.5rem; color: var(--gold); margin-bottom: 25px; }
.credit-type {font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text-dark); margin-bottom: 20px; }
.credit-desc {color: var(--text-muted); font-size: 0.95rem; margin-bottom: 10px; font-weight: 300; }
.credit-name {font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text-dark); letter-spacing: 1px; margin-bottom: 35px; }
.credit-link {text-decoration: none; color: var(--text-dark); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; border-bottom: 1px solid transparent; }
.credit-link:hover {color: var(--gold); border-bottom: 1px solid var(--gold); }

/* Responsive per Credits */
@media (max-width: 768px) {
.credits-grid {grid-template-columns: 1fr; }
.title-credits {font-size: 2.2rem; }
}

/* --- HERO SOTTOPAGINE --- */
.hero-subpage {height: 60vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); }
.hero-subpage-content .subtitle {color: var(--gold-light); margin-bottom: 20px; }

/* --- SEZIONE CONTATTI --- */
.contact-section {padding: 100px 0; }
.contact-grid {display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; }
.section-title-small {font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy-blue); margin-bottom: 20px; }

/* --- STILE FORM --- */
.main-contact-form {margin-top: 30px; }
.form-row {display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.main-contact-form input, .main-contact-form textarea {width: 100%; padding: 15px; border: 1px solid #eee; background: #fdfdfd; font-family: 'Montserrat', sans-serif; font-size: 0.9rem;     transition: 0.3s; }
.main-contact-form input:focus, .main-contact-form textarea:focus {outline: none; border-color: var(--gold); background: #fff; }
.privacy-check {margin: 20px 0 30px; font-size: 0.85rem; color: var(--text-muted); }
.privacy-check a {color: var(--gold); text-decoration: none; }

/* --- STILE DETTAGLI CONTATTO --- */
.contact-details-wrapper {background: #f9f9f9; padding: 40px; }
.detail-item {display: flex; align-items: flex-start; gap: 20px; margin-bottom: 35px; }
.detail-item i {font-size: 1.5rem; color: var(--gold); margin-top: 5px; }
.detail-item h4 {font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--navy-blue); margin-bottom: 5px; }
.detail-item p {font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }

/* --- MAPPA --- */
.map-section {line-height: 0; }

/* Responsive */
@media (max-width: 480px) {
.hero-subpage {height: 50vh; padding: 0 15px; }
.hero-subpage .elegant-title {font-size: 2.2rem !important; line-height: 1.2; }
.contact-grid {display: block !important; width: 100% !important; padding: 0 !important; }
.main-contact-form {width: 100% !important; }
.form-row {display: block !important; margin-bottom: 0; }
.main-contact-form input, .main-contact-form textarea {margin-bottom: 15px; font-size: 16px !important; width: 100% !important; }
.contact-details-wrapper {margin-top: 40px; padding: 25px 15px !important; width: 100% !important; box-sizing: border-box; }
.detail-item {gap: 15px; margin-bottom: 25px; }
.detail-item i {font-size: 1.2rem; }
.detail-item p {font-size: 0.9rem; word-break: break-all; }
.map-section iframe {height: 300px; }
}

@media (max-width: 992px) {
.contact-grid {grid-template-columns: 1fr; gap: 50px; }
.form-row {grid-template-columns: 1fr; }
}

/* --- STILI EXPERIENCES --- */
.experiences-section {padding: 80px 0; background-color: #fdfdfd; }
.experience-grid {display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.experience-card {background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-radius: 4px; overflow: hidden; transition: transform 0.3s ease; }
.experience-card:hover {transform: translateY(-5px); }
.exp-image {height: 300px; background-size: cover; background-position: center; }
.exp-content {padding: 30px; }
.exp-content h3 {font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy-blue); margin-bottom: 15px; }
.exp-content p {font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.exp-link {display: inline-flex; align-items: center; gap: 10px; color: var(--gold); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.experience-intro {padding: 100px 0 60px; text-align: center; background-color: #fff; }
.intro-content {max-width: 800px; margin: 0 auto; }
.gold-accent {display: block; color: var(--gold); text-transform: uppercase; letter-spacing: 4px; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; }
.experience-intro h2 {font-size: 2.8rem; color: var(--navy-blue); line-height: 1.2; margin-bottom: 25px; }
.divider-gold {width: 50px; height: 2px; background-color: var(--gold); margin: 0 auto 35px; }
.emotional-p {font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.4rem; color: var(--text-dark); line-height: 1.6; margin-bottom: 30px; }
.seo-p {font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }

/* --- RESPONSIVE FIX (360px) --- */
@media (max-width: 768px) {
.experience-grid {grid-template-columns: 1fr; }
.hero-subpage-content .hero-text-sub {font-size: 1rem; padding: 0 15px; }
}

@media (max-width: 360px) {
.exp-content {padding: 20px; }
.exp-content h3 {font-size: 1.4rem; }
.hero-subpage {height: 50vh; }
.experience-intro {padding: 60px 15px 40px; }
.experience-intro h2 {font-size: 1.8rem; }
.emotional-p {font-size: 1.2rem; }
}

/* --- PAGINE LEGALI (Privacy & Cookie Policy) --- */
.legal-page {padding: 100px 0; background-color: var(--white); }
.legal-header {margin-bottom: 60px; text-align: center; }
.legal-header h1 {font-size: 2.5rem; color: var(--navy-blue); margin-bottom: 15px; line-height: 1.2; }
.legal-header .subtitle {color: var(--gold); font-weight: 600; letter-spacing: 2px; }
.divider {width: 60px; height: 2px; background-color: var(--gold); margin: 30px auto 0; }
.legal-text {max-width: 900px; margin: 0 auto; color: var(--text-dark); }
.legal-text h3 {font-size: 1.6rem; color: var(--navy-blue); margin: 45px 0 20px; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
.legal-text p {margin-bottom: 20px; font-size: 1rem; line-height: 1.8; color: var(--text-muted); }
.legal-text ul {margin: 20px 0 30px 20px; list-style: none; }
.legal-text ul li {margin-bottom: 15px; position: relative; padding-left: 25px; color: var(--text-muted); }
.legal-text ul li::before {content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 5px; font-size: 0.7rem; color: var(--gold); }
.legal-text strong {color: var(--navy-blue); font-weight: 600; }
.legal-text a {color: var(--gold); text-decoration: none; transition: 0.3s; font-weight: 600; }
.legal-text a:hover {opacity: 0.8; text-decoration: underline; }

/* Responsive per pagine legali */
@media (max-width: 768px) {
.legal-header h1 {font-size: 1.8rem; }
.legal-page {padding: 60px 0; }
}

@media (max-width: 992px) {
.nav-links { display: none; }
.hamburger { display: block; }
.suites-grid { grid-template-columns: 1fr; }
}