/*
Theme Name: Omakase Blog
Theme URI: https://omakase.ai/
Author: Omakase Team
Author URI: https://omakase.ai/
Description: A modern WordPress theme for Omakase.ai Voice blog, featuring e-commerce voice AI content with clean design and Tailwind CSS styling.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: omakase-blog
Tags: blog, e-commerce, voice-ai, tailwind, dark-theme, custom-post-types

This theme, like WordPress, is licensed under the GPL.
*/

/* Main styles are loaded from compiled Tailwind CSS */

/* Author Archive Styles */
.author-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #7c3aed; /* purple-600 */
    margin: 0 auto;
    display: block;
}

/* Scroll Progress Indicator Styles */
.scroll-nav-dot {
    z-index: 20;
    transition: all 0.3s ease;
    background-color: #4b5563; /* gray-600 */
}

.scroll-nav-dot.active {
    background-color: #9333ea; /* purple-600 */
    transform: translateX(-50%) scale(1.3);
}

.scroll-nav-dot.passed {
    background-color: #9333ea; /* purple-600 */
}

.scroll-nav-dot:hover {
    background-color: #9ca3af; /* gray-400 */
}

/* Progress line */
#progress-line {
    transition: height 0.3s ease;
}

/* Container */
#scroll-indicator-container {
    width: 100%;
}