/* Wtyczka Atrakcje - Style */
body {
    font-family: 'Lato', 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
}

img {
    border-radius: 0;
}

.logo-img {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 10px;
    max-width: 150px;
    height: auto;
    border-radius: 0;
    background-color: #ffffff;
    padding: 10px;
}

body .card-title a {
    color: #232323;
    font-size: 19px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000; /* Czarny */
}

.bg-light h1 {
    margin: 0;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

h2 i {
    color: #5c7cfb; /* Niebieski */
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

h3.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #5c7cfb; /* Niebieski */
    margin-bottom: 1rem;
}

.btn-group .btn {
    margin-right: 5px;
    border-radius: 0;
    font-family: 'Lato', 'Inter', sans-serif;
}

.btn-outline-primary {
    border-color: #5c7cfb; /* Niebieski */
    color: #5c7cfb;
}

.btn-outline-primary:hover {
    background-color: #4068e6; /* Jaśniejszy niebieski */
    color: white;
    border-color: #4068e6;
}

.btn-primary {
    background-color: #5c7cfb;
    border-color: #5c7cfb;
}

.btn-primary.disabled {
    background-color: #5c7cfb;
    border-color: #5c7cfb;
    opacity: 0.7;
}

.text-primary {
    color: #5c7cfb !important; /* Niebieski dla linków kategorii */
}

.text-muted {
    font-family: 'Lato', 'Inter', sans-serif;
}

.modal-content {
    border-radius: 0;
}

.modal-body img {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

.row-cols-1 img, .row-cols-sm-2 img, .row-cols-md-3 img {
    transition: transform 0.2s;
}

.row-cols-1 img:hover, .row-cols-sm-2 img:hover, .row-cols-md-3 img:hover {
    transform: scale(1.02);
}

.sidebar {
    background-color: #f8f9fa;
    border-radius: 0;
    padding: 1rem;
}

#map {
    width: 100%;
    border-radius: 0;
}

.map-address {
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    font-family: 'Lato', 'Inter', sans-serif;
}

.contact-info {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Lato', 'Inter', sans-serif;
}

.contact-info p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.contact-info i {
    color: #5c7cfb; /* Niebieski */
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.contact-info a {
    color: #5c7cfb; /* Niebieski dla linków */
    text-decoration: none;
}

.contact-info a:hover {
    color: #4068e6; /* Jaśniejszy niebieski */
    text-decoration: underline;
}

.badge-info {
    position: absolute;
    top: 10px;
    background-color: #720eec;
    padding: 10px;
    color: #ffffff;
}

@media (max-width: 576px) {
    img[style*="height: 400px"] {
        height: 250px !important;
    }

    .logo-img {
        max-width: 100px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h2 i {
        font-size: 1rem;
    }

    h3.contact-title {
        font-size: 1rem;
    }

    .btn-group .btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .modal-body img {
        max-height: 400px !important;
    }

    .row-cols-1 img {
        height: 150px !important;
    }

    #map {
        height: 200px !important;
    }
}