/*
Theme Name: News Express
Theme URI: https://twojastrona.pl/news-express
Author: Janusz Borkowski
Author URI: https://nevv.pl
Description: Profesjonalny motyw WordPressa do publikacji newsów.
Version: 2.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: news-express
*/

/* --- RESET / BAZA --- */

html {
    box-sizing: border-box;
    overflow-y: scroll;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- GLOBALNE KONTEJNERY --- */

.main-container,
.content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* --- LINKI --- */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- FORMULARZE --- */

form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
}

form input[type="text"],
form input[type="email"],
form input[type="url"],
form input[type="search"],
form textarea,
form select {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 16px;
}

form textarea {
    min-height: 120px;
}

form input[type="submit"],
form button[type="submit"] {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

/* --- PRELOADER --- */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- ANIMACJE --- */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* --- SEO / UKRYTE --- */

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: 0;
}

/* --- RESPONSYWNOŚĆ --- */

@media (max-width: 768px) {
    .main-container,
    .content-wrapper {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}