/* ==========================================================================
   Explorer Yacht - Premium Design Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@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=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Premium Design System */
:root {
  /* Colors */
  --bg-primary: #000000;
  --bg-secondary: #0c0c0c;
  --bg-tertiary: #161616;
  --bg-glass: rgba(217, 217, 217, 0.08);
  --bg-glass-heavy: rgba(12, 12, 12, 0.75);
  
  --accent-gold: #c9a961;
  --accent-gold-hover: #dab686;
  --accent-gold-light: #ffd59e;
  
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dimmed: rgba(255, 255, 255, 0.4);
  
  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(201, 169, 97, 0.3);
  --border-gold-focus: rgba(218, 182, 134, 0.8);
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --header-height-mobile: 70px;
  --transition-speed: 0.3s;
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(201, 169, 97, 0.2); }
  50% { box-shadow: 0 0 15px rgba(201, 169, 97, 0.5); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Typography Utilities */
.serif-title {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.gold-text {
  color: var(--accent-gold);
}

/* Container */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* Floating Responsive Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-speed) ease;
}

.main-header.scrolled {
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  height: 70px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-wrapper img {
  height: 55px;
  width: auto;
  object-contain: fit;
  transition: transform var(--transition-speed) ease;
}

.logo-wrapper:hover img {
  transform: scale(1.03);
}

.desktop-nav {
  display: flex;
  align-items: center;
}

/* Navigation List Layout (handles static nav-list and Joomla dynamic menus) */
.nav-list,
.desktop-nav ul,
.desktop-nav ul.menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  list-style: none;
  margin: 0;
}

/* Ensure nested lists (submenus) are reset to vertical absolute layout */
.desktop-nav li ul,
.desktop-nav li .nav-child {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 1010;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  backdrop-filter: none;
}

/* Show submenu dropdown on hover or when JS toggles class .show */
.desktop-nav li:hover > ul,
.desktop-nav li:hover > .nav-child,
.desktop-nav li:hover > .nav-dropdown,
.desktop-nav li ul.show,
.desktop-nav li .nav-child.show,
.desktop-nav li .nav-dropdown.show {
  display: flex;
}

/* Submenu Links Styling */
.desktop-nav li ul li,
.desktop-nav li .nav-child li {
  width: 100%;
}

.desktop-nav li ul li a,
.desktop-nav li .nav-child li a,
.desktop-nav li .nav-dropdown a,
.desktop-nav li .nav-dropdown button {
  display: block;
  width: 100%;
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-white);
  text-align: left;
  transition: all var(--transition-speed) ease;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}

.desktop-nav li ul li a:hover,
.desktop-nav li .nav-child li a:hover,
.desktop-nav li .nav-dropdown a:hover,
.desktop-nav li .nav-dropdown button:hover {
  background: var(--bg-glass);
  color: var(--accent-gold);
}

/* Link defaults and Active indicators */
.desktop-nav ul li a,
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 0.25rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.desktop-nav ul li a::after,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: width var(--transition-speed) ease;
}

.desktop-nav ul li:hover > a::after,
.desktop-nav ul li.active > a::after,
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.desktop-nav ul li:hover > a,
.desktop-nav ul li.active > a,
.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

/* Mobile Nav submenus styling */
.mobile-nav-list ul,
.mobile-nav-list ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.mobile-nav-list li ul,
.mobile-nav-list li .nav-child,
.mobile-nav-list li .nav-dropdown {
  display: none;
  list-style: none;
  padding: 0.5rem 0 0 1.5rem !important; /* Indent submenus on mobile */
  margin: 0;
  text-align: left !important;
}

/* Reset layout of .nav-dropdown for mobile */
.mobile-nav-list li .nav-dropdown {
  position: static !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  min-width: unset !important;
}

