/*
Theme Name: ModernNews
Theme URI: https://anycast.id
Author: M Alhuda
Author URI: https://anycast.id
Description: Sebuah tema WordPress profesional berbasis Tailwind CSS dengan fitur dark mode yang futuristik.
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: modernnews
Requires at least: 6.0
Requires PHP: 8.3.20
Tags: modern, blog, news, tailwind, dark-mode, custom-colors
*/

/* Smooth scrolling and transitions */
html {
	scroll-behavior: smooth;
}

.view-section {
	animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hide scrollbar for clean horizontal scroll */
.no-scrollbar::-webkit-scrollbar {
	display: none;
}

.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* WP specifics */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignleft {
	float: left;
	margin: 0.5em 1em 0.5em 0;
}

.alignright {
	float: right;
	margin: 0.5em 0 0.5em 1em;
}