body{
      background: linear-gradient(to right, #0f172a 55%, #88211e 100%);

} 
 
 .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('moto_hero.jpg') no-repeat center center/cover; /* Změna obrázku na moto_hero.jpg */
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 1.2em;
            max-width: 800px;
            margin: 0 auto;
        }

        .bike-gallery { /* Změna názvu třídy z car-gallery na bike-gallery */
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            padding: 50px 20px;
            background-color: #f4f4f4; /* Světlejší pozadí pro sekci */
        }

        .bike-card { /* Změna názvu třídy z car-card na bike-card */
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 300px;
            text-align: center;
            transition: transform 0.3s ease;
            color: #333; /* Barva textu pro karty */
        }

        .bike-card:hover {
            transform: translateY(-10px);
        }

        .bike-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .bike-card h3 {
            margin: 15px 0 10px;
            font-size: 1.5em;
        }

        .bike-card p {
            padding: 0 15px 20px;
            font-size: 0.95em;
            line-height: 1.6;
        }

        .requirements-section, .pricing-section, .registration-section {
            padding: 60px 20px;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            color: white;
        }

        .requirements-section h2, .pricing-section h2, .registration-section h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
            color: #facc15; /* Zlatá barva pro nadpisy */
        }

        .requirements-section ul {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            max-width: 800px; /* Zvětšení max-width pro delší text */
        }

        .requirements-section li {
            background-color: #1e293b;
            margin-bottom: 15px;
            padding: 20px;
            border-radius: 8px;
            text-align: left;
            font-size: 1.1em;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .requirements-section li::before {
            content: '✓';
            color: #22ee33;
            font-weight: bold;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2em;
        }

        .requirements-section li span {
            padding-left: 30px; /* Odsazení textu za fajfkou */
        }

        .requirements-section ul li a { /* Styly pro odkazy v požadavcích */
            color: #00b4d8;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .requirements-section ul li a:hover {
            color: #008c9e;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            background-color: #1e293b;
            border-radius: 8px;
            overflow: hidden;
        }

        .pricing-table th, .pricing-table td {
            padding: 15px;
            border-bottom: 1px solid #333;
            text-align: left;
        }

        .pricing-table th {
            background-color: #0f172a;
            color: #facc15;
            font-size: 1.2em;
        }

        .pricing-table tr:last-child td {
            border-bottom: none;
        }

        .pricing-table td {
            color: #e2e8f0;
        }

        .pricing-table tr:nth-child(even) {
            background-color: #1e293b;
        }
        .pricing-table tr:nth-child(odd) {
            background-color: #2a384b;
        }


        .registration-section form {
            background-color: #1e293b;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }

        .registration-section label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #facc15;
        }

        .registration-section input[type="text"],
        .registration-section input[type="email"],
        .registration-section input[type="tel"],
        .registration-section textarea,
        .registration-section select {
            width: calc(100% - 22px); /* Zohlednění paddingu a borderu */
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #555;
            border-radius: 5px;
            background-color: #0f172a;
            color: white;
            font-size: 1em;
        }
        .registration-section input[type="checkbox"] {
            margin-right: 10px;
        }
        .registration-section .checkbox-group {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }


        .registration-section button {
            background-color: #ff0000;
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
        }

        .registration-section button:hover {
            background-color: #cc0000;
        }

        .registration-section .message {
            margin-top: 20px;
            padding: 15px;
            border-radius: 5px;
            font-weight: bold;
        }

        .registration-section .message.success {
            background-color: #d4edda;
            color: #155724;
            border-color: #c3e6cb;
        }

        .registration-section .message.error {
            background-color: #f8d7da;
            color: #721c24;
            border-color: #f5c6cb;
        }

        /* Styly pro telefonní číslo v registrační sekci */
        .registration-section p a[href^="tel:"] {
            color: #00b4d8;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .registration-section p a[href^="tel:"]:hover {
            color: #008c9e;
        }

        /* Styly pro telefonní číslo v patičce */
        .footer a[href^="tel:"] {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a[href^="tel:"]:hover {
            text-decoration: underline;
        }

        /* Responsivní úpravy */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2em;
            }
            .hero-section p {
                font-size: 1em;
            }
            .bike-gallery { /* Změna názvu třídy */
                flex-direction: column;
                align-items: center;
            }
            .bike-card { /* Změna názvu třídy */
                width: 90%;
            }
            .requirements-section h2, .pricing-section h2{
                font-size: 2em;
            }
            .requirements-section li {
                font-size: 1em;
                padding: 15px;
            }
            .requirements-section li::before {
                left: 10px;
            }
            .requirements-section li span {
                padding-left: 25px;
            }
            .pricing-table th, .pricing-table td {
                padding: 10px;
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .hero-section h1 {
                font-size: 1.8em;
            }
            .hero-section p {
                font-size: 0.9em;
            }
            .bike-card { /* Změna názvu třídy */
                width: 100%;
            }
            .requirements-section h2, .pricing-section h2{
                font-size: 1.8em;
            }
        }