@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
* {
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* MENÚ */
.navbar {
    background-color: rgba(30, 35, 38, 0.8);
}

.navbar-brand img {
    height: auto;
    max-height: 95px; 
    width: auto;
}

.navbar-nav {
    margin: 0 auto;
    text-align: center;
    font-size: 1.3rem;
}

.nav-link {
    color: #fff !important;
    margin: 0 10px;
    transition: color 0.5s ease;
}

.nav-link:hover {
    color: #1CB698 !important;
}


/* SECCIÓN INICIO */
#inicio {
    background: linear-gradient(to top, rgba(30, 35, 38, 0.8), rgba(30, 35, 38, 0.2)), 
                url('../Bompton.Tattoo/IMG/fondo.png') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
}

#inicio .rounded-circle {
    border: 13px solid #1CB698;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

#inicio .lead {
    font-size: 20px;
}

#inicio .redes a {
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
}

#inicio .redes a:hover {
    background-color: #1CB698;
}

/* SECCIÓN SOBRE MI */
#sobremi {
    background-color: #1e2326 !important;
    color: #fff;
    padding: 50px 20px;
}

#sobremi h2 {
    font-family: 'Righteous', sans-serif;
    font-size: 48px;
    margin-bottom: 30px;
}

#sobremi h3 {
    text-align: center;
}

#sobremi span { 
    text-align: justify;
}

#sobremi p span {
    color: #1CB698;
    font-weight: bold;
}

#sobremi ul {
    list-style: none;
    padding: 0;
}

#sobremi ul li {
    margin: 10px 0;
}

#sobremi ul li strong {
    color: #1CB698;
    width: 130px;
    display: inline-block;
}

/* SECCIÓN SKILLS */
#skills {
    background-color: #252a2e;
    color: #fff;
    padding: 50px 20px;
}
#skills h2 {
    font-family: 'Righteous', sans-serif;
    font-size: 48px;
    margin-bottom: 30px;
}

#skills ul {
    list-style: none;
    padding: 0;
}

#skills ul li {
    margin: 10px 0;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

#skills ul li::before {
    content: ''; 
    width: 5px;
    height: 5px;
    background-color: #1CB698;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* SECCIÓN PORTAFOLIO */
#portfolio {
    background-color: #1e2326;
    color: #fff;
    padding: 50px 20px;
}

#portfolio h2 {
    font-family: 'Righteous', sans-serif;
    font-size: 48px;
    margin-bottom: 30px;
}

.card {
    background-color: #252a2e;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

.card img {
    border-radius: 0;
}

/* SECCIÓN PORTAFOLIO */
.portafolio {
    background-color: #252a2e;
    color: #fff;
    padding: 50px 20px;
}

.portafolio .contenido-seccion {
    max-width: 1100px;
    margin: auto;
}

.portafolio h2 {
    font-size: 48px;
    font-family: 'Righteous';
    text-align: center;
    padding: 20px 0;
}

.portafolio .galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.portafolio .galeria .card {
    position: relative;
    max-width: 340px;
    height: fit-content;
    margin: 50px;
    cursor: pointer;
}

.portafolio .galeria .card img {
    width: 100%;
    display: block;
}

/* ===================== */
/* LIGHTBOX */
/* ===================== */

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
}

/* Contenido */
.lightbox-content {
  display: flex;
  gap: 30px;
  max-width: 900px;
  width: 90%;
  background: #1e2326;
  padding: 30px;
  border-radius: 15px;
  position: relative;
}

.lightbox-info {
  color: #fff;
  max-width: 350px;
}

.lightbox-info h3 {
  font-family: "Righteous";
  font-size: 26px;
  margin-bottom: 15px;
}

.lightbox-info p {
  margin: 8px 0;
  font-size: 15px;
  color: #ccc;
}

.tattoo-descripcion {
  margin-top: 15px;
  font-style: italic;
  color: #aaa;
}

/* Animación (solo al abrir; la imagen igual cambia bien) */
@keyframes zoomIn {
  from { transform: scale(0.96); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

#lightbox .lightbox-content {
  animation: zoomIn 0.2s ease;
}

/* ===================== */
/* BOTONES SLIDER */
/* ===================== */

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

#lightbox-prev { left: 25px; }
#lightbox-next { right: 25px; }

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===================== */
/* ZOOM + PAN */
/* ===================== */

.lightbox-figure {
  position: relative;
  width: 100%;
  max-width: 450px;
  overflow: hidden;
  border-radius: 10px;
}

#lightbox-img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  user-select: none;
  -webkit-user-drag: none;

  cursor: zoom-in;
  transform-origin: center center;
  transition: transform 0.08s linear;
}

#lightbox-img.is-zoomed {
  cursor: grab;
}

#lightbox-img.is-zoomed:active {
  cursor: grabbing;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {
  .lightbox-content {
    flex-direction: column;
    align-items: center;
  }
  .lightbox-info {
    max-width: 100%;
  }
  #lightbox-img {
    max-width: 100%;
  }
  .lightbox-figure {
    max-width: 100%;
  }
}

/* SECCIÓN CALENDARIO */
#calendario {
    background-color: #1e2326;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

#calendario h2 {
    font-family: 'Righteous', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: #1CB698;
}

#calendario p {
    font-size: 18px;
    color: #bbbdbe;
    margin-bottom: 40px;
}

#calendario .contenedor-calendario {
    max-width: 1000px;
    margin: auto;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#calendario .contenedor-calendario:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(28, 182, 152, 1);
}

#calendario iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* SECCIÓN CONTACTO */
.Contacto {
    background-color: #1c1e20;
    color: #fff;
    padding: 50px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Contacto.target {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5); 
}

.Contacto .contenido-seccion {
    max-width: 880px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.Contacto h2 {
    font-size: 48px;
    font-family: 'Righteous', cursive;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 40px;
    color: #ffffff;
}

.Contacto .fila {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.Contacto .col {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: rgba(37, 42, 46, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.Contacto .col input,
.Contacto .col textarea {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    margin-bottom: 20px;
    background-color: #2e3438;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.Contacto .col input:focus,
.Contacto .col textarea:focus {
    background-color: #3a4045;
    outline: none;
}

.Contacto .col textarea {
    resize: vertical;
    min-height: 150px;
}

.menu-categoria {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.menu-categoria label {
    font-size: 1rem;
    font-weight: bold;
    color: #bbbdbe;
}

.menu-categoria select {
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #1CB698;
    border-radius: 8px;
    background-color: #2e3438;
    color: white;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.menu-categoria select:hover {
    background-color: #1CB698;
    color: #1e2326;
    border-color: #1e2326;
}

.Contacto button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #1CB698;
    color: #1e2326;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
    width: fit-content;
}

.Contacto button:hover {
    background-color: #15967d;
    transform: translateY(-3px);
}

.Contacto button i {
    margin-left: 10px;
    font-size: 20px;
}

.Contacto button .overlay {
    display: none;
}

footer{
    background-color: #252a2e;
    color: #fff;
    padding: 50px 0 30px 0;
    text-align: center;
    position: relative;
}

footer .redes{
    margin-bottom: 20px;
}

footer .redes a{
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
}
footer .arriba{
    display: block;
    width: 50px;
    height: 50px;
    background-color:#1CB698;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 20px;
}

/* SECCIÓN RESPONSIVE */
/* MEDIA QUERIES */
@media (max-width: 768px) {
    #inicio h1 {
        font-size: 28px;
    }

    #inicio .lead {
        font-size: 16px;
    }

    #sobremi .contenedor-intereses {
        justify-content: center;
    }

    #skills h2, #portfolio h2 {
        font-size: 36px;
    }
}


