/* color palette from <https://github.com/vuejs/theme> */
:root {
  --vt-c-white: #ffffff;
  --vt-c-white-text: #1e1a1a;

  --vt-c-black: #1e1a1a;
  --vt-c-black-text: #ffffff;

 --vt-c-light-blue: #c3e7fd;
 --vt-c-dark-blue: #293a44;
}

/* semantic color variables for this project */
:root {
  --color-background: var(--vt-c-white);
  --color-text: var(--vt-c-white-text);
  --color-light-blue: var(--vt-c-light-blue);
  --logo-color: #1e1a1a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-background: var(--vt-c-black);
    --color-text: var(--vt-c-black-text);
    --color-light-blue: var(--vt-c-dark-blue);
    --logo-color: #ffffff;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
}

/* Accessible visually hidden — visible to screen readers only */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(0);
  white-space: nowrap;
  border: 0;
}

body {
  min-height: 100vh;
  color: var(--color-text);
  background: var(--color-background);
  transition:
    color 0.5s,
    background-color 0.5s;
  line-height: 1.2;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-size: medium;
  text-rendering: optimizeLegibility;
}

a,
a:link,
a:visited {
  color: var(--color-text);
  text-decoration: none;
  display: inline-flex;
  outline: none;
  line-height: 1;
}
.link {
    font-size: medium;
    font-weight: 600;
    text-decoration: none;
    margin-right: 16px;
    color: var(--color-text);
    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    border-radius: 25px;
    margin-bottom: 16px;
    border: 1px solid var(--color-text);
    width: fit-content;
    margin-top: 16px;
}
a.link.withBG {
    background-color: var(--color-text);
    color: var(--color-background);
}
.link-container-r {
    display: flex;
    justify-content: flex-start;
}
.link-container-l {
    display: flex;
    justify-content: flex-start;
}
img,
video,
iframe {
  max-inline-size: 100%;
  block-size: auto;
  width: 100%;
}
img.hero_image {
    border-radius: 12px;
}
.link-Holder {
    margin-top: 20px;
    margin-bottom: 30px;
}
/* Mobile first — single column (base, all screens < 441px) */
.layout {
  width: 100%;
  margin: auto;
  min-height: 100vh;
  display: grid;
  grid:
    "header" auto
    "body" 1fr
    "footer" auto
    / 1fr;
  gap: 8px;
}

.header {
  grid-area: header;
  margin-bottom: 64px;
}
.radius {
  border-radius: 20px;
}

.body {
  grid-area: body;
  max-width: 1366px;
  width: calc(100% - 40px);
  margin-inline: auto;
}
p {
    display: block;
    margin-block-start: 0em;
    margin-block-end: 1.5em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
.footer {
    grid-area: footer;
    font-size: small;
    padding: 40px;
    background-color:black;
    color: white;
    margin-top: 5%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: 20px;
    margin-right: 20px;
}
.footer-content {
    max-width: 1366px;
    margin: auto;
}
.footer-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}
.footer-nav {
    flex: 0 0 auto;
}
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}
.footer-menu li {
    margin-bottom: 10px;
}
.footer-menu a,
.footer-menu a:link,
.footer-menu a:visited {
    font-size: small;
    font-weight: 600;
    color: inherit;
}
.footer-menu a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    .footer-cols {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
img.footer-logo {
    width: 135px;
    height: 70px;
    border-radius: 0;
    margin-bottom: 30px;
}
.footer-social {
    margin-bottom: 15px;
}
img.logo {
  width: 120px;
  height: 70px;
}
img.footer-social-link {
    width: 40px;
    height: 40px;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}
section#local-business {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 15px 20px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgb(0 0 0 / 4%);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
span.sub {
    font-size: medium;
    display: block;
    padding-left: 5px;
}
h2 {
    font-size: clamp(2rem, 10vw, 2rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
    min-height: 1em;
    margin-block-end: 0.83em;
}
section#local-business > span {
  font-size: medium;
  font-weight: 600;
  text-align: center;
  flex: 1;
}
section#uber-NUBE {
    padding-top: 64px;
}
a.NUBE-readmore-btn {
    color: var(--color-text);
    background-color: transparent;
    border: none;
    border-color: var(--color-text);
    margin-top: 16px;
    border-radius: 4px;
    padding-top: 2px;
    padding-right: 15px;
    padding-bottom: 2px;
    padding-left: 0;
    font-size: medium;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}