.mobile-nav-list li ul.show,
.mobile-nav-list li .nav-child.show,
.mobile-nav-list li .nav-dropdown.show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-list li ul li a,
.mobile-nav-list li .nav-child li a,
.mobile-nav-list li .nav-dropdown li a,
.mobile-nav-list li .nav-dropdown a {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: var(--font-serif);
}

.mobile-nav-list li ul li a:hover,
.mobile-nav-list li .nav-child li a:hover,
.mobile-nav-list li .nav-dropdown li a:hover,
.mobile-nav-list li .nav-dropdown a:hover {
  color: var(--accent-gold);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin-left: 1.5rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: var(--bg-glass);
  backdrop-filter: blur(5px);
}

.lang-btn:hover {
  border-color: var(--accent-gold);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  min-width: 120px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 1010;
}

.lang-dropdown.show {
  display: block;
}

.lang-option {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-speed) ease;
}

.lang-option:hover {
  background: var(--bg-glass);
  color: var(--accent-gold);
}

/* Mobile Nav Styles */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100000; /* Deve essere ancora più alto del menu per rimanere visibile e cliccabile */
  color: #ffffff;
  background: none;
  border: none;
}

.mobile-menu-overlay {
  display: flex; /* Always flex, handled by transform positioning */
  position: fixed;
  top: 0;
  right: 0;
  width: 320px; /* Copre solo parte dello schermo (modalità drawer) */
  max-width: 85%;
  height: 100%;
  background: #000000; /* Sfondo nero */
  z-index: 99999; /* Z-index molto alto per sovrapporsi alle immagini/swiper */
  padding: 8rem 3rem 2rem; /* Aumentato padding sinistro per allineamento */
  flex-direction: column;
  align-items: flex-start; /* Allinea a sinistra */
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5); /* Ombra sul lato sinistro del drawer */
}

.mobile-menu-overlay.show {
  transform: translateX(0);
}

/* Reset any inherited desktop nav-list borders and backgrounds inside mobile menu */
.mobile-menu-overlay .mobile-nav-list > ul,
.mobile-menu-overlay .mobile-nav-list > ul.menu,
.mobile-menu-overlay .mobile-nav-list > .nav-list {
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important; /* Allinea a sinistra */
  gap: 2rem !important;
  width: 100% !important;
}

.mobile-menu-overlay li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important; /* Allinea a sinistra */
  gap: 1rem !important;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Allinea a sinistra */
  gap: 2rem;
  width: 100%;
}

.mobile-nav-link,
.mobile-nav-list a,
.mobile-nav-list li a,
.mobile-nav-list button {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  text-transform: uppercase;
  color: #ffffff !important; /* Voci bianche */
  text-decoration: none;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: left !important;
}

.mobile-nav-link:hover,
.mobile-nav-list a:hover,
.mobile-nav-list li a:hover,
.mobile-nav-list button:hover {
  color: var(--accent-gold) !important;
}

.mobile-lang-list {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
}

.mobile-lang-btn {
  padding: 0.5rem;
  border: none !important; /* Rimuove contorni */
  border-radius: 0;
  font-size: 0.9rem;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-lang-btn.active {
  color: var(--accent-gold) !important;
  font-weight: bold;
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

/* Premium Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-white);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  backdrop-filter: blur(5px);
}

.btn-premium:hover {
  border-color: var(--accent-gold-hover);
  color: var(--accent-gold-hover);
  background: rgba(201, 169, 97, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.15);
}

.btn-premium.solid {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  font-weight: 600;
}

.btn-premium.solid:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: var(--bg-primary);
}

.btn-premium svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

#home-explore-btn svg {
  width: 24px;
  height: 31px;
}

.icon-yacht {
  display: inline-block;
  width: 14px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-image: url('../images/yacht.svg');
  mask-image: url('../images/yacht.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Main Section Layout */
main {
  margin-top: var(--header-height);
  flex: 1;
}

.hero-main {
  margin-top: 0;
}

/* Homepage Video Hero Section */
.hero-section {
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1100px;
  padding: 0 1.5rem;
}

.hero-logo-img {
  width: 1000px;
  max-width: 95%;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.6rem;
  }
}

/* Our Yachts Teaser Section */
.yacht-teaser-section {
  position: relative;
  padding: 8rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background-image: radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.05) 0%, transparent 60%);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.yacht-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.yacht-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .yacht-grid,
  .yacht-grid.cols-3 {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Yacht Cards */
.yacht-card {
  background: var(--bg-tertiary);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.yacht-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

.yacht-card-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.yacht-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yacht-card:hover .yacht-card-img img {
  transform: scale(1.06);
}

.yacht-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
}

.yacht-card-title {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0;
}

.yacht-card-body {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.yacht-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.yacht-card-actions {
  display: flex;
  justify-content: center;
}

/* General Page Teaser Blocks */
.info-teaser-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-light);
}

