body {
  margin: 0;
  font-family: 'Special Elite', monospace;
  background: #f4ecd9;
  color: #2e2e2e;
}

header {
  background: #f4ecd9;
  padding: 15px 0;
  border-bottom: 1px dashed #aaa;
}

.main-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  font-family: 'Special Elite', monospace;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.main-nav li a {
  text-decoration: none;
  color: #2e2e2e;
  position: relative;
  transition: color 0.3s;
}

.main-nav li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: #2e2e2e;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.main-nav li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.main-nav li a:hover {
  color: #416195;
}

.poster {
  max-width: 800px;
  margin: auto;
  padding: 5rem;
  position: relative;
  background: #f4ecd9;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.top-credits {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.title {
  font-size: 3rem;
  text-transform: lowercase;
  color: #416195;
  line-height: 1;
  margin: 10px 0;
}

.quote {
  font-size: 0.9rem;
  margin: 5px 0 5px 0;
}

.quote.right {
  text-align: right;
  float: right;
  clear: both;
}


.quote.left {
  text-align: left;
  float: none;
  clear: both;
}

.quote.small {
  font-size: 0.8rem;
}

.quote.right h4 a {
  font-family: 'Special Elite', monospace;
  font-size: 1rem;
  color: #416195;
  text-decoration: underline;
  transition: color 0.3s;
}

.quote.right h4 a:hover {
  color: #2e2e2e;
}

.strike {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

.handwritten {
  font-family: 'Indie Flower', cursive;
  font-size: 1.1em;
  color: #416195;
}

.photo-frame {
  position: relative;
  border: 10px solid #eee;
  padding: 5px;
  margin: 30px auto;
  width: 300px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  background: #fff;
}

.family-photo {
  width: 100%;
  display: block;
  border: 2px solid #d8cdbf;
}

.tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  width: 60px;
  height: 25px;
  background: rgba(200,200,200,0.6);
  border: 1px solid #999;
}

.leaf {
  width: 50px;
  height: 60px;
  background: url('leaf.png') no-repeat center center;
  background-size: contain;
  position: absolute;
}

.left-leaf {
  top: 250px;
  left: -20px;
}

.right-leaf {
  top: 100px;
  right: -20px;
}

.credits {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 20px;
  color: #999;
}

.Deto {
  display: flex;
  justify-content: space-between;
  gap: 2rem; /* espacio entre columnas */
  padding: 2rem;
  background-color: #f9f9f9;
  flex-wrap: wrap; /* para que se adapten en pantallas chicas */
}

.Col1, .Col2 {
  flex: 1;
  min-width: 300px; /* asegura que no se colapsen en pantallas chicas */
}

footer {
    padding: 40px 20px 20px 20px; /* Espaciado interno */
    display: flex;
    justify-content: center;
}

.footer-content {
    max-width: 900px; /* Ajusta según necesites */
    width: 100%;
    text-align: left;
    font-family: 'Courier New', Courier, monospace; /* Coincide con tu estilo actual */
    line-height: 1.6;
    color: #222;
    background-color: white;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 8px;
}