a.NUBE-readmore-btn span {
  margin-left: 5px;
}
.lb-shop-link {
  font-size: medium;
  font-weight: 600;
  text-decoration: none;
  margin-right: 16px;
  background-color: #374955;
  color: white !important;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 8px;
  padding-left: 20px;
  border-radius: 25px;
  text-align: center;
}
.lb-shop-link:hover {
  text-decoration: underline;
}

#local-business .lang-switcher {
  flex-shrink: 0;
}
p.hmf-credit {
    margin-top: 24px;
    font-size: smaller;
}

p.nube-vintage-text-lead {
    font-size: larger;
}
p.nube-history-text-lead {
  font-size: larger;
}

@media (max-width: 600px) {
  section#local-business {
    flex-direction: column;
    gap: 2px;
  }
  .lb-shop-link {
    margin: 10px;
  }
  .footer-social {
    margin-bottom: 25px;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 25px;
  }
  img.footer-logo {
    width: 180px;
    height: 70px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
  }
}

@media (min-width: 601px) and (max-width: 867px) {
  section#local-business {
    z-index: 12;
  }
}
.lang-switcher {
  position: relative;
  display: inline-block;
}
.lang-toggle {
  background: none;
  border: 0px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: medium;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text);
}
.lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--color-background);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 10;
}
.lang-menu.open {
  display: block;
}
.lang-menu li a {
  display: block;
  padding: 6px 16px;
  text-decoration: none;
  color: var(--color-text);
  font-size: medium;
}
.lang-menu li a:hover {
  background: rgba(0, 0, 0, 0.05);
}
#page-owner figure {
    padding: 20px 15px 15px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 315px;
}
#page-owner figure figcaption {
  font-size: smaller;
  max-width: 150px;
  line-height: 1.2;
  margin-left: 10px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.titleHolder {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: stretch;
  align-content: space-around;
  gap: 2%;
  margin-bottom: 32px;
}
.hero-title {
    font-size: clamp(1.5rem, 10vw, 3.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
    min-height: 1em;
    flex: 0 0 50%;
}
.hero-content img,
.hero-content picture {
  flex: 0 0 33.333%;
  max-width: 440px;
  border-radius: 20px;
}
.hero-asset-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.hero-asset {
  flex: auto;
}
section#page-owner {
    max-width: 1366px;
    margin: auto;
}
@media (max-width: 867px) {


  .hero-content {
    flex-direction: column;
    align-items: stretch;
  }
  .titleHolder {
    flex: 1 1 100%;
    width: 100%;
  }
  .hero-title,
  .hero-asset,
  .hero-content picture, 
  .hero-content img {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .hero-content picture,
  .hero-content img {
    width: 100%;
  }
}

/* Base Resets */
#navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#navigation a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 5px 20px 5px 0px;
  font-size: large;
}
#navigation:hover a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
#navigation:hover a:hover {
  opacity: 1;
}
/* Submenu items: staggered fade in/out — index set via JS as --i */
.submenu li {
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  transition-delay: calc(var(--i, 0) * 50ms);
}
.has-submenu.active .submenu li {
  opacity: 1;
  transform: translateY(0);
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-wrapper {
  font-size: smaller;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  gap: 0rem;
  flex-direction: column;
}

.event-wrapper-info {
  max-width: 250px;
  text-wrap-style: balance;
}
.event-title {
  font-size: x-large;
  line-height: 1.2;
  font-weight: 800;
}
.event-time,
.event-price {
  font-weight: 700;
}
/* About Section Styles */
.NUBE-about-section {
    display: flex;
    flex-direction: column;
    flex: 0 0 38%;
    margin-bottom: 32px;
}
.NUBE-about-section h2 {
    /* flex: 0 0 50%; */
    font-weight: 500;
}
.paraFontBig {
    font-size: larger;
    margin-bottom: 16px;
}

.NUBE-about-image {
    width: 100%;
    margin: 32px 0;
}
.NUBE-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.NUBE-full-image {
    width: 100%;
    margin: 40px 0;
}
.NUBE-full-image img {
    width: 100%;
    height: auto;
    display: block;
}

.NUBE-image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.NUBE-image-gallery figure {
    flex: 0 0 100%;
    margin: 0;
}
.NUBE-image-gallery figure img {
    width: 100%;
    height: auto;
    display: block;
}
/* Mobile first: groups stack their figures in one column */
.img_a_group,
.img_b_group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.img_a_group figure,
.img_b_group figure {
    flex: 1;
    margin: 0;
}
/* NUBE Jewelry Section */
.nube-jewelry-container {
    display: flex;
    margin-top: 10%;
    flex-direction: column;
}
.nube-jewelry-intro-block, .nube-jewelry-collection-block, .nube-jewelry-craftsmanship-block, .nube-jewelry-variety-block, .nube-jewelry-audience-block {
    margin-bottom: 20px;
}

.nube-vintage-container {
    display: flex;
    margin-top: 10%;
    flex-direction: column;
    width: 100%;
    margin-left: 0%;
}
@media (min-width: 867px) {
 .Full-width-banner-image {
        display: flex;
        gap: 2%;
        align-items: stretch;
    }
    figure.NUBE-full-image.second {
    display: flex;
    align-items: flex-end;
}

  .main {
    display: flex;
    gap: 2%;
}
.main  .left{
    flex: 0 0 48%;
}
.main  .right{
    flex: 0 0 48%;
}
 .nube-vintage-container {
        width: 100%;
        margin-left: 0%;
    }
}
.nube-vintage-intro-block, .nube-vintage-discovery-block, p.nube-vintage-text-exclusivity {
    margin-bottom: 10px;
}

.nube-contact-form-block {
    margin-top: 2rem;
}
.nube-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.nube-contact-form label {
    font-weight: 600;
    margin-top: 0.5rem;
}
.nube-contact-input,
.nube-contact-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}
.nube-contact-textarea {
    resize: vertical;
}
.nube-contact-submit {
    margin-top: 1rem;
    padding: 12px 24px;
    background: #374955;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s;
    display: inline-flex;
    width: fit-content;
}
.nube-contact-submit:hover {
    background: #4a6373;
}
.nube-contact-message {
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.nube-contact-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.nube-contact-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.nube-history-container {
    display: flex;
    margin-top: 5%;
    flex-direction: column;
}
.nube-history-split-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
a.whatsapp-button img {
    padding: 8px;
}

@media (min-width: 600px) {
  /* Tablet + Desktop: each group is one row of paired images (2x2 total) */
  .img_a_group,
  .img_b_group {
    flex-direction: row;
    flex: 0 0 100%;
    gap: 2rem;
  }
  .img_a_group {
    align-items: flex-end;
  }
  .img_b_group {
    align-items: flex-start;
  }
  img.radius.up,
  img.radius.down {
    position: relative;
    bottom: 2rem;
  }
}

@media (min-width: 867px) {
  .nube-history-split-wrapper {
    flex-direction: row;
    gap: 5rem;
    max-width: 1140px;
    margin: auto;
  }
  .nube-history-image-column {
    flex: 1;
  }
}
.nube-history-figure {
    margin: 0;
}
.nube-history-img {
    width: 100%;
    height: auto;
    display: block;
}
.nube-history-intro-block, .nube-history-network-block, .nube-history-curation-block, .nube-history-collaboration-block {
    margin-bottom: 10px;
}
.nube-history-text-column {
    flex: 1;
}


p.nube-jewelry-text-lead {
    font-size: larger;
}

@media (min-width: 867px) {
  .NUBE-image-gallery {
    gap: 2rem;
    flex: 0 0 60%;
  }
}
/* Desktop Styles (Above 867px) */
@media (min-width: 867px) {
    section#uber-NUBE {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  padding-top: 120px; 
  gap: 2%; 
}

  #navigation a {
    font-size: large;
  }
     .hero-asset {
        flex: 0 0 45%;
        font-size: medium;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
  .event-wrapper {
    font-size: medium;
    display: flex;
    gap: 0rem;
    flex-direction: column;
  }
  section#navigation {
    padding-left: 20px;
    padding-right: 20px;
    position: sticky;
    top: 0;
    z-index: 5;
    max-width: 1406px;
    margin: auto;
  }
  section#navigation .nav-list {
    transition:
      justify-content 0s,
      transform 0.35s ease,
      opacity 0.35s ease,
      box-shadow 0.35s ease;
  }
  section#navigation.scrolled .nav-list {
    justify-content: center;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: fit-content;
    z-index: 100;
    background: #374955ab;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    transform: translateY(0);
    opacity: 1;
    margin: auto;
    border-radius: 10px;
  }
  section#navigation.scrolled a {
    color: white;
  }
  nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  nav {
    padding: 0px;
    margin-bottom: 24px;
    margin-top: 24px;
  }
  .menu-toggle {
    display: none;
  }
  .nav-list {
    display: flex;
    justify-content: flex-start;
  }

  .has-submenu {
    position: relative;
  }
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0s linear 0.3s;
  }
  /* Show submenu when parent has 'active' class */
  .has-submenu.active .submenu {
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.3s ease,
      visibility 0s linear 0s;
    border-radius: 5px;
  }
