body {
    background-image: url('https://img.freepik.com/premium-photo/wall-with-scratches-whitewash-texture-background_370059-5825.jpg?w=360');
    background-size: cover;
    background-attachment: fixed;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    padding: 20px;
}

#logo {
    width: 100px;
}

h1 {
    text-align: center;
    font-size: 42px;
    margin: 20px 0;
    padding: 10px;
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: #3a3a39;
    font-weight: bold;
}

p {
    font-size: 20px;
    text-align: justify;
    margin: 20px auto;
    max-width: 800px;
}

/* === КАРТА === */
.map-container {
    text-align: center;
    margin: 20px 0;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* === КОМПАКТЕН СЛАЙДЪР (КАТО ПАСАРЕЛ) === */
.my-slider-wrapper {
    max-width: 650px;
    margin: 30px auto;
}

.my-slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

/* === КАРТИЧКИ И ИЗОБРАЖЕНИЯ === */
.imgbox {
    height: 300px;
    width: 500px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
}

.imgbox img {
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

.imgbox:hover img {
    transform: scale(1.2);
}

/* === СПИСЪЦИ === */
ul {
    font-size: 20px; 
    margin: 10px auto;
    max-width: 800px;
    padding: 10px;
}

li {
    margin: 10px;
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
}

/* === LIGHTBOX ИЗОБРАЖЕНИЯ === */
.lb-image,
.lightbox img {
    object-fit: contain;
    width: 100% !important;
    height: auto !important;
}