﻿ 
        :root {
            --m-black: #000000;
            --m-dark: #111111;
            --m-yellow: #ffffcc; /* Typická žlutá */
            --m-grey: #333333;
        }

        body {
            background-color: var(--m-black);
            color: #ffffff;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        /* Navbar */
        .navbar {
            background-color: rgba(0,0,0,0.95) !important;
            border-bottom: 2px solid var(--m-yellow);
        }
        .navbar-brand, .nav-link {
            color: #fff !important;
            font-weight: 700;
            letter-spacing: 2px;
        }
        .nav-link:hover {
            color: var(--m-yellow) !important;
        }

        /* Hero Section */
        .hero {
            height: 80vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('../images/header.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 5px solid var(--m-yellow);
        }
        .hero-content h1 {
            font-size: 5rem;
            font-weight: 900;
            text-shadow: 4px 4px var(--m-black);
        }

        /* Buttons */
        .btn-m-yellow {
            background-color: var(--m-yellow);
            color: #000;
            font-weight: 700;
            border-radius: 0;
            padding: 10px 30px;
            transition: 0.3s;
        }
        .btn-m-yellow:hover {
            background-color: #000;
            transform: scale(1.05);
        }

        /* Section Titles */
        .section-title {
            color: var(--m-yellow);
            border-left: 5px solid var(--m-yellow);
            padding-left: 15px;
            margin-bottom: 30px;
        }

        /* About Section text */
        .about-text p {
            text-transform: none; /* Normální text pro lepší čitelnost odstavců */
            font-family: Arial, sans-serif;
            line-height: 1.8;
            color: #aaaaaa;
        }
        .about-text p strong {
            color: #ffffff;
        }

        /* Gallery */
        .gallery-img {
            width: 100%;
            object-fit: cover;
            border: 1px solid var(--m-grey);
            filter: grayscale(100%); /* Černobílý efekt v základu */
            transition: all 0.4s ease;
        }
        .gallery-img:hover {
            filter: grayscale(0%); /* Zbarvení po najetí myší */
            border-color: var(--m-yellow);
            transform: scale(1.02);
            z-index: 2;
            position: relative;
        }
        .img-tall { height: 400px; }
        .img-short { height: 250px; }

        /* News Cards */
        .card {
            background-color: var(--m-dark);
            border: 1px solid var(--m-grey);
            border-radius: 0;
            transition: 0.3s;
        }
        .card:hover {
            border-color: var(--m-yellow);
        }
        .card-title { color: var(--m-yellow); }

        /* Tour Table */
        .tour-row {
            border-bottom: 1px solid var(--m-grey);
            padding: 15px 0;
        }
        .tour-row:hover {
            background-color: #1a1a1a;
        }

        footer {
            background-color: #000;
            padding: 50px 0;
            border-top: 1px solid var(--m-grey);
        }
    /* Vylepšené styly galerie */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--m-grey);
}

.gallery-img {
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-img { height: 508px; }
.side-img { height: 250px; }
.bottom-img { height: 300px; }

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-overlay span {
    color: #000;
    background: var(--m-yellow);
    padding: 5px 15px;
    font-weight: 700;
    transform: translateY(20px);
    transition: 0.3s;
}

.gallery-item:hover .gallery-img {
    filter: grayscale(0%) scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Úprava modalu pro Metallica styl */
#imageModal .modal-content {
    box-shadow: 0 0 50px rgba(255, 255, 0, 0.2);
}
    
    /* CSS Document */