.nube-jewelry-container {
        display: flex;
        margin-top: 10%;
        flex-direction: row;
        width: 100%;
        flex-wrap: wrap;
        gap: 2%;
    }
    .left {
    flex: 0 0 38%;
}
.right {
    flex: 0 0 60%;
}
}

/* Mobile Styles (Below 867px) */
@media (max-width: 866px) {
  .event-wrapper {
    font-size: medium;
    display: flex;
    gap: 2rem;
    flex-direction: row;
  }
  .event-wrapper-info {
    max-width: 100%;
    text-wrap-style: balance;
    flex: 1;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    background: rgb(255 255 255 / 75%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .nav-list.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 10;
    padding: 60px 20px 20px 20px !important;
  }
  .nav-list.open a {
    font-size: 5.2rem !important;
    padding: 12px 20px;
  }

  .submenu {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding-left: 20px;
    opacity: 0;
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease;
  }
  ul.submenu li a {
    font-size: medium;
  }
  .has-submenu.active .submenu {
    max-height: 300px;
    opacity: 1;
  }

  /* Burger Icon */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    position: fixed;
    right: 5px;
    top: 60px;
    z-index: 11;
    transition:
      top 0.3s ease,
      transform 0.3s ease,
      opacity 0.3s ease;
    /* background-color: var(--color-background); */
  }
  .menu-toggle.hidden {
    transform: translateY(-60px);
    opacity: 0;
    pointer-events: none;
  }
  .menu-toggle.scrolled {
    top: 20px;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
  }
}

