/*
Theme Name: Winter Gemini Theme
Theme URI: https://winter.com.tr
Author: Winter Yazılım
Author URI: https://winter.com.tr
Description: Custom WordPress theme converted from React Winter Gemini project.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: winter-gemini
Tags: custom, tailwind, corporate
*/

/* Basic Reset & Tailwind directive placeholder */
/* We will load Tailwind via CDN for this conversion to ensure immediate visual fidelity without build steps for the user. */

/* Font Enforcements */
body {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-oswald {
    font-family: 'Oswald', sans-serif !important;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move half of the duplicated content */
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.hover\:pause-marquee:hover {
    animation-play-state: paused;
}

/* Custom scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Mobile Menu Fix */
#mobile-menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-menu-overlay li {
    border-bottom: 1px solid #f1f5f9;
}

#mobile-menu-overlay li a {
    color: #334155;
    /* slate-700 */
    display: block;
    padding: 12px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
}