* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'sans-serif';
  background-color: #111;
  color: white;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.49);
  transition: background-color 0.7s ease;
  z-index: 1000;
  padding: 14px 0;
}

header.scroll {
  background-color: #000;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 90px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s ease;
}

nav a:not(.logo):hover {
  text-decoration: line-through;
  color: white;
}

.logo img {
  height: 60px;
  display: block;
}

.banner {
  height: 110vh;
  position: relative;
  background: url('imagenes/tattoo-machine-7027596_1280.jpg') no-repeat center center/cover;
  margin-top: -80px;
  z-index: 0;
  
}

.banner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
  z-index: 1;
}

.contenido-banner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding-top: 80px;
}

.contenido-banner h1 {
  font-size: 7em;
  margin-bottom: 16px;
  font-family: 'Pirata One', cursive;
  color: #ffffff;
}

.contenido-banner p {
  font-size: 28px;
  margin-bottom: 22px;
  text-align: center;
  font-weight: bold;
}

.contenido-banner a.boton {
  text-decoration: none;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.contenido-banner a.boton:hover {
  background-color: white;
  color: black;
}

.sobre-nosotros {
  font-size: 28px;
  margin-bottom: 7px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding-top: 30px;
  font-weight: bold;
}

.contenido {
  display: flex;
  align-items: stretch;
}

.imagen {
  display: flex;
  width: 600px;
  height: 375px;
  align-items: left;
  margin-left: 30px;
  margin-right: 20px;
  margin-top: 26px;

}
.sobre-nosotros p {
  padding-left: 20px;
  margin-left: 20px;
  margin-right: 70px;
  text-align: justify;
  font-family: 'Edu QLD Beginner', cursive;
  font-size: 24px;
  color:#9c9c9c;
  margin-top: 5px;
  margin-bottom: 25px;
  font-weight: lighter;
}

.artistas {
  font-size: 28px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding-top: 30px;
  font-weight: bold;
}

.descripcion-art {
  text-align: center;
  font-family: 'Edu QLD Beginner', cursive;
  font-size: 24px;
  color:#9c9c9c;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: lighter;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 650px);
  width: 100vw;
  height: 100vh;
  flex: 1;
}

.flip-card {
  perspective: 1000px;
  width: 100%;
  height: 100%;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 1s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-back {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-align: center;
  padding: 20px;
  font-family: 'Edu QLD Beginner', cursive;
}

footer {
    background-color: #000; 
    color: #fff; 
    padding: 40px 20px;
    line-height: 1.6;
    border-top: 1px solid #333;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 20px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
    font-size: 1.1em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    font-family: 'Edu QLD Beginner', cursive;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Edu QLD Beginner', cursive;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section p {
    color: #999;
    font-size: 1em;
    font-family: 'Edu QLD Beginner', cursive;
}

.footer-section.connect {
    text-align: right; 
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 1em;
    color: #777;
    font-family: 'Edu QLD Beginner', cursive;
}