/*
Theme Name: Kintama Tattoo
Theme URI: https://kintamatattoo.com
Author: Trae AI
Author URI: https://kintamatattoo.com
Description: Un tema oscuro y agresivo para estudio de tatuajes, con soporte para Tailwind CSS y animaciones AOS.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, photography, portfolio, grid-layout
Text Domain: kintama-tattoo
*/

body {
    background-color: #050505;
    color: #e5e5e5;
    background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    font-family: 'Roboto Mono', monospace;
}

.text-glow {
    text-shadow: 0 0 15px rgba(225, 29, 72, 0.6);
}

/* Custom hover effects */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.btn-glitch {
    position: relative;
}

.btn-glitch:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    width: 100%;
    height: 100%;
    background: rgba(225, 29, 72, 0.5);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    animation: glitch-anim 0.3s infinite;
}

@keyframes glitch-anim {
    0% { opacity: 1; transform: translate(0); }
    20% { opacity: 0.8; transform: translate(-2px, 2px); }
    40% { opacity: 1; transform: translate(-2px, -2px); }
    60% { opacity: 0.8; transform: translate(2px, 2px); }
    80% { opacity: 1; transform: translate(2px, -2px); }
    100% { opacity: 1; transform: translate(0); }
}

/* Accordion Styles (for FAQ) */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-item.active .accordion-content {
    max-height: 500px; /* Ajustar si el contenido es más largo */
}
.accordion-item.active .bi-chevron-down {
    transform: rotate(180deg);
}
