/* Styl pro podstránku Indian Scout */
body {
    font-family: Arial, sans-serif;
    background-color: #e8f0f2;
    margin: 0;
    padding: 0;
}

header {
    background-color: #000000;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    color: #d42a2a;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #d42a2a;
}

.model-details {
    background-color: white;
    padding: 80px;
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.model-details img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.model-details h2 {
    color: #333;
}

.model-details p {
    font-size: 1.1em;
    color: #555;
}

.model-details ul {
    list-style-type: none;
    padding: 0;
}

.model-details ul li {
    font-size: 1em;
    color: #333;
}

.model-details ul li::before {
    content: "• ";
    color: #d42a2a;
}

/* Nový styl pro galerii */
.gallery {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery h2 {
    color: #333;
    margin-bottom: 20px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
    gap: 15px;
    justify-items: center;
}

.gallery-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-images img:hover {
    transform: scale(1.05);
}
