/* Homepage Styles */


/* Hero Section */
.hero {
    background-color: transparent;
}

.hero .btn-primary {
    background-color: #DBC300;
    border-color: #DBC300;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: #c4b000;
    border-color: #c4b000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(219, 195, 0, 0.3);
}

.hero h1 {
    color: #DBC300;
}

/* Logo sizes */
.hero .vumop-logo {
    max-height: 120px;
}

.hero .map-logo {
    max-height: 300px;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .hero .vumop-logo {
        max-height: 80px;
    }
    
    .hero .map-logo {
        max-height: 200px;
    }
}

/* About Section */
.about {
    padding: 0;
}

.about-banner {
    background-color: #FFD700;
    padding: 40px 0;
    width: 100%;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

/* Mobile adjustments for about section */
@media (max-width: 768px) {
    .about-banner {
        padding: 30px 0;
    }
    
    .about-text {
        font-size: 1rem;
    }
}

/* Developed By Section */
.developed-by {
    background-color: white;
    padding: 40px 0;
}

.developed-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    font-weight: 400;
}

.developed-logo {
    max-height: 80px;
    max-width: 200px;
}

/* Mobile adjustments for developed by section */
@media (max-width: 767px) {
    .developed-by {
        padding: 30px 0;
    }
    
    .developed-logo {
        max-height: 60px;
        max-width: 150px;
    }
    
    .developed-text {
        font-size: 0.95rem;
    }
}

/* About2 Section - Mapové vrstvy */
.about2 {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.layers-overview {
    max-width: 800px;
    margin: 0 auto;
}

.layers-overview p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.layers-overview .btn {
    font-weight: bold;
    padding: 12px 30px;
    border-color: #DBC300;
    color: #DBC300;
}

.layers-overview .btn:hover {
    background-color: #DBC300;
    border-color: #DBC300;
    color: white;
}

/* Mobile adjustments for about2 section */
@media (max-width: 768px) {
    .about2 {
        padding: 30px 0;
    }
    
    .layers-overview p {
        font-size: 1rem;
    }
}

/* Footer adjustments */
.bg-secondary h4 {
    font-weight: 400 !important;
}

.bg-secondary a {
    text-decoration: none !important;
}

.bg-secondary .text-white:hover {
    color: #DBC300 !important;
    text-decoration: none;
}

.bg-secondary .link-warning:hover {
    text-decoration: none;
}

/* Vrstvy page styles */
.text-primary {
    color: #DBC300 !important;
}

/* Tlačítko pro vstup do mapy */
.btn-primary {
    background-color: #DBC300;
    border-color: #DBC300;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c4b000;
    border-color: #c4b000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(219, 195, 0, 0.3);
}


