:root {
  --negro: #0a0a0a;
  --gris: #111;
  --dorado: #d4af37;
  --dorado-claro: #f5d76e;
  --blanco: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--negro);
  color: var(--blanco);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--dorado);
}

.logo img {
  height: 40px;
}

.links a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-weight: bold;
}

.links a:hover {
  color: var(--dorado);
}

.goldenboy {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 60px;
  padding: 80px 5%;
  min-height: 100vh;
  max-width: 1400px;
  margin: auto;
  background: linear-gradient(
    135deg,
    #0a0a0a 60%,
    #1a1405 100%
  );
}

.texto {
  flex: 1;
  max-width: 600px;
}

.imagen {
  flex: 1;
  display: flex;
  justify-content: center;
}

.imagen img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
}

.galeria {
  padding: 50px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 15px;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

  blockquote {
    font-size: 18px;
    padding: 10px;
    border-left: 3px solid var(--dorado);
    padding-left: 15px;
    margin-bottom: 20px;
  }

h2, h3 {
  color: var(--dorado);
}

section {
  width: 100%;
  box-sizing: border-box;
}

#about,
#stripper,
#tips,
#contacto {
  padding: 60px 5%;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
  #about,
  #stripper,
  #tips,
  #contacto {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .texto {
    max-width: 100%;
    text-align: center;
  }

  .imagen img {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .links a {
    margin: 10px 10px 0 0;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 20px;
  }

  p {
    font-size: 16px;
    line-height: 1.5;
  }
