/*
Theme Name: RAVA Servis
Description: Custom WordPress theme for RAVA Servis
Author: Custom Developer
Version: 1.0
*/
:root {
    --primary-blue: #1c61b6;
    --dark-gray: #2d2d2d;
    --light-bg: #f4f7f6;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
}

/* --- NAVIGÁCIA --- */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
}

.logo img {
    height: 50px; 
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

/* --- SPOLOČNÉ PRE SEKCIE --- */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-weight: 800;
}

/* --- SEKACIA: O NÁS (HLAVNÁ) --- */
#o-nas {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image {
    flex: 1;
    background-color: white;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-size: cover;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--dark-gray);
    font-size: 32px;
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 16px;
}

.why-us-title {
    background-color: var(--dark-gray);
    color: var(--white);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- SEKACIA: SLUŽBY --- */
#sluzby {
    background-color: var(--light-bg);
    max-width: 100%;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-header {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-weight: 800;
    font-size: 16px;
}

.service-img-placeholder {
    height: 150px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
}

.service-list {
    padding: 20px;
    background-color: #0fb8ff; 
    color: var(--white);
    flex-grow: 1;
}

.service-list ul {
    list-style: none;
}

.service-list ul li {
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.service-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- SEKACIA: KONTAKT --- */
#kontakt {
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
}

.contact-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* --- PÄTIČKA --- */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* --- RESPONZIVITA (MOBILES) --- */
@media (max-width: 768px) {
    #o-nas {
        flex-direction: column;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    nav {
        flex-direction: column;
        gap: 15px;
    }
}