 html, body {
      margin: 0; padding: 0;
      scroll-behavior: smooth;
      font-family: 'Inter', sans-serif;
      background: #fafafa;
      color: #282828;
    }
    header {
      transition: top 0.3s ease;
      position: relative;
      z-index: 10;
    }

    .navbar-brand {
      color: #fff !important;
      font-weight: 700;
      font-size: 1.5rem;
      user-select: none;
    }
    .navbar-brand img {
      height: 100px;
      width: auto;
    }

    .nav-link {
      color: #fff !important;
      font-weight: 500;
      user-select: none;
      font-family: 'Inter', sans-serif;
    }
    .nav-link:hover {
      color: #ff9f00 !important;
      text-decoration: underline;
    }

    section {
      min-height: 100vh;
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }
    .hero {
      display: flex;
      justify-content: center;
      align-items: center;
      height: calc(100vh - 116px);
    }
    section h1,
.hero-content h1,
.editorial-text h1 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  
  font-weight: 300;
  margin-bottom: 0;
}

    section h1 {
      opacity: 0;
      transform: translateY(30px);
      animation-fill-mode: forwards;
      animation-name: fadeUp;
      animation-duration: 1s;
      animation-timing-function: ease;
    }

    section h1.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    footer {
      background-color: #111;
      color: #ddd;
      padding: 1.5rem 0;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
    }
    footer.fade-in-visible {
      opacity: 1;
      transform: translateY(0);
    }

    footer .nav-link {
      color: #bbb !important;
      font-weight: 400;
    }
    footer .nav-link:hover {
      color: #ff9f00 !important;
      text-decoration: underline;
    }
    #s1 { background-image: url('../img/bg-hero-image.jpg');color:#fafafa; }
    #s2 { background-image: url('../img/about.jpg');color:#fafafa;}

    @media (max-width: 768px) {
      section {
        background-attachment: scroll;
        padding-top: 56px;
      }
    }
    .hero-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem 3rem;
  border-left: 5px solid #fff;
  max-width: 600px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 3rem;
 
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  
  font-weight: 300;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #s1 {
    padding: 0 5%;
  }
  .hero-content {
    padding: 1.5rem 1.5rem;
    max-width: 100%;
    border-left: none;
    border-top: 5px solid #fff;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
.galeria-section {
  padding: 4rem 2rem;
  background-color: #fafafa;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.grid-item {
  display: block;
  width: auto;
  max-width: 300px;
  flex-grow: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.03);
}

.grid-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}