@media (max-width: 812px) {
  .hero-content img {
    max-width: none;
  }
}

@media only screen and (max-width: 429px) {
  .event-wrapper {
    font-size: medium;
    display: flex;
    gap: 0rem;
    flex-direction: column;
  }
  .event-wrapper picture,
  .event-wrapper picture img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width: 441px) {
}

@media only screen and (min-width: 667px) {
}

@media only screen and (min-width: 867px) {
  .layout {
    grid:
      "header header" auto
      "body" 1fr
      "footer footer" auto
      / auto 1fr;
  }
}

@media only screen and (min-width: 1366px) {
  .layout {
    grid:
      "header header header" auto
      "body" 1fr
      "footer footer footer" auto
      / auto 1fr auto;
  }
}

@media (max-width: 867px) and (prefers-color-scheme: dark) {
  .menu-toggle span {
    background: #d9d9d9;
  }
  .nav-list.open {
    background: rgb(48 48 48 / 50%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(24, 24, 24, 0.3);
  }
}

@media screen and (prefers-color-scheme: dark) {
  section#local-business {
    position: sticky;
    top: 0;
    display: flex;
    width: 100%;
    /* flex-direction: row; */
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 15px 20px;
    background: rgb(191 191 191 / 20%);
    box-shadow: 0 4px 30px rgb(0 0 0);
    backdrop-filter: blur(5px);
    border: 1px solid rgb(75 72 72);
}
  .submenu {
    background: #353535;
  }
  #navigation a {
    color: var(--vt-c-white);
  }
  .event-wrapper {
    justify-content: flex-end;
    background: rgb(48 48 48 / 20%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(24, 24, 24, 0.3);
  }
  section#navigation.scrolled .nav-list {
    background: rgb(48 48 48 / 20%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(24, 24, 24, 0.3);
  }
}
@media screen and (prefers-color-scheme: light) {
}

@media (horizontal-viewport-segments: 2) and (vertical-viewport-segments: 1) {
}
@media (vertical-viewport-segments: 2) and (horizontal-viewport-segments: 1) {
}

@media (min-width: 430px) and (max-width: 590px) {
  .event-wrapper {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}

/* Hero fade-in on load */
#hero {
  animation: heroFadeIn 0.8s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll fade-in: all sections except hero */
.body > section:not(#hero) {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.body > section:not(#hero).visible {
  opacity: 1;
  transform: translateY(0);
}

/* Consent Banner */
.nube-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #374955;
  color: #fff;
  padding: 12px 20px;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 999;
  font-size: 0.9rem;
}
.nube-consent-banner.is-visible {
  display: flex;
}
.nube-consent-text {
  margin: 0;
}
.nube-consent-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.nube-consent-accept,
.nube-consent-reject {
  padding: 6px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}
.nube-consent-accept {
  background: #fff;
  color: #374955;
}
.nube-consent-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.nube-consent-accept:hover {
  background: #e6e6e6;
}
.nube-consent-reject:hover {
  background: rgba(255,255,255,0.1);
}
