/*
Theme Name: DM Turbo
Theme URI: https://dmturbo.com/dm-turbo
Author: DM Turbo
Author URI: https://dmturbo.com
Description: DM Turbo is a minimal custom classic theme for WordPress
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dm-turbo
Tags: custom-logo, custom-menu, translation-ready
*/

/* Styling is handled with Tailwind CSS utility classes (see functions.php).
   Add any custom CSS you need below. */


html {
	scroll-behavior: smooth;
}

/* WPML language switcher (see inc/wpml.php). */
.dm-lang-switcher ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dm-lang-switcher a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: 'Oxygen', ui-sans-serif, system-ui, sans-serif;
	font-size: 0.875rem;
	line-height: 1;
	color: #727272;
	text-decoration: none;
}

.dm-lang-switcher a:hover,
.dm-lang-switcher .is-active a {
	color: #654aff;
}

.dm-lang-switcher .is-active a {
	font-weight: 700;
	cursor: default;
}

.dm-lang-flag {
	display: block;
	width: 18px;
	height: 12px;
	border-radius: 2px;
	object-fit: cover;
}

/* Keep the switcher aligned to the reading edge in RTL locales. */
.rtl .dm-lang-switcher ul {
	flex-direction: row-reverse;
}