body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #f9f8f3;
    color: #2c2c2c;
    margin: 0;
    padding: 20px;
}

.hub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
}

/* Основно заглавие на страницата */
.hub-title {
    text-align: center;
    color: #4a3b32;
    font-size: 2.2rem;
    margin-bottom: 30px;
    border-bottom: 3px double #8b0000;
    padding-bottom: 15px;
}

/* Заглавия на подкатегориите */
.category-title {
    color: #4a2c11;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    border-left: 4px solid #8b0000;
    padding-left: 10px;
}

/* Грид решетка за картичките */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* КАРТИЧКА С МАНАСТИРСКА АРКА */
.imgbox {
    background-color: #fffdfa;
    border: 3px solid #4a2c11;
    outline: 2px solid #8b0000;
    outline-offset: -6px;
    border-radius: 80px 80px 16px 16px / 50px 50px 16px 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.imgbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(139, 0, 0, 0.22);
    border-color: #2d1a0a;
}

/* 1. ЗАГЛАВИЕ В АРКАТА (Прибрано максимално нагоре) */
.imgbox-title-top {
    text-align: center;
    margin: 0;
    padding: 6px 16px 4px 16px;
    font-size: 0.92rem;
    line-height: 1.25;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5em;
}

.imgbox-title-top a {
    text-decoration: none;
    color: #2d1a0a;
    font-weight: bold;
    transition: color 0.2s ease;
}

.imgbox-title-top a:hover {
    color: #8b0000;
}

/* 2. СНИМКА В СРЕДАТА (Максимално фокус и обем) */
.imgbox-image-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 260px; /* Оптимална голяма височина за акцент */
    overflow: hidden;
    border-radius: 40px 40px 8px 8px / 25px 25px 8px 8px;
    border: 2px solid #8b0000;
    box-sizing: border-box;
    margin: 0 auto;
}

.imgbox-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.imgbox:hover .imgbox-image-wrapper img {
    transform: scale(1.06);
}

/* 3. МЕСТОПОЛОЖЕНИЕ ДОЛУ */
.imgbox-content {
    padding: 6px 4px 2px 4px;
    text-align: center;
}

.imgbox-location {
    font-size: 0.88rem;
    font-weight: 600;
    color: #8b0000;
    letter-spacing: 0.3px;
    display: inline-block;
}

/* Мобилна адаптация */
@media (max-width: 600px) {
    .hub-title { font-size: 1.6rem; }
    .grid-container { grid-template-columns: 100%; }
}