/*
Theme Name: Harmonic Consultant Theme
Theme URI: https://hasyimjourney.com
Author: Harmonic Consultant
Author URI: https://hasyimjourney.com
Description: Custom WordPress theme for Harmonic Consultant built with TailwindCSS and Alpine.js.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: harmonic-theme
Tags: custom-theme, tailwindcss, alpinejs
*/

/* 
   Tailwind CSS is loaded via CDN in header.php for this theme.
   This file is primarily for Theme definition.
*/
body {
    display: block;
}

/* =========================================
   Custom CSS from Original HTML
   ========================================= */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f3ff;
}

::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d28d9;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-dark {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #7c3aed;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(124, 58, 237, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Reveal Animation Classes */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Text Gradient */
.text-gradient {
    background: linear-gradient(to right, #4c1d95, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Vertical Marquee */
@keyframes marquee-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.animate-marquee-vertical {
    animation: marquee-vertical 40s linear infinite;
}

.animate-marquee-vertical:hover {
    animation-play-state: paused;
}

/* Image sizing strategy for Clients */
.client-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
    flex-shrink: 0;
    margin: 0 20px;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.animate-marquee:hover,
.animate-marquee-reverse:hover {
    animation-play-state: paused;
}