#contenedor {  
margin: auto;
width: 95%;
max-width: 1280px;
}

/* ================= MOBILE FIRST ================= */
body {
  display: flex;
  justify-content: center;
  margin: 0;
}
header {
  display: flex;           
  justify-content: space-between; 
  align-items: flex-start;       
}

h1 {  
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 2rem; 
  font-family: "Merriweather", serif;
  font-size: 2.5rem;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.imatge-escena {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  font-size: 1rem;
  font-family: "Merriweather", serif;

}
a:link,
a:visited {
  color: #593d1e;     
  text-decoration: none;
}

a:hover,
a:active {
  color: #a96c38;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
}
.contenidor1 {
  display: flex;
  flex-direction: column;
  background-color: beige;
  margin: 1rem 0rem 1rem 0rem;
  padding-top: 0.1rem;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}

.contenidor2 {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 1rem;
}

.elizabeth {
  float: left ;
  margin-left: 0.7rem;
  margin-right: 0.7rem;
  
}

.Darcy {
  float: left;
  margin-left: 0.7rem;
  margin-right: 0.7rem;
}

.article1, .article2 {
  background-color: bisque;
}

.contenidor2 p {
  margin: 0.5rem;
}

.contenidor2 h2 {
  padding-left: 1rem;
}

footer {
  text-align: left;
  font-size: 1rem;
  font-family: "Merriweather", serif;
  margin-top: 1rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid #000;        
}


/* ================= BREAKPOINTS ================= */

@media screen and (min-width: 850px) {
  .menu {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin-top: 2rem;
  }
}

@media screen and (min-width: 850px) {
  #contenedor {
    width: 80%;
  }
}

/* ===========================================
   >= 1280px → Los dos bloques en ROW
=========================================== */
@media screen and (min-width: 1280px) {

  .contenidor2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }

  .contenidor2 article {
    flex: 1;
  }
}

/* ===========================================
   >= 1366px → Ajustes tipográficos
=========================================== */
@media screen and (min-width: 1366px) {

  h1 {
    font-size: 2.2rem;
  }

  nav a {
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
}

/* ===========================================
   >= 1920px → Aumentan MÁRGENES (no contenido)
=========================================== */
@media screen and (min-width: 1920px) {

  /* El contenedor sigue midiendo 1280px */
  #contenedor {
    width: 80%;  /* no aumentamos max-width */
  }

  header h1 {
    font-size: 2.5rem;
  }

  nav a {
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
  }

  .contenidor2 img {
    width: 250px;
  }
}
