body {
    margin: 0;
    padding: 0;
    position: relative;
}

body::before {
    content: "";
    display: block;
    width: 100%;
    height: 250px;
    background-image: url('http://ese-victor.micro.blog/uploads/2025/14767483e4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

body::after {
    content: "La Infinita";
    font-family: sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: black;
    position: absolute;
    top: 20px;  /* Adjust for vertical padding */
    right: 20px; /* Adjust for right padding */
    background: rgba(1, 1, 1, 0); /* Optional: semi-transparent background */
    padding: 10px 20px;
    border-radius: 8px;
}

article img[style*="float"] {
    margin: 23px;
}

/* language toggle button */

    .lang-toggle a {
        display: inline-block;
        font-size: 12px;
        padding: 4px 8px;
        border: 1px solid black;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
        background-color: white;
    }

    .lang-toggle a:hover {
        background-color: #f0f0f0;
    }

    .lang-toggle .active-lang {
        font-weight: bold;
        text-decoration: underline;
    }

/* link for WhatsApp group on Taller page */

body main article pre a:link,
body main article pre a:visited,
body main article pre a {
    color: white;
    border: 1px solid white;
    padding: 4px;
    border-radius: 5px;
}


.custom-gallery {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}

.custom-gallery img {
  width: 100%;
  display: none;
  border-radius: 10px;
}

.custom-gallery img.active {
  display: block;
}

.gallery-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.gallery-nav button {
  padding: 8px 15px;
  cursor: pointer;
  background-color: #f0f0f0;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}