.teaser-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.teaser-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.teaser-subtitle {
  color: var(--accent-gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.teaser-text {
  max-width: 800px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.teaser-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  margin-top: 3rem;
}

.teaser-img-wrap {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.teaser-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .teaser-card {
    padding: 2.5rem 1.5rem;
  }
  .teaser-title {
    font-size: 2rem;
  }
  .teaser-images-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Event Cards Layout */
.events-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .events-teaser-grid {
    grid-template-columns: 1fr;
  }
}

.event-teaser-card {
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.event-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform var(--transition-speed) ease;
}

.event-teaser-card:hover .event-bg-img {
  transform: scale(1.05);
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}

.event-date-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  z-index: 3;
}

.event-info {
  position: relative;
  z-index: 3;
}

.event-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-location {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.event-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

/* About Us (The Company) Page */
.company-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.company-content {
  padding: 4rem 0 8rem;
}

.company-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.company-block:last-child {
  margin-bottom: 0;
}

.company-block.reverse .company-text-col {
  order: 2;
}

.company-block.reverse .company-img-col {
  order: 1;
}

@media (max-width: 992px) {
  .company-block, .company-block.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .company-block.reverse .company-text-col,
  .company-block.reverse .company-img-col {
    order: unset;
  }
  .company-img-col {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .company-img-col img {
    max-width: 500px;
    width: 100%;
  }
}

.company-text-col h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.company-text-col p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.company-img-col {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  aspect-ratio: 1 / 1;
}

.company-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Yacht Details Page */
.yacht-hero {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  background-size: cover;
  background-position: center;
}

.yacht-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
}

.yacht-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.yacht-hero-title {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.yacht-hero-subtitle {
  font-size: 1.2rem;
  color: var(--accent-gold);
}

/* Yacht Nav Sticky Bar */
.yacht-sticky-nav {
  position: sticky;
  top: 70px;
  width: 100%;
  background: rgba(12,12,12,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 900;
  padding: 1rem 0;
}

.yacht-nav-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.yacht-nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

@media (max-width: 768px) {
  .yacht-sticky-nav {
    display: none;
  }
}

/* Yacht Page Sections */
.yacht-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-light);
}

.yacht-section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* Yacht Spec Table */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 992px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

.spec-column {
  background: var(--bg-tertiary);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 2rem;
}

.spec-column-title {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--text-muted);
}

.spec-value {
  font-weight: 500;
}

/* Yacht Gallery Slider */
.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slider-main {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .slider-main {
    height: 300px;
  }
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.slider-img.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-speed) ease;
}

.slider-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.slider-btn.prev { left: 2rem; }
.slider-btn.next { right: 2rem; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.slider-dot.active {
  background: var(--accent-gold);
  transform: scale(1.25);
}

/* Yacht Layout Section */
.deckplans-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .deckplans-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.deckplans-list {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  max-height: 500px;
  overflow-y: auto;
}

.deckplans-list p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.deckplans-img-wrap {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.deckplans-img-wrap img {
  max-height: 400px;
  object-fit: contain;
}

/* Yacht Comfort & Design Layout Blocks */
.feature-info-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-info-block.reverse {
  grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 992px) {
  .feature-info-block, .feature-info-block.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.feature-info-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--accent-gold);
  padding-left: 1rem;
}

.feature-info-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.feature-info-gallery {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 380px;
}

.feature-info-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Safety Section */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .safety-grid {
    grid-template-columns: 1fr;
  }
}

