/* La Dolce Vita — shared site chrome: nav, floating CTAs, footer.
   Load after Webflow CSS. Page-specific styles stay inline or in other sheets. */

:root {
  --nav-height: 90px;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.ldv-legal {
  background-color: #0a0a0a;
}

/* --- Navigation --- */
.ldv-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.ldv-nav-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
}

.ldv-logo {
  height: 34px;
  width: auto;
  display: block;
}

.ldv-nav-menu {
  display: flex;
  justify-content: center;
  gap: 45px;
}

.ldv-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: 0.3s;
}

.ldv-nav-link:hover {
  opacity: 0.6;
}

.ldv-social-mobile {
  display: none !important;
}

.ldv-hamburger {
  justify-self: end;
  display: none !important;
  width: 30px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.ldv-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}

.ldv-hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ldv-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.ldv-hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Floating actions (default: visible; events page may override) --- */
.ldv-floating-actions {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.ldv-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.btn-vip {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-tickets {
  background: #fff;
  color: #000 !important;
}

/* --- Footer --- */
.ldv-footer-section {
  font-family: 'Montserrat', sans-serif;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 20px 40px 20px;
  color: #fff;
  font-size: 0.9rem;
  position: relative;
  z-index: 10;
}

.ldv-footer-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.ldv-footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ldv-footer-logo {
  display: block;
  margin-bottom: 15px;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ldv-footer-logo:hover {
  opacity: 0.8;
}

.ldv-footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.ldv-footer-desc {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-size: 0.85rem;
  max-width: 300px;
}

.ldv-footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
}

.ldv-footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.ldv-footer-link:hover {
  color: rgba(255, 255, 255, 0.6);
  transform: translateX(5px);
}

.ldv-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}

.ldv-footer-contact-item:hover {
  color: #fff;
}

.ldv-footer-contact-item i {
  color: rgba(255, 255, 255, 0.4);
  width: 20px;
  text-align: center;
}

.ldv-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.ldv-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ldv-social-icon:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.ldv-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  grid-column: 1 / -1;
}

.ldv-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ldv-legal-links {
  display: flex;
  gap: 30px;
}

.ldv-legal-link {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.ldv-legal-link:hover {
  color: #fff;
}

@media (max-width: 1023px) {
  .ldv-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  }

  .ldv-nav-menu.is-active {
    transform: translateY(0);
  }

  .ldv-hamburger {
    display: flex !important;
  }

  .ldv-social-mobile {
    display: flex !important;
    margin-top: 50px;
    gap: 25px;
  }

  .ldv-social-mobile i {
    font-size: 24px;
    color: #fff;
  }

  .ldv-nav-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 30px;
  }

  .ldv-nav-link {
    font-size: 32px !important;
  }

  .ldv-floating-actions {
    left: 20px;
    right: 20px;
    bottom: 25px;
    flex-direction: row;
  }

  .ldv-float-btn {
    flex: 1;
    padding: 16px 5px;
    font-size: 10px;
  }
}

@media (max-width: 991px) {
  .ldv-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .ldv-footer-section {
    padding: 60px 20px 30px;
  }

  .ldv-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ldv-footer-desc {
    margin: 0 auto;
  }

  .ldv-footer-col {
    align-items: center;
  }

  .ldv-footer-socials {
    justify-content: center;
  }

  .ldv-footer-logo-img {
    margin: 0 auto;
  }

  .ldv-footer-bottom {
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .ldv-legal-links {
    gap: 20px;
    justify-content: center;
  }
}
