/*
Theme Name: Mathius Studio
Theme URI: 
Author: Jhosep Steven Huali Cuyotupa
Description: Tema personalizado desarrollado desde cero e integrado con ChatBoot IA 
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: thestev
*/
@font-face {
  font-family: 'Unbounded';
  src: url('assets/fonts/Unbounded-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: 'Unbounded', sans-serif;
  
  font-size: 13px;
  color: #070706;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
}
#imagen-principal {
  width: 100%;
  height: auto;
  display: block;
}
#gallery-canvas {
  user-select: none;
  -webkit-user-drag: none;
}
a:hover{color: #30302a;}
a{color: #070706}
.bg-mathius2{background-color: #AFB0A2}
.bg-mathius{background-color: #F0EBE5;}
.text-brown {
    color: #F0EBE5;
}
.text-color2{color: #AFB0A2;}
.fs-7{font-size: 11px;}

.social-icons i:hover {
    color: #070706;
    transition: 0.3s;
}

.main-menu .navbar-nav > li > a, .social-icons a{
	color: #F0EBE5;
    text-decoration: none;
    transition: color 0.3s;
}
.main-menu .navbar-nav a:hover,
.main-menu .navbar-nav a:focus {
    color: #070706;
}
.navbar .dropdown-menu {
    --bs-dropdown-font-size: inherit;
    padding: 1rem;
}
/*.navbar{background-color: rgb(240, 235, 229, 0.05) !important;}*/
.logo-img{height: 110px;}


/* ==== HERO SECTION ==== */
.hero-section {
  height: 800px;
  overflow: hidden;
}

.hero-section img {
  object-fit: cover;
  object-position: center center;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.3));
  z-index: 2;
}

.btn-outline-light{font-size: 13px;}
.btn-outline-light:hover{
    background-color: #070706 !important;
    color: #F0EBE5 !important;
    border: 1px solid #070706 !important;
}

/* ==== SECCIÓN VIDEO ==== */

.btn-play:hover {
    opacity: 0.8}
.video-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.btn-play {
  width: 100%;
  height: 100%;
  background: #F0EBE5;
  color: #000;
  z-index: 2;
}
.video-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
  z-index: 1;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ==== PROYECTOS DESTACADOS ==== */
.h-min-100{min-height: 100%}
.h-min-50{min-height: 50%}

.project-gallery .primary img{height: 400px;}
.project-gallery .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.project-gallery:hover .overlay {
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.btn-thestev{background-color: #070706; font-size: 13px !important;color: #F0EBE5;}
.btn-thestev:hover{background-color: transparent; border: 1px solid #070706;}


/* ==== FOOTER ==== */
.copyright{border-top: 1px solid #a2a3a1;}

.footer a:hover {
  
  transition: 0.3s;
}

/* ÍCONOS REDES CIRCULARES */
.footer-social a{
  color: #070706;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #F0EBE5;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
}

.hero-site {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background: url('assets/img/ConocenosMathiusStudio.jpg') center/cover no-repeat;
  transform: scaleX(-1);
}
.hero-site::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1;
}

.hero2-site {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  background: url('assets/img/ConocenosMathiusStudio.jpg') center/cover no-repeat;
}
.hero2-site::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
  z-index: 1;
}

.miniatura {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity .3s;
}

.miniatura:hover {
  opacity: 1;
}
.miniatura.active {
  opacity: 1;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, .4);
  color: #fff;
  
  border: none;
  cursor: pointer;
  z-index: 2;
}

.gallery-next { right: 11px; }
.gallery-arrow.is-hidden {
  display: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-section {
        height: 600px;
    }
    h6{
        font-size: 0.85rem;
    }
    .main-menu{background-color: #afb0a2;}
    .navbar{box-shadow: none !important;} 
    .logo-img {height: 90px;}
    .btn-outline-light{
        font-size: 11px;
    }
    
    .h-min-50 {
        min-height: 100%;
    }
    .hero2-site{
        min-height: 60vh;
    }

}

@media (max-width: 576px) {
    .hero-section {
        height: 500px;
    }
    .test-perfil{font-size: 12px;}
    .test-perfil img{width: 90px;}
    .f-tecnica{font-size: 12px;}
}

.pagination{
    --bs-pagination-color: #070706;
    --bs-pagination-hover-color: #070706;
    --bs-pagination-focus-color: #070706;
    --bs-pagination-active-bg: #070706;
    --bs-pagination-active-border-color: #070706;
    --bs-pagination-font-size: 13px;
}