.safety-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem;
}

.safety-card-title {
  font-size: 1.35rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.safety-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Yacht Catalogs and 3D Links */
.catalog-actions-wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .catalog-actions-wrap {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Events Page */
.events-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.events-list-section {
  padding: 3rem 0 8rem;
}

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

@media (max-width: 992px) {
  .events-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .events-list-grid {
    grid-template-columns: 1fr;
  }
}

.event-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
}

.event-card-img {
  height: 250px;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.event-card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.event-card-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Dealers Page */
.dealers-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.dealers-section {
  padding: 3rem 0 8rem;
}

.dealers-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .dealers-list-grid {
    grid-template-columns: 1fr;
  }
}

.dealer-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
}

.dealer-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.dealer-location {
  color: var(--accent-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.dealer-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.dealer-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.dealer-detail-row a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* Charters Page */
.charters-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.charters-content {
  padding: 3rem 0 8rem;
}

.charter-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

@media (max-width: 992px) {
  .charter-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.charter-intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.charter-intro-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.charter-intro-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 450px;
}

.charter-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Premium Forms (Charters & Contacts) */
.form-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 6rem 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(201, 169, 97, 0.03) 0%, transparent 60%);
}

.form-container {
  max-width: 750px;
  margin: 0 auto;
}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--bg-tertiary);
  padding: 4rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}

@media (max-width: 576px) {
  .premium-form {
    padding: 2rem 1.5rem;
  }
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 30%, rgba(132, 91, 60, 0.15) 100%) 1;
  border-radius: 0;
  color: var(--text-white);
  transition: all var(--transition-speed) ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: rgba(255, 255, 255, 0.07);
  border-image: linear-gradient(90deg, #ffffff 30%, #845b3c 100%) 1;
}

.form-textarea {
  height: 150px;
  resize: vertical;
}

.form-submit-row {
  text-align: center;
  margin-top: 1rem;
}

.form-status {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  display: block;
  color: #4cd964;
}

.form-status.error {
  display: block;
  color: #ff3b30;
}

/* Contacts Page Layout */
.contacts-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.contacts-info-section {
  padding: 3rem 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

@media (max-width: 992px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.contacts-text-side h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contacts-details-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  border-radius: 12px;
}

.contact-card-icon {
  color: var(--accent-gold);
  width: 28px;
  height: 28px;
}

.contact-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-card-val {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Footer Design */
.main-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-social-links {
  display: flex;
  gap: 1.5rem;
}

.footer-social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: color var(--transition-speed) ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dimmed);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 400px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  z-index: 10000;
  display: none;
  animation: fadeInUp 0.5s ease forwards;
}

.cookie-text {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-speed) ease;
}

.cookie-btn.accept {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.cookie-btn.decline {
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

.cookie-btn.accept:hover { background: var(--accent-gold-hover); }
.cookie-btn.decline:hover { border-color: var(--text-muted); color: var(--text-white); }


/* ==========================================================================
   Admin Panel Specific Styles
   ========================================================================== */

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  margin-top: 0;
  background: var(--bg-primary);
}

@media (max-width: 992px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

.admin-sidebar {
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.admin-logo img {
  height: 50px;
  margin-bottom: 3rem;
}

.admin-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.admin-menu-item {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-speed) ease;
}

.admin-menu-item:hover, .admin-menu-item.active {
  background: var(--bg-glass);
  color: var(--accent-gold);
  border-left: 3px solid var(--accent-gold);
}

.admin-logout-btn {
  margin-top: auto;
  border: 1px solid var(--border-light);
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  text-align: center;
  cursor: pointer;
}

.admin-logout-btn:hover {
  background: #ff3b30;
  border-color: #ff3b30;
}

.admin-content {
  padding: 3rem;
  overflow-y: auto;
  height: 100vh;
}

@media (max-width: 768px) {
  .admin-content {
    padding: 1.5rem;
    height: auto;
  }
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
}

.admin-panel-title {
  font-size: 2.25rem;
}

.admin-lang-select {
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  color: var(--text-white);
  cursor: pointer;
}

/* Auth Overlay */
.admin-auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  text-align: center;
}

.auth-logo {
  height: 80px;
  margin-bottom: 2rem;
}

.auth-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Tabs Panel */
.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

/* Editor Forms & UI Cards */
.admin-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}

