/* variables de colores */
:root{
    --color-fondo: #0f0f0f;
    --color-fondo-claro: #181818;
    --color-texto: #F5F5F5;
    --color-primario: #b71c1c;
    --color-secundario: #4F4F4F;
    --color-acento: #B8860B;
    --color-borde: #212121;
    --color-hover: #8B0101;
}
/* body y elementos globales */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Montserrat", sans-serif;
    background: #f5f6fa;
    transition: all 0.4s ease;
}

/* Hero Section VIDEO*/

.hero-section {
  margin: 0;
  padding: 0;
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.background-video {
  position: absolute;
  top: -65px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

.overlay-content {
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.overlay-content h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: "UnifrakturMaguntia", cursive;
  cursor: default;
  transition: all 0.4s ease;
}

h1:hover{
  color: var(--color-acento);
}
.overlay-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn-contacto {
  background-color: var(--color-primario);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-contacto:hover {
  background-color: var(--color-hover);
  color: white;
}

/* Fin Hero Section VIDEO*/

/* Swiper */

.swiper{
    width: 100%;
    padding: 20px;
    background-color: var(--color-fondo);
}
.swiper-slide{
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
}

.card-title {
    font-size: 2.5rem;
    margin-bottom: 8px;
    align-self: center;
    color: var(--color-primario);
    font-family: "UnifrakturMaguntia", cursive;
    transition: all 0.4s ease;
    cursor: default;
}
.card-title:hover{
  color: var(--color-acento);
}
.toggle-btn {
    align-self: center;
    justify-self: center;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    background-color: red;
    padding: 5px 12px ;
    border-radius: 50%;
    color: #ffffff;
}

.card-text {
  display: none;
  font-size: 18px;
  margin-top: 10px;
}

.card-text.show {
  display: block;
}

.card-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Color de los puntitos */
.swiper-pagination-bullet {
  background-color: #ccc; /* color normal */
}

/* Color del puntito activo */
.swiper-pagination-bullet-active {
  background-color: #007bff; /* color cuando está seleccionado */
}

/* Tablet */
@media (min-width: 768px) {
  .card-text {
    display: block;
  }

  .toggle-btn {
    display: none;
  }
}

/* Escritorio */
@media (min-width: 1024px) {
  .swiper-slide {
    max-width: 100%;
  }
}

/* Fin estilos base para swiper */

.div-objetos{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
    background-color: var(--color-fondo);
    color: var(--color-texto);
}
.btn-mi-trabajo{

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-mi-trabajo span{
    font-weight: 600;
    color: var(--color-acento);
    font-size: 1.2rem;
    text-decoration: underline;
}
.btn-mi-trabajo img{
    width: 50px;
    height: auto;
}
.btn-mi-trabajo:hover{
    color: var(--color-primario);
    transform: scale(1.1);
}

/* Seccion Info Tattoo Studio */
.seccion-info{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: var(--color-fondo);
    color: var(--color-texto);
    flex-wrap: wrap;
}
.seccion-info img{
    width: 400px;
    height: auto;
    border-radius: 10px;
}
.texto-info{
    max-width: 600px;
}
.texto-info h2{
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-primario);
    font-family: "UnifrakturMaguntia", cursive;
}
.texto-info p{
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
}
@media (max-width: 768px){
    .seccion-info{
        flex-direction: column;
    }
    .seccion-info img{
        width: 100%;
    }
}
@media (max-width: 480px){
    .overlay-content h1 {
        font-size: 2.5rem;
    }
    .overlay-content p {
        font-size: 1rem;
    }
    .btn-contacto {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
/* Fin Swiper */ 