/*
Theme Name: MasekTransport
Author: Václav Mašek
Description: Luxusní firemní šablona s full width sliderem, parallax efekty a elegantním ceníkem.
Version: 4.0
*/

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0b0b0b;
    color: #f2f2f2;
}

/* HLAVIČKA */
header {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
    border-bottom: 3px solid #d4af37;
}

header h1 {
    color: #d4af37;
    font-size: 36px;
    margin: 0;
}

header p {
    margin-top: 10px;
    font-size: 18px;
}

/* FULL WIDTH SLIDER */
.slider {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 520px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
    filter: brightness(0.55);
}

.slide.active {
    opacity: 1;
}

/* TEXT NA SLIDERU */
.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.slider-text h2 {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 10px;
}

.slider-text p {
    font-size: 22px;
}

/* PARALLAX SEKCE */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    color: #d4af37;
    font-size: 36px;
    font-weight: bold;
}

/* OBSAH */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

h2 {
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

/* KARTY */
.card {
    background: #141414;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    margin-bottom: 30px;
    box-shadow: 0 0 25px rgba(212,175,55,0.15);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* LUXUSNÍ TABULKOVÝ CENÍK */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: #141414;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(212,175,55,0.15);
}

.pricing-table thead {
    background: linear-gradient(90deg, #d4af37, #b8922a);
}

.pricing-table thead th {
    padding: 18px;
    color: #000;
    font-size: 20px;
    text-align: left;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #333;
    transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(212,175,55,0.08);
}

.pricing-table td {
    padding: 16px;
    font-size: 18px;
    color: #e6e6e6;
}

.pricing-note {
    margin-top: 15px;
    font-size: 16px;
    color: #d4af37;
    text-align: center;
}

/* GALERIE */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery img {
    width: 31%;
    border-radius: 8px;
    border: 2px solid #d4af37;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.8s ease;
}

.gallery img.visible {
    opacity: 1;
    transform: scale(1);
}

/* PATIČKA */
footer {
    background: #000;
    padding: 30px;
    text-align: center;
    border-top: 3px solid #d4af37;
}
