/* Gotham Rounded SSm */
@font-face {
  font-family: 'Gotham Rounded SSm';
  src: url('https://online-fonts.com/fonts/gotham-rounded-ssm/gotham-rounded-ssm-book.woff2') format('woff2'),
       url('https://online-fonts.com/fonts/gotham-rounded-ssm/gotham-rounded-ssm-book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Rounded SSm';
  src: url('https://online-fonts.com/fonts/gotham-rounded-ssm/gotham-rounded-ssm-medium.woff2') format('woff2'),
       url('https://online-fonts.com/fonts/gotham-rounded-ssm/gotham-rounded-ssm-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Rounded SSm';
  src: url('https://online-fonts.com/fonts/gotham-rounded-ssm/gotham-rounded-ssm-bold.woff2') format('woff2'),
       url('https://online-fonts.com/fonts/gotham-rounded-ssm/gotham-rounded-ssm-bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding-top: 80px;
  font-family: 'Gotham Rounded SSm', sans-serif;
  background: #fff;
  color: #000;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
  color: rgb(68, 68, 68);
}

.album-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.album-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.album-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.album {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 20px 30px;
  background: #eee;
  text-decoration: none;
  color: #000;
  border-radius: 10px;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album:hover {
  background: #ddd;
  transform: scale(1.02);
}

.album img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.album-title {
  margin-top: 8px;
  font-weight: bold;
  font-size: 16px;
}

/* MENU */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* LOGO */
.logo-space {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  z-index: 2;
}
.logo-space img {
  height: 40px;
  width: auto;
  display: block;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 3;
  background: none;
  border: none;
  color: #000;
}

/* ENLACES */
.menu-links {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.menu-links a {
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.menu-links a:hover {
  text-decoration: underline;
}

/* GALERÍA */
.section-wrapper {
  margin-bottom: 40px;
  padding-top: 40px;
  scroll-margin-top: 120px;
}

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 40px;
}

.section-gallery {
  column-count: 3;
  column-gap: 10px;
  max-width: 1400px;
  margin: auto;
  padding: 0 10px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* LOADER */
.loading-spinner {
  text-align: center;
  padding: 1em;
  font-size: 1rem;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
   .section-gallery {
    column-count: 1;
  }

  .menu-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    display: none;
    padding: 0.3rem 0.3rem;
    border-top: 1px solid #ddd;
  }

  .menu-links.show {
    display: flex;
  }

.menu-links a {
  padding: 0.3rem 0.3rem;
  width: 100%;
  text-align: center;
  font-size: 1rem;
}

  .section-gallery {
    column-count: 1;
  }

  .logo-space {
    width: auto;
  }
  
  .album-grid {
    flex-direction: column;
    align-items: center;
  }

  .album {
    width: 90%;
    max-width: 100%;
  }
}
