/*
Theme Name: Oaza Theme
Theme URI: https://example.com/oaza-theme
Author: Junie
Author URI: https://example.com
Description: Nová WordPress šablona vytvořená pro projekt Oaza.
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: oaza-theme
*/

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #ffffff;
    color: #3f3f3f;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    font-size: 16px;
}

.site-placeholder {
    max-width: 1000px;
    padding: 2rem;
}

.site-logo {
    margin-bottom: 3rem;
}

.site-logo img {
    max-width: 100%;
    height: auto;
    width: 600px;
    display: block;
    margin: 0 auto;
}

.logo-subtitle {
    font-size: 1.8rem;
    color: #377FC8;
    margin-top: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.placeholder-content p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: #3f3f3f;
    font-weight: 500;
}

.contacts-heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #377FC8;
}

.contacts-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #FBC02D;
}
.contact-info p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #3f3f3f;
}

p.contact-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 0.25rem 0 !important;
    color: #333;
    line-height: 1.2;
}

.contact-role {
    font-size: 1.1rem;
    margin: 0 0 2rem 0 !important;
    color: #377FC8;
    font-weight: 600;
}

.contact-info a {
    color: #377FC8;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}
