body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #007bff;
    padding: 20px 0;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards 0.5s;
    background: linear-gradient(to bottom, #007bff, #00aaff);
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    
}

.logo {
    width: 250px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards 1s;
}

nav ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards 1.5s;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.order-btn {
    background-color: #ff6600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.order-btn:hover {
    background-color: #cc5200;
}

.hero {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(0, 123, 255, 0.7), rgba(0, 170, 255, 0.7)), 
                url('../img/pozadi2.png'); /* Nahraď cestu obrázkem */
    background-size: cover;
    background-position: center;
    color: white;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards 2s;
}

.hero-plosiny {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(0, 123, 255, 0.7), rgba(0, 170, 255, 0.7)), 
                url('../img/pozadi-plosiny.png'); /* Nahraď cestu obrázkem */
    background-size: cover;
    background-position: center;
    color: white;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards 2s;
}

.hero-voziky {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(0, 123, 255, 0.7), rgba(0, 170, 255, 0.7)), 
                url('../img/pozadi-voziky.png'); /* Nahraď cestu obrázkem */
    background-size: cover;
    background-position: center;
    color: white;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards 2s;
}

.hero-dodavky {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(0, 123, 255, 0.7), rgba(0, 170, 255, 0.7)), 
                url('../img/pozadi-dodavky.png'); /* Nahraď cestu obrázkem */
    background-size: cover;
    background-position: center;
    color: white;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards 2s;
}

.hero-atrakce {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(0, 123, 255, 0.7), rgba(0, 170, 255, 0.7)), 
                url('../img/pozadi-atrakce.png'); /* Nahraď cestu obrázkem */
    background-size: cover;
    background-position: center;
    color: white;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards 2s;
}

.hero-bagry {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(0, 123, 255, 0.7), rgba(0, 170, 255, 0.7)), 
                url('../img/pozadi-bagry.png'); /* Nahraď cestu obrázkem */
    background-size: cover;
    background-position: center;
    color: white;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards 2s;
}
.services {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background-color: #f8f9fa;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards 2.5s;
}

.service-card {
    text-align: center;
    width: 200px;
    opacity: 0;
    animation: slideIn 1s ease-in-out forwards;
}

.service-card img {
    width: 100px;
    margin-bottom: 10px;
}

.equipment {
    padding: 50px 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards 3s;
}

.equipment-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.equipment-item {
    background-color: #007bff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: zoomIn 1s ease-in-out forwards 3.5s;
}

.equipment-item:hover {
    transform: scale(1.05);
}

.equipment-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.equipment-title {
    opacity: 0;
    animation: fadeInUp 2s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.equipment-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.equipment-btn:hover {
    background-color: #cc5200;
    transform: scale(1.1);
}

.equipment-btn:active {
    transform: scale(1);
}

.location {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards 4s;
}

.location-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.location-details iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
    border-radius: 10px;
}

.contact-info {
    text-align: left;
    max-width: 400px;
}

footer {
    background-color: #007bff;
    color: white;
    padding: 10px 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards 4.5s;
}

.footer-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    max-width: 400px;
    text-align: left;
    margin: 0;
}

.contact-info h3 {
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-info p {
    margin: 3px 0;
    font-size: 18px;
}

footer p {
    font-size: 18px;
    margin-top: 5px;
}

/* Responzivní úpravy pro telefony */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-info {
        text-align: center;
        max-width: 100%;
    }

    .container {
        width: 100%;
    }

    .logo {
        width: 120px;
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .services {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
    }

    .service-card {
        width: 90%;
    }

    .equipment-grid {
        flex-direction: column;
        align-items: center;
    }

    .equipment-item {
        width: 90%;
    }

    .location-details {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/*  styly pro formulář */
.order-form {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards 2s;
    font-family: 'Montserrat', sans-serif;
}

.order-form label {
    font-weight: bold;
    margin-top: 15px;
    display: block;
}

.order-form input,
.order-form select,
.order-form button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}


.add-device-btn {
    background-color: #28a745 !important; 
    color: white !important;
    padding: 8px 15px !important; 
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-weight: bold!important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
    display: block !important; 
    margin: 10px auto !important; 
    width: fit-content !important; 
    
}

.add-device-btn:hover {
    background-color: #218838 !important; 
    transform: scale(1.05) !important;
}

.remove-device-btn {
    background-color: red !important; 
    color: white !important;
    padding: 8px 15px !important; 
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-weight: bold!important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
    display: block !important; 
    margin: 10px auto !important; 
    width: fit-content !important; 
    
}

.remove-device-btn:hover {
    background-color: darkred !important; 
    transform: scale(1.05) !important;
}


.order-form button {
    background-color: #ff6600;
    color: white;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.order-form button:hover {
    background-color: #cc5200;
}

.order-form input[type="date"] {
    cursor: pointer;
}

.order-form input,
.order-form select {
    font-size: 16px;
}

.order-form button:disabled {
    background-color: #ccc;
}


/* Styl pro výběr typu zařízení */
#deviceType {
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#deviceSelection {
    margin-top: 20px;
}

/* Možnosti zařízení pro dynamický výběr */
.device-option {
    padding: 10px;
    margin: 5px 0;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.device-option:hover {
    background-color: #0056b3;
}


.platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 0;
}

.platform-box {
    display: flex;
    align-items: center;
    background-color: #007bff;
    color: white;
    border-radius: 15px;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.5s ease-in-out forwards;
}

.platform-box:nth-child(1) {
    animation-delay: 2.5s;
}

.platform-box:nth-child(2) {
    animation-delay: 3s;
}

.platform-box img {
    width: 300px;
    border-radius: 10px;
    margin-right: 20px;
}

.platform-info {
    flex: 1;
}

.order-button {
    background-color: #ff6600;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.order-button:hover {
    background-color: #cc5200;
    transform: scale(1.1);
}

/* ANIMACE */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responzivní úpravy */
@media (max-width: 768px) {
    .platform-box {
        flex-direction: column;
        text-align: center;
    }

    .platform-box img {
        margin-bottom: 10px;
    }
}

.reklama {
    text-align: center;
    padding: 20px;
}

.partner-logo img {
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-logo img:hover {
    transform: scale(1.1);
}



