body {
    margin: 0;
    font-family: 'Lora', serif;
    background: #fdfdfd;
    color: #222;
  }
  
.hero {
    position: relative;
    height: 100vh;
    background: url('../img/2025-zinn-buenos-aires-1-2.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: Montserrat, sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    font-family: Lora, serif;
}

/* layout */
.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1300px;
    margin: 2rem auto;
    padding: 0 2rem;
  }
.sidebar {
    flex: 0 0 180px;
    font-size: 0.9rem;
}

.sidebar p{
    margin-top: .1rem;
}

.sidebar h3 {
    margin-bottom: 0.2rem;
    font-weight: bold;
    color: #57612D;
    padding-bottom: 0;
}

.sidebar {
    flex: 0 0 180px;
    font-size: 0.9rem;
    padding-left: 0; 
  }
  
  .sidebar-inner {
    border-left: 2px solid #57612D;
    padding-left: 1rem;
  }

  .content {
    flex: 1;
    display: flex;
  }

  .all {
    max-width: 900px;
    width: 100%;
    padding-left: 1.5%;
  }

  .all h1{
    color: #57612D;
    padding-top: 3%;
    font-family: Montserrat, sans-serif;
  }

.content p{
    font-size: 1.2rem;
}

.content .first-letter::first-letter {
    font-size: 2rem;
    font-weight: bold;
    float: left;
    line-height: 1;
    margin-right: 0.4rem;
    color: #57612D;
}

.full-width-video {
    display: flex;
    justify-content: center;
    margin: 3rem auto;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  

.pull-quote {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin: 3rem auto;
    max-width: 600px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #57612D;
    line-height: 1.4;
}

.pull-quote span {
    font-weight: 600;
}

.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
}

/* photo slider */
.photo-slider {
    max-width: 1300px;
    margin: 3rem auto;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .slider-image {
    flex: 2;
  }
  
  .slider-image img {
    width: 100%;
  }
  
  .slider-caption-container {
    flex: 1;
    border-left: 4px solid #57612D;
    padding-left: 1rem;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .slider-controls {
    margin: 1rem auto 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
  }
  
  .slider-controls button {
    background: #57612D;
    color: white;
    font-size: 1.7rem;
    border: none;
    padding: 0.5rem .8rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .slider-controls button:hover {
    background: #3c441f;
  }
  
  .green-link {
    color: #57612D;
    text-decoration: none;
  }
  
  .green-link:hover {
    text-decoration: underline;
  }

 /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  margin: auto;
  text-align: center;
}

.modal-image {
  display: inline-block;
}

/* The Close Button */
.close {
  color: #fff;
  display: block;
  font-size: 32px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  text-decoration: none;
  cursor: pointer;
} 

.infographic {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 3rem 0;
  text-align: center;
}

.infographic .photo {
  max-width: 100%;
  height: auto;
}

.infographic p {
  font-size: 0.8rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1300px;
    margin: 3rem auto;
    padding: 0 2rem;
  }
  
  .image-grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  

.site-footer {
    background-color: #57612D;
    color: white;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    margin-top: 1rem;
  }

    /* Responsive for mobile */
    @media (max-width: 800px) {
        .image-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      
      @media (max-width: 500px) {
        .image-grid {
          grid-template-columns: 1fr;
        }
      }

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    }

    @media (max-width: 600px) {
        .hero-title {
          font-size: 2rem;
        }
      
        .hero-subtitle {
          font-size: 1.2rem;
        }
      
        .container {
          flex-direction: column;
          gap: 1.5rem;
        }
      
        .sidebar {
          flex: none;
          width: 100%;
        }
      
        .sidebar-inner {
            border-left: none;
            padding: 0.5rem 1rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem 1rem;
            border-top: 2px solid #57612D;
            text-align: left;
          }
          
          
      
        .content {
          flex: none;
          display: block;
        }
      
        .all {
          margin: 0 auto;
          padding: 0 1rem;
        }

        .sidebar-inner h3 {
            margin: 0;
            font-size: 0.95rem;
          }
          
          .sidebar-inner p {
            margin: 0.2rem 0 0.5rem;
            font-size: 0.9rem;
          }
      }
      
    
  