body {
  margin: 0;
  padding: 0;
  font-family: 'Garamond', serif;
  background-color: #1a1a1a;
  color: #f0e6d2;
}

.foto-perfil {
  width: 150px;
  height: 150px;
  margin: 30px auto 0 auto; /* CENTRADO */
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f0e6d2;
  box-shadow: 0 0 10px rgba(255, 87, 51, 0.5);
  background-color: #fff;
}

.foto-perfil img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  text-align: center;
  margin-top: 10px;
}

header h1 {
  font-size: 50px;
  margin-bottom: 5px;
}

header p {
  font-style: italic;
  color: #ccc;
  font-size: 30px;
}

.perfil {
  text-align: center;
  margin-top: 20px;
}

.perfil ul {
  font-size: 20px;
  list-style-type: none;
}

.menu {
  text-align: center;
  margin-top: 30px;
}

.menu a {
  margin: 0 15px;
  color: #f0e6d2;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.menu a:hover {
  border-bottom: 1px solid #f0e6d2;
}

.contenido-principal {
  display: flex;
  height: 100vh;
  background-color: #121212;
}

/* ---------------------------- */
/* MENU LATERAL */
.menu-lateral {
  width: 25%;
  background-color: #1f1f1f;
  padding: 20px;
  box-sizing: border-box;
}

.menu-lateral nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-lateral a {
  color: #f0e6d2;
  text-decoration: none;
  font-size: 25px;
}

.menu-lateral a:hover {
  color: #ff5733;
}

/* ---------------------------- */
/* PERFIL FEED */
.feed {
  width: 75%;
  padding: 20px;
  overflow-y: auto;
  box-sizing: border-box;
}

/* TARJETAS PUBLICACION */
.publicacion {
  background-color: #262626;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: #f0e6d2;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* FOTO + NOMBRE TARJETAS */
.publicacion-encabezado {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar-publicacion {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.nombre-publicacion {
  font-weight: bold;
  font-size: 1em;
}

/* CUERPO TARJETAS */
.publicacion-cuerpo p {
  margin: 10px 0;
  line-height: 1.5;
  font-size: 20px;
}

.publicacion-cuerpo img {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}

/* LIKES REACCIONES */
.publicacion-pie {
  font-size: 0.9em;
  color: #999;
  margin-top: 10px;
}

.like-texto {
  color: #ccc;
  font-weight: bold;
  font-size: 18px;
}

/* ---------------------------- */
/* RELACION */
.tarjeta-relacion {
  background-color: #262626;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #f0e6d2;
  margin-bottom: 25px;
  box-shadow: 0 0 10px rgba(255, 87, 51, 0.4);
}

.avatares-relacion {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.avatar-relacion {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff5733;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

.relacion-texto p {
  margin: 8px 0;
  font-size: 1.1em;
  color: #f0e6d2;
}

.relacion-frase {
  font-style: italic;
  color: #ccc;
  font-size: 27px !important;
}

/* ---------------------------- */
/* RECUERDOS */
.galeria-recuerdos .grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.grid-galeria img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 8px rgba(255, 87, 51, 0.3);
  transition: transform 0.3s ease;
}

.grid-galeria img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  width: 70vw;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 87, 51, 0.6);
  animation: fadeIn 0.3s ease;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ---------------------------- */
/* AMIGOS */
.feed {
  width: 75%;
  padding: 20px;
  overflow-y: auto;
  box-sizing: border-box;
  background-color: #121212;
}

.tarjeta-amigo {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  background-color: #262626;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  color: #f0e6d2;
}

.avatar-amigo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff5733;
  margin-right: 15px;
}

.info-amigo {
  flex-grow: 1; /* ESPACIO ENTRE IMAGEN Y BOTON */
}

.info-amigo h3 {
  margin: 0;
  font-size: 1.3em;
  font-weight: bold;
}

.info-amigo p {
  margin: 2px 0 0 0;
  font-size: 20px;
  color: #aaa;
  font-style: italic;
}

.btn-seguir {
  background-color: #ff5733;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.btn-seguir:hover {
  background-color: #a52d0f;
}

