:root {
  --c-black:#000; --c-white:#fff; --c-grey:#f4f4f4;
  --radius:16px;
}
* { box-sizing: border-box }
html, body { margin:0; padding:0; background:var(--c-white); color:#111; font-family:'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; line-height:1.45 }
img { max-width:100%; height:auto; display:block }

.site-header { position:sticky; top:0; z-index:20; background:rgba(255, 255, 255, 0.5); backdrop-filter:blur(8px); border-bottom:1px solid rgba(229, 229, 229, 0.5); padding:16px; display:flex; justify-content:space-between; align-items:center; width:100%; }
.logo { height:auto; max-height:76px; width:auto }
.lang-switcher { display:flex; gap:6px; align-items:center; }
.lang-btn { background:transparent; border:1px solid #ccc; border-radius:4px; padding:4px 10px; cursor:pointer; font-size:12px; font-weight:400; text-transform:lowercase; transition:all .2s; color:#666; }
.lang-btn:hover { border-color:#111; color:#111; }
.lang-btn.active { background:#111; color:#fff; border-color:#111; }

/* Hero */
.hero { position:relative; min-height:72vh; display:grid; place-items:center; }
.hero::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.8) 100%); pointer-events:none; z-index:1; }
.hero-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-overlay { position:relative; text-align:center; padding:24px; background:rgba(0,0,0,.45); color:var(--c-white); border-radius:var(--radius); backdrop-filter:saturate(140%) blur(2px); z-index:2; }
.hero-title { margin:0 0 4px; font-size:clamp(28px,5vw,52px); letter-spacing:0.02em; font-family:'Playfair Display', serif; font-weight:400; font-style:italic; line-height:1.3; }
.hero-sub { margin:0 0 16px; font-variant:small-caps; color:#f2f2f2; opacity:.95; font-weight:500; }
.btn-primary, .btn-secondary, .card-link { display:inline-block; padding:10px 20px; border-radius:30px; text-decoration:none; border:1px solid var(--c-white); transition:all 0.3s ease; }
.btn-primary { background:var(--c-white); color:#111; font-weight:600; box-shadow:0 3px 10px rgba(0,0,0,0.3); }
.btn-primary:hover { background:#111; color:var(--c-white); border-color:#111; }
.btn-secondary { background:transparent; color:var(--c-white) }
.btn-secondary:hover { opacity:.85 }

/* Secciones */
.section-title { text-align:center; font-size:clamp(22px,3vw,32px); margin:48px 0 16px; grid-column:1/-1; font-family:'Playfair Display', serif; font-weight:500; font-style:italic; }

/* Cards */
.restaurants { display:grid; gap:24px; grid-template-columns:repeat(12,1fr); padding:0 16px 40px }
.card { grid-column:1/-1; background:var(--c-grey); border-radius:var(--radius); overflow:hidden; display:grid; grid-template-columns:1fr; }
.card-image-wrap { position:relative; width:100%; height:280px; display:block; overflow:hidden; transition:transform 0.3s ease; }
.card-image-wrap:hover { transform:scale(1.02); }
.card-image-wrap > img:first-child { width:100%; height:100%; object-fit:cover; filter:grayscale(25%) sepia(35%) contrast(115%) saturate(130%) brightness(100%); transition:filter 0.3s ease; }
.card-image-wrap:hover > img:first-child { filter:grayscale(15%) sepia(35%) contrast(120%) saturate(140%) brightness(105%); }
.card-logo { position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); height:80px; width:auto; max-width:200px; filter:drop-shadow(0 0 12px rgba(255, 250, 240, 1)) drop-shadow(0 0 24px rgba(255, 250, 240, 0.95)) drop-shadow(0 0 36px rgba(255, 250, 240, 0.8)) drop-shadow(0 3px 10px rgba(0,0,0,0.8)) drop-shadow(0 6px 20px rgba(0,0,0,0.7)); }
.card-logo[alt*="Venezzia"] { height:92px; }
.card-logo[alt*="Balcón de Aruba"] { height:68px; }
.card-body { padding:20px }
.card h3 { margin:0 0 6px; font-size:20px; font-family:'Playfair Display', serif; font-weight:500; }
.card-mini { margin:0 0 8px; color:#444 }
.card-info { margin:0 0 12px; color:#333; font-size:14px }
.card-info a { color:#333; text-decoration:none; cursor:pointer; }
.card-info a:hover { color:#111; text-decoration:underline; }
.card-link { border-color:#111; color:#111; padding:8px 14px; }
.card-link:hover { background:#111; color:var(--c-white) }

/* Map */
.map-wrap { padding:0 16px 64px }
.map-container { display:grid; grid-template-columns:1fr; gap:16px; }
.map-list { background:var(--c-grey); border-radius:var(--radius); padding:16px; }
.map-list-title { margin:0 0 12px; font-size:18px; font-weight:500; font-family:'Playfair Display', serif; }
.location-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; }
.location-btn { width:100%; text-align:left; background:#fff; border:1px solid #ddd; border-radius:8px; padding:12px; cursor:pointer; transition:all .2s; display:flex; flex-direction:column; gap:2px; }
.location-btn:hover { border-color:#111; background:#fafafa; }
.location-btn:focus { outline:2px solid #111; outline-offset:2px; }
.location-btn.active { border-color:#111; background:#111; color:#fff; }
.location-name { font-weight:600; font-size:15px; }
.location-city { font-size:13px; opacity:.7; }
#map { width:100%; height:420px; border-radius:var(--radius); border:1px solid #ddd; }

/* Footer */
.site-footer { background:#000; color:#bbb; display:flex; align-items:center; justify-content:space-between; padding:14px 16px; font-size:14px }
.site-footer a { color:#bbb; text-decoration:none }
.site-footer a:hover { color:var(--c-white) }

/* Cookies */
.cookie-modal { position:fixed; inset:0; background:rgba(0,0,0,.5); display:none; align-items:flex-end; justify-content:center; padding:16px; }
.cookie-modal[aria-hidden="false"] { display:flex }
.cookie-box { background:#fff; color:#111; width:min(720px,100%); border-radius:12px; padding:16px; box-shadow:0 10px 40px rgba(0,0,0,.25) }
.cookie-box h3 { font-family:'Playfair Display', serif; font-weight:500; }
.cookie-actions { display:flex; gap:10px; align-items:center; margin-top:10px }
.cookie-link { color:#111; text-decoration:underline }

/* Responsive */
@media (min-width:768px){
  .restaurants { grid-template-columns:repeat(12,1fr) }
  .card { grid-column:span 6 }
  .map-container { grid-template-columns:300px 1fr; }
}
@media (min-width:1200px){
  .card:nth-child(-n+4) { grid-column:span 4 }
  .card:nth-child(n+5) { grid-column:span 6 }
  #map { height:520px }
  .map-container { grid-template-columns:320px 1fr; }
}

/* Legal */
.legal .legal-content { max-width:900px; margin:32px auto; padding:0 16px 80px }

/* Venezzia */
:root {
  --venezzia-cream: #F6F3EC;
  --venezzia-pistachio: #C5D8C1;
  --venezzia-cherry: #B5463B;
  --venezzia-text: #222222;
  --venezzia-text-secondary: #555555;
  --venezzia-dark: #1F1F1F;
}

body.venezzia-page {
  background: var(--venezzia-cream);
  color: var(--venezzia-text);
}

/* Venezzia Header */
.venezzia-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197, 216, 193, 0.3);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.venezzia-header-logo-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.venezzia-header-logo-grupo {
  height: auto;
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.venezzia-header-logo-left:hover .venezzia-header-logo-grupo {
  transform: scale(1.05);
}

.venezzia-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.venezzia-header-logo {
  height: auto;
  max-height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.venezzia-logo-link:hover .venezzia-header-logo {
  transform: scale(1.05);
}

.venezzia-header .lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

/* Venezzia Navigation */
.venezzia-nav {
  position: sticky;
  top: 76px;
  z-index: 19;
  background: rgba(246, 243, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197, 216, 193, 0.3);
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .venezzia-nav {
    display: none;
  }
}

.venezzia-nav a {
  color: var(--venezzia-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.venezzia-nav a:hover {
  background: var(--venezzia-pistachio);
  color: var(--venezzia-text);
}

/* Venezzia Hero */
.venezzia-hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  place-items: center;
  background: var(--venezzia-dark);
  color: var(--c-white);
}

.venezzia-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31, 31, 31, 0.2) 0%, rgba(31, 31, 31, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.venezzia-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.venezzia-hero-content {
  position: relative;
  text-align: center;
  padding: 32px 24px;
  z-index: 2;
  max-width: 800px;
}

.venezzia-logo {
  max-width: 280px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.venezzia-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 6vw, 64px);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--c-white);
}

.venezzia-hero-subtitle {
  margin: 0 0 32px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.venezzia-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.venezzia-btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--venezzia-cherry);
  color: var(--c-white);
  border: 2px solid var(--venezzia-cherry);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(181, 70, 59, 0.3);
}

.venezzia-btn-primary:hover {
  background: var(--c-white);
  color: var(--venezzia-cherry);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(181, 70, 59, 0.4);
}

.venezzia-btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--c-white);
  border: 2px solid var(--c-white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.venezzia-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Venezzia Sections */
.venezzia-section {
  padding: 64px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.venezzia-section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 24px;
  color: var(--venezzia-text);
}

.venezzia-section-text {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: var(--venezzia-text-secondary);
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

/* Historia Section */
.venezzia-historia {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.venezzia-historia-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.venezzia-historia-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--venezzia-text-secondary);
}

/* Galería Section */
.venezzia-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.venezzia-gallery-block {
  margin-bottom: 48px;
}

.venezzia-gallery-block h3 {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--venezzia-text);
  text-align: center;
}

.venezzia-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.venezzia-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.venezzia-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.venezzia-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venezzia-gallery-item:hover img {
  transform: scale(1.05);
}

/* Carta Section */
.venezzia-carta {
  text-align: center;
  background: var(--c-white);
  padding: 48px 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.venezzia-carta-note {
  font-size: 14px;
  color: var(--venezzia-text-secondary);
  margin-top: 12px;
  font-style: italic;
}

/* Contacto Section */
.venezzia-contacto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.venezzia-contacto-info {
  background: var(--c-white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.venezzia-contacto-info h3 {
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin: 0 0 20px;
  color: var(--venezzia-text);
}

.venezzia-contacto-item {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--venezzia-text-secondary);
}

.venezzia-contacto-item strong {
  color: var(--venezzia-text);
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.venezzia-contacto-item a {
  color: var(--venezzia-cherry);
  text-decoration: none;
  transition: color 0.3s ease;
}

.venezzia-contacto-item a:hover {
  color: var(--venezzia-text);
  text-decoration: underline;
}

.venezzia-map-container {
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.venezzia-map-container #venezzia-map {
  width: 100%;
  height: 100%;
}

/* Responsive Venezzia */
@media (min-width: 768px) {
  .venezzia-hero {
    min-height: 90vh;
  }
  
  .venezzia-historia {
    grid-template-columns: 1fr 1fr;
  }
  
  .venezzia-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .venezzia-contacto {
    grid-template-columns: 1fr 1.5fr;
  }
}

@media (min-width: 1024px) {
  .venezzia-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .venezzia-section {
    padding: 80px 24px;
  }
}