.admin-card-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}

/* Table Style for Admin */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.admin-table th {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: var(--bg-tertiary);
}

.admin-table tr:hover {
  background: rgba(255,255,255,0.02);
}

.admin-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.admin-badge.locale {
  background: rgba(201,169,97,0.15);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

/* Admin Actions Buttons */
.admin-action-btn {
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.admin-action-btn.edit {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.admin-action-btn.edit:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.admin-action-btn.delete {
  border: 1px solid #ff3b30;
  color: #ff3b30;
}

.admin-action-btn.delete:hover {
  background: #ff3b30;
  color: var(--text-white);
}

/* Image Upload Preview UI */
.image-upload-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  border-radius: 8px;
}

@media (max-width: 576px) {
  .image-upload-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.image-preview {
  width: 120px;
  height: 90px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-upload-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.file-input-label {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
}

.file-input-label:hover {
  border-color: var(--accent-gold);
}

.file-input {
  display: none;
}

/* Specs Creator UI */
.admin-spec-group-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.admin-spec-group-row input {
  flex: 1;
}

/* Gallery Grid Admin */
.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .admin-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.admin-gallery-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 120px;
}

.admin-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-gallery-delete {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 59, 48, 0.9);
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  cursor: pointer;
  z-index: 5;
}

.admin-gallery-delete:hover {
  background: #ff3b30;
  transform: scale(1.1);
}

/* Modals */
.admin-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 11000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.admin-modal.show {
  display: flex;
}

.admin-modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.admin-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.admin-modal-close:hover {
  color: var(--accent-gold);
}

/* Premium Image Hover Zoom Effects */
.event-card-img img,
.teaser-img-wrap img,
.company-img-col img,
.charter-intro-img img,
.charter-fullwidth-img-wrap img,
.teaser-card img,
.yacht-card-img img,
.event-bg-img,
.feature-info-gallery img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-card:hover .event-card-img img,
.teaser-img-wrap:hover img,
.company-block:hover .company-img-col img,
.charter-intro:hover .charter-intro-img img,
.charters-content:hover .charter-fullwidth-img-wrap img,
.teaser-card:hover .teaser-img-wrap img,
.yacht-card:hover .yacht-card-img img,
.event-teaser-card:hover .event-bg-img,
.feature-info-block:hover .feature-info-gallery img {
  transform: scale(1.05);
}

/* Custom Footer Styles */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1.5rem;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  text-align: left;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 0;
  }
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #FFE2BB;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}
.footer-social-links {
  display: flex;
  gap: 1rem;
}
.footer-social-link svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  transition: fill 0.3s;
}
.footer-social-link:hover svg {
  fill: #FFE2BB;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-links-list a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}
.footer-links-list a:hover {
  color: #FFE2BB;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-bottom {
    padding: 1.5rem 0;
  }
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.disabled-link,
.link-disabled {
  pointer-events: none !important; /* Impedisce qualsiasi click del mouse o interazione */
  cursor: default !important;       /* Ripristina il cursore normale (non la manina) */
  opacity: 0.5 !important;          /* Rende la voce semitrasparente per far capire che è inattiva */
}