/* Основни стилове */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(180deg, #e0f7fa 0%, #f7fbff 100%);
    color: #1a3557;
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
}

header {
    background: url('images/sea.png') center center/cover no-repeat;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 2px 16px rgba(0,150,199,0.10);
    padding-top: 0;
    padding-bottom: 0;
}

.top-bar {
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 0 0 32px;
    position: relative;
    z-index: 2;
}

.phones {
    display: flex;
    gap: 16px;
    align-items: center;
}

.phone-number {
    color: #0096c7;
    font-weight: bold;
    font-size: 1.08em;
    text-decoration: none;
    letter-spacing: 1px;
    background: #e0f7fa;
    padding: 6px 18px;
    border-radius: 18px;
    transition: background 0.2s;
    margin-bottom: 2px;
    display: inline-block;
}
.phone-number:hover {
    background: #caf0f8;
    color: #0077a7;
}

.header-content {
    background: none;
    width: 100%;
    text-align: center;
    padding-top: 24px;
    padding-bottom: 10px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.site-title {
    color: #fff;
    text-decoration: none;
    font-size: 2.1em;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 10px;
    display: inline-block;
    transition: color 0.2s;
    cursor: pointer;
    background: rgba(0,0,0,0.08);
}
.site-title:hover {
    color: #fff;
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

nav button, .dropbtn {
    background: #fff;
    color: #0096c7;
    border: 2px solid #0096c7;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 1em;
    cursor: pointer;
    font-weight: 600;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    min-width: 120px;
    margin: 0 2px;
}
nav button:hover, .dropbtn:hover {
    background: #caf0f8;
    color: #0096c7;
    border: 2px solid #0096c7;
}

nav button.contacts-btn {
    background: #e0f7fa;
    color: #0096c7;
    border: 2px solid #0096c7;
    font-weight: 700;
}
nav button.contacts-btn:hover {
    background: #caf0f8;
    color: #0096c7;
}

.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn {
    background: #fff;
    color: #0096c7;
    border: 2px solid #0096c7;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 1em;
    cursor: pointer;
    font-weight: 600;
    min-width: 120px;
    margin: 0 2px;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0,150,199,0.13);
    border-radius: 14px;
    z-index: 1;
    margin-top: 6px;
}
.dropdown-content a {
    color: #0096c7;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    border-radius: 8px;
    font-size: 0.98em;
    font-weight: 500;
    transition: background 0.2s;
}
.dropdown-content a:hover {
    background: #caf0f8;
}
.show {
    display: block;
}

/* Бутон с три черти */
.burger-btn {
    background: #fff;
    border: 2px solid #0096c7;
    border-radius: 18px;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    margin-left: 8px;
    transition: background 0.2s, border 0.2s;
}
.burger-btn:hover {
    background: #caf0f8;
    border-color: #48cae4;
}
.burger-btn.contacts-btn {
    background: #0096c7;
    border: none;
    border-radius: 22px;
    padding: 6px 12px;
    color: #fff;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.burger-btn.contacts-btn:hover {
    background: #48cae4;
    color: #222b3a;
}
.burger-line {
    width: 20px;
    height: 3px;
    background: #fff;
    margin: 2px 0;
    border-radius: 2px;
    display: block;
}
.burger-dropdown {
    display: inline-block;
    position: relative;
}
.dropdown-content.burger-content {
    left: auto;
    right: 0;
}

/* Основно съдържание */
main {
    max-width: 1200px;
    margin: 48px auto 48px auto;
    padding: 0 24px;
}
section {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 6px 32px rgba(0,150,199,0.10);
    margin-bottom: 44px;
    padding: 38px 32px 32px 32px;
    transition: box-shadow 0.2s;
    position: relative;
}
section:hover {
    box-shadow: 0 12px 48px rgba(0,150,199,0.18);
}
section h2 {
    color: #0096c7;
    margin-top: 0;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

img {
    margin: 18px 18px 18px 0;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,150,199,0.10);
    max-width: 350px;
    height: auto;
    display: inline-block;
    vertical-align: top;
}
.main-photo {
    display: block;
    margin: 0 auto 24px auto;
    max-width: 450px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,150,199,0.13);
}
.home-center {
    text-align: center;
    margin-top: 40px;
}

/* Галерия и модал за снимки */
.gallery-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}
.main-photo-large-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}
.main-photo-large {
    width: 100%;
    max-width: 820px;
    max-height: 70vh;
    height: auto;
    border-radius: 18px;
    margin-bottom: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    cursor: pointer;
    object-fit: contain;
    display: block;
    background: transparent;
}
.gallery-thumbnails {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 420px;
    justify-content: center;
}
.thumbs-wrapper {
    display: flex;
    overflow: hidden;
    gap: 8px;
    flex: 0 0 auto;
    width: 300px;
}
.thumbnail {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s;
    flex-shrink: 0;
}
.thumbnail.selected,
.thumbnail:focus {
    border: 2px solid #0096c7;
}
.thumb-arrow {
    background: #0096c7;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.thumb-arrow:hover {
    background: #48cae4;
}

/* Модал */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center; align-items: center;
}
.modal-content {
    display: block;
    margin: auto;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 32px #0008;
    object-fit: contain;
    background: transparent;
}
.close {
    position: absolute;
    top: 20px; right: 35px;
    color: #fff; font-size: 40px; font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}
.arrow {
    position: absolute;
    top: 50%;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    z-index: 1002;
    padding: 8px 16px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: background 0.2s;
}
.arrow:hover {
    background: rgba(0,0,0,0.5);
}
.arrow.left {
    left: 30px;
}
.arrow.right {
    right: 30px;
}

/* --- КОМПАКТЕН, ПОДРЕДЕН ФУТЪР --- */
.footer-bottom-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 12px;
    background: #f7f7f7;
    border-top: 1px solid #ddd;
    padding: 14px 0 6px 0;
    font-size: 0.92em;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.footer-menu {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex: 1 1 600px;
    max-width: 60%;
    justify-content: center;
    align-items: flex-start;
}
.footer-menu-col {
    min-width: 100px;
    margin: 0 1px;
    text-align: left;
}
.footer-menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}
.footer-menu-col li {
    margin-bottom: 2px;
}
.footer-menu-col span {
    font-weight: 600;
    color: #1976d2;
    font-size: 1em;
    margin-bottom: 4px;
    display: block;
}
.footer-menu-col a {
    color: #222;
    text-decoration: none;
    font-size: 0.97em;
    transition: color 0.2s;
    padding: 0;
    line-height: 1.5;
}
.footer-menu-col a:hover {
    color: #1976d2;
    text-decoration: none;
}
.footer-contacts-form {
    display: flex;
    flex-direction: row;
    flex: 1 1 300px;
    gap: 12px;
    max-width: 38%;
    justify-content: center;
    align-items: flex-start;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    gap: 2px;
    min-width: 120px;
}
.footer-contacts h3 {
    margin-bottom: 6px;
    font-size: 1em;
    color: #1976d2;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.footer-contacts a {
    display: block;
    margin-bottom: 2px;
    color: #1976d2;
    text-decoration: none;
    font-size: 0.97em;
}
.footer-contacts a:hover {
    text-decoration: underline;
}
.footer-fb-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0 0 0;
    width: 100%;
}
.footer-fb-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px #1976d222;
}
.footer-fb-logo:hover {
    box-shadow: 0 2px 12px #1976d2;
}
.footer-contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    min-width: 120px;
    max-width: 160px;
    font-size: 0.97em;
}
.footer-contact-form h3 {
    margin-bottom: 6px;
    font-size: 1em;
    color: #1976d2;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.footer-contact-form form input,
.footer-contact-form form textarea {
    width: 100%;
    margin-bottom: 4px;
    padding: 3px 6px;
    font-size: 0.93em;
    border: 1px solid #bbb;
    border-radius: 4px;
    background: #fff;
}
.footer-contact-form form textarea {
    min-height: 28px;
    max-height: 48px;
}
.footer-contact-form form button {
    width: 100%;
    padding: 5px 0;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.97em;
    cursor: pointer;
    margin-top: 2px;
}
.footer-copy-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    font-size: 0.92em;
    color: #888;
    text-align: center;
    width: 100%;
}
@media (max-width: 1100px) {
    .footer-bottom-flex {
        flex-wrap: wrap;
        gap: 0 8px;
    }
    .footer-menu-col {
        min-width: 90px;
    }
}
@media (max-width: 900px) {
    .footer-bottom-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px 0;
        max-width: 98vw;
        padding: 12px 0 6px 0;
    }
    .footer-menu {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0 8px;
        margin-bottom: 8px;
    }
    .footer-contacts-form {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px 0;
        margin-left: 0;
    }
}
@media (max-width: 600px) {
    .footer-bottom-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 8px 0;
    }
    .footer-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .footer-menu-col {
        min-width: 100px;
        text-align: left;
    }
}

/* Контакти секция */
.contacts-flexbox-modern {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.contacts-phones-modern {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
    max-width: 320px;
    margin-right: 16px;
}
.phones-title {
    font-size: 1.22em;
    font-weight: 700;
    color: #0096c7;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.phone-number-modern {
    font-size: 1.18em;
    font-weight: 600;
    color: #1976d2;
    text-decoration: none;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    background: #e0f7fa;
    border-radius: 16px;
    padding: 7px 16px;
    transition: background 0.2s, color 0.2s;
}
.phone-number-modern:hover {
    background: #caf0f8;
    color: #0096c7;
}
.phone-icon-blue {
    font-size: 1.25em;
    margin-right: 8px;
    color: #0096c7;
}
.contact-note-bold {
    margin-top: 14px;
    font-size: 0.93em;
    color: #1976d2;
    font-weight: 500;
    background: #e0f7fa;
    border-radius: 8px;
    padding: 7px 12px;
}
.contact-form-modern {
    flex: 1 1 320px;
    min-width: 240px;
    max-width: 340px;
    background: linear-gradient(135deg, #e0f7fa 60%, #b2eaff 100%);
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0,150,199,0.13);
    padding: 10px 24px 8px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 2px solid #b2eaff;
}
.contact-form-modern input,
.contact-form-modern textarea {
    border-radius: 12px;
    border: 1.5px solid #b2eaff;
    background: #fff;
    padding: 7px 10px;
    font-size: 1em;
    margin-bottom: 8px;
    transition: border 0.2s;
}
.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    border: 1.5px solid #0096c7;
    outline: none;
}
.contact-form-modern button {
    background: #0096c7;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 9px 0;
    font-size: 1.08em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px #b2eaff55;
}
.contact-form-modern button:hover {
    background: #1976d2;
}
@media (max-width: 800px) {
    .contacts-flexbox-modern {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .contacts-phones-modern,
    .contact-form-modern {
        max-width: 100%;
        margin-right: 0;
    }
}

/* Локация секция */
.location-flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
}
.location-address {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.12em;
    font-weight: 600;
    color: #1976d2;
    text-align: center;
    min-height: 100px;
}
.location-map {
    flex: 1 1 420px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.location-map iframe {
    width: 100%;
    max-width: 420px;
    min-width: 220px;
    height: 260px;
    border-radius: 14px;
    border: 0;
    box-shadow: 0 2px 16px #0096c722;
}
@media (max-width: 900px) {
    .location-flex-row {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .location-map {
        justify-content: center;
    }
    .location-map iframe {
        max-width: 100%;
        min-width: 0;
        height: 200px;
    }
    .location-address {
        max-width: 100%;
        min-width: 0;
        margin-bottom: 10px;
    }
}

/* Заглавие "Как да стигнем до къщата?" най-вляво и артистично */
.location-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.25em;
    font-weight: 700;
    color: #0096c7;
    margin: 0 0 18px 0;
    letter-spacing: 1px;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: left;
    font-style: italic;
    font-family: 'Segoe Script', 'Comic Sans MS', cursive, sans-serif;
}

/* Как да стигнем до къщата – бутони и текст */
.how-btns-vertical {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 32px auto;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.how-btn-vertical {
    width: 100%;
    border-radius: 0;
    padding: 12px 0 12px 0;
    box-sizing: border-box;
    text-align: left;
    background: #e0f7fa;
    color: #0096c7;
    border: none;
    font-size: 1.08em;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid #b2eaff;
}
.how-btn-vertical:hover,
.how-btn-vertical.active {
    background: #b2eaff;
    color: #1976d2;
}
.travel-info-section-vertical {
    display: none;
    width: 100%;
    background: #f7fbff;
    border-radius: 0 0 14px 14px;
    box-shadow: none;
    padding: 18px 0 10px 0;
    margin: 0;
    animation: fadeInDown 0.3s;
    box-sizing: border-box;
}
.travel-info-section-vertical.active {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
}
.travel-info-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 24px;
}
.travel-info-text {
    flex: 2 1 60%;
    font-size: 1.05em;
    color: #1a3557;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
}
.travel-info-gallery {
    flex: 1 1 40%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}
.travel-thumb {
    width: 70px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px #0096c722;
    cursor: pointer;
}
@media (max-width: 900px) {
    .how-btns-vertical {
        max-width: 100%;
    }
    .travel-info-section-vertical.active,
    .travel-info-row {
        flex-direction: column;
        gap: 10px;
    }
    .travel-info-gallery {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 6px;
    }
    .travel-thumb {
        width: 54px;
        height: 36px;
    }
}

/* Анимация за показване на текст */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: translateY(0);}
}
/* ...existing code... */
.location-flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;              /* по-малко разстояние между адреса и картата */
    margin-bottom: 28px;
    max-width: 700px;       /* по-малка ширина за по-централно позициониране */
    margin-left: auto;
    margin-right: auto;
}
.location-address {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.12em;
    font-weight: 600;
    color: #1976d2;
    text-align: center;
    min-height: 100px;
}
.location-map {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-map iframe {
    width: 100%;
    max-width: 320px;
    min-width: 180px;
    height: 220px;
    border-radius: 14px;
    border: 0;
    box-shadow: 0 2px 16px #0096c722;
}
/* ...existing code... */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px; /* по-малко разстояние между бутоните */
    margin-bottom: 0;
    flex-wrap: nowrap; /* не позволява пренасяне на нов ред */
    flex-shrink: 1;
}

nav button, .dropbtn {
    background: #fff;
    color: #0096c7;
    border: 2px solid #0096c7;
    padding: 4px 10px;      /* по-малък падинг */
    border-radius: 16px;    /* по-малък радиус */
    font-size: 0.95em;      /* по-малък шрифт */
    min-width: 80px;        /* по-малка минимална ширина */
    cursor: pointer;
    font-weight: 600;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin: 0 1px;
}
/* ...existing code... */

/* Контейнер за снимка и описание */
.main-intro {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

/* Снимката вляво */
.main-photo {
    max-width: 350px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,150,199,0.13);
    margin: 0;
}

/* Описанието вдясно, в светлосин прозорец с бял текст */
.main-desc {
    background: linear-gradient(135deg, #4fc3f7 80%, #0096c7 100%);
    color: #fff;
    border-radius: 22px;
    padding: 28px 28px 22px 28px;
    font-size: 1.08em;
    font-weight: 400;
    box-shadow: 0 2px 16px #0096c733;
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-desc a {
    color: #fff;
    text-decoration: underline;
}
.main-desc a:hover {
    color: #e0f7fa;
}

/* За мобилни устройства – подрежда едно под друго */
@media (max-width: 900px) {
    .main-intro {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .main-desc {
        max-width: 100%;
        padding: 18px 12px 14px 12px;
    }
    .main-photo {
        max-width: 100%;
    }
}
/* ...existing code... */
.main-intro {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 24px; /* по-малък gap */
    margin-bottom: 24px;
}

.main-photo {
    max-width: 440px; /* по-голяма снимка */
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,150,199,0.13);
    margin: 0;
}

.main-desc {
    background: linear-gradient(135deg, #4fc3f7 80%, #0096c7 100%);
    color: #fff;
    border-radius: 18px;
    padding: 16px 16px 12px 16px; /* по-малък падинг */
    font-size: 0.97em;            /* по-малък шрифт */
    font-weight: 400;
    box-shadow: 0 2px 16px #0096c733;
    max-width: 320px;             /* по-тесен правоъгълник */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.4;             /* по-компактен ред */
}

.main-desc p {
    margin-bottom: 10px;
    margin-top: 0;
}

.main-desc a {
    color: #fff;
    text-decoration: underline;
}
.main-desc a:hover {
    color: #e0f7fa;
}

@media (max-width: 900px) {
    .main-intro {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .main-desc {
        max-width: 100%;
        padding: 12px 8px 10px 8px;
    }
    .main-photo {
        max-width: 100%;
    }
}
/* ...existing code... */
.main-desc {
    background: linear-gradient(135deg, #4fc3f7 80%, #0096c7 100%);
    color: #f3fbff; /* по-мек бял цвят */
    border-radius: 18px;
    padding: 16px 24px 14px 24px;
    font-size: 1.03em;           /* малко по-голям и четим */
    font-weight: 400;            /* нормален, не bold */
    font-family: 'Segoe UI', Arial, sans-serif;
    box-shadow: 0 2px 16px #0096c733;
    max-width: 420px;            /* по-широк правоъгълник */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.5;            /* по-мек ред */
    letter-spacing: 0.01em;
}

.main-desc p {
    margin-bottom: 10px;
    margin-top: 0;
}

.main-desc a {
    color: #fff;
    text-decoration: underline;
}
.main-desc a:hover {
    color: #e0f7fa;
}
/* ...existing code... */
.main-desc {
    background: linear-gradient(135deg, #4fc3f7 80%, #0096c7 100%);
    color: #f3fbff;
    border-radius: 18px;
    padding: 16px 32px 14px 32px;
    font-size: 0.97em;           /* остава малък и компактен */
    font-weight: 400;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-shadow: 0 2px 16px #0096c733;
    max-width: 600px;            /* по-широк правоъгълник */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.4;
    letter-spacing: 0.01em;
}
/* ...existing code... */
.main-photo {
    max-width: 440px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,150,199,0.13);
    margin: 0;
}

.main-desc {
    background: linear-gradient(135deg, #4fc3f7 80%, #0096c7 100%);
    color: #f3fbff;
    border-radius: 18px;
    padding: 16px 24px 14px 24px;
    font-size: 0.97em;
    font-weight: 400;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-shadow: 0 2px 16px #0096c733;
    max-width: 440px;   /* същата ширина като снимката */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.4;
    letter-spacing: 0.01em;
}
/* ...existing code... */
/* ...existing code... */
.location-map iframe {
    width: 100%;
    max-width: 540px;   /* по-широка карта */
    min-width: 220px;
    height: 260px;
    border-radius: 14px;
    border: 0;
    box-shadow: 0 2px 16px #0096c722;
}
/* ...existing code... */
.footer-bottom-flex {
    background: #e0f7fa; /* бледо син фон */
    border-top: 1px solid #b2eaff;
    /* останалите свойства остават */
}
/* ...existing code... */
.footer-bottom-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 4px; /* по-малък хоризонтален gap */
    background: #e0f7fa;
    border-top: 1px solid #b2eaff;
    padding: 14px 0 6px 0;
    font-size: 0.92em;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
/* ...existing code... */
.footer-bottom-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 12px; /* намали хоризонталния gap между менюто и контактите */
    background: #e0f7fa;
    border-top: 1px solid #b2eaff;
    padding: 14px 0 6px 0;
    font-size: 0.92em;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-contacts-form {
    margin-left: 0; /* премахни евентуален ляв margin */
}
/* ...existing code... */
/* Основни стилове за десктоп */
body {
  font-size: 18px;
  /* ... */
}

/* --- MOBILE ONLY STYLES --- */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 0 4px;
    overflow-x: hidden;
  }
  header {
    min-height: 120px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding-bottom: 0;
  }
  .top-bar {
    padding: 4px 0 0 8px;
  }
  .phones {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    width: 100%;
  }
  .phone-number {
    font-size: 1em;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 0;
    min-width: unset;
    flex: 1 1 auto;
    text-align: center;
  }
  .header-content {
    padding-top: 12px;
    padding-bottom: 6px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .site-title {
    font-size: 1.3em;
    margin-bottom: 4px;
    background: none !important;
    color: #0096c7 !important;
    font-weight: 700;
    text-shadow: none;
  }
  nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0;
    width: 100%;
    margin-bottom: 0;
  }
  nav button, .dropbtn {
    font-size: 0.98em;
    padding: 6px 12px;
    min-width: 0;
    border-radius: 10px;
    margin: 4px 0 0 0;
    background: #e0f7fa;
    color: #0096c7;
    border: 1.5px solid #0096c7;
    box-shadow: none;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
    display: block;
  }
  nav button:hover, .dropbtn:hover {
    background: #b2eaff;
    color: #1976d2;
  }
  .dropdown-content {
    min-width: 100vw;
    left: 0;
    border-radius: 0 0 14px 14px;
  }
  .burger-btn {
    display: flex !important;
    background: #fff;
    border: 2px solid #0096c7;
    border-radius: 18px;
    padding: 6px 12px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    margin-left: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px #0096c733;
  }
  .burger-line {
    width: 20px;
    height: 3px;
    background: #0096c7;
    margin: 2px 0;
    border-radius: 2px;
    display: block;
  }
  .main-intro {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }
  .main-photo {
    max-width: 100vw;
    border-radius: 12px;
  }
  .main-desc {
    max-width: 100vw;
    padding: 10px 6px;
    font-size: 1em;
    border-radius: 12px;
  }
  section {
    border-radius: 14px;
    padding: 14px 6px;
    margin-bottom: 18px;
  }
  .gallery-main, .main-photo-large-wrapper {
    max-width: 100vw;
    padding: 0;
  }
  .main-photo-large {
    max-width: 100vw;
    border-radius: 10px;
  }
  .gallery-thumbnails, .thumbs-wrapper {
    max-width: 100vw;
    gap: 4px;
  }
  .thumbnail {
    width: 60px;
    height: 40px;
    border-radius: 4px;
  }
  .contacts-flexbox-modern,
  .footer-bottom-flex,
  .footer-menu,
  .footer-contacts-form {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px 0 !important;
    max-width: 100vw !important;
  }
  .footer {
    font-size: 12px;
    padding: 6px 0;
  }
  /* Футър меню в 3 компактни колони, малък шрифт и малък line-height */
  .footer-bottom-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 2px 0;
    padding: 4px 0 2px 0;
    font-size: 0.78em !important;
    line-height: 1.05 !important;
  }
  .footer-menu {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 !important;
    width: 100%;
    max-width: 100vw;
    margin-bottom: 0;
    padding: 0;
  }
  .footer-menu-col {
    min-width: 0;
    max-width: 100vw;
    margin: 0;
    padding: 0 1px;
    text-align: left;
    font-size: 0.78em !important;
    line-height: 1.05 !important;
  }
  .footer-menu-col ul {
    margin-bottom: 0;
    padding: 0;
  }
  .footer-menu-col li {
    margin-bottom: 0;
  }
  .footer-menu-col a,
  .footer-contacts a {
    font-size: 0.78em !important;
    line-height: 1.05 !important;
    padding: 0;
  }
  .footer-menu-col span {
    font-size: 0.80em !important;
    margin-bottom: 1px;
  }
  .footer-contacts-form {
    flex-direction: column !important;
    gap: 6px 0 !important;
    margin-left: 0;
    max-width: 100vw;
  }
  .footer-contact-form,
  .footer-contacts {
    min-width: 0;
    max-width: 100vw;
  }
  .location-flex-row {
    flex-direction: column;
    gap: 8px;
    max-width: 100vw;
  }
  .location-map iframe {
    max-width: 100vw;
    min-width: 0;
    height: 160px;
  }
  .how-btns-vertical {
    max-width: 100vw;
    gap: 0;
  }
  .how-btn-vertical {
    font-size: 1em;
    padding: 10px 0;
  }
  .travel-info-section-vertical.active,
  .travel-info-row {
    flex-direction: column;
    gap: 8px;
  }
  .travel-thumb {
    width: 44px;
    height: 28px;
  }
}
/* --- END MOBILE ONLY STYLES --- */

/* Скрий бургер бутона на десктоп */

nav button, .dropbtn {
    background: #fff;
    color: #0096c7;
    border: 2px solid #0096c7;
    padding: 4px 8px;      /* по-малък падинг */
    border-radius: 12px;   /* по-малък радиус */
    font-size: 0.93em;     /* по-малък шрифт */
    min-width: 70px;       /* по-малка минимална ширина */
    cursor: pointer;
    font-weight: 600;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin: 0 1px;
}
@media (max-width: 600px) {
  .dropdown-content,
  .dropdown-content.burger-content {
    left: 0 !important;
    right: auto !important;
    min-width: 100vw;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 8px 32px rgba(0,150,199,0.13);
    position: static;
  }
}
@media (max-width: 600px) {
  .dropdown-content {
    min-width: 100vw;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 8px #0096c722;
    padding: 0;
    border: 1px solid #b2eaff;
    position: static;
    margin-top: 0;
    background: #f7fbff;
  }
  .dropdown-content a {
    font-size: 0.97em;
    padding: 8px 10px;
    border-radius: 0;
    margin: 0;
    line-height: 1.1;
    color: #0096c7;
    background: none;
    border-bottom: 1px solid #e0f7fa;
    transition: background 0.18s, color 0.18s;
  }
  .dropdown-content a:last-child {
    border-bottom: none;
  }
  .dropdown-content a:hover {
    background: #e0f7fa;
    color: #1976d2;
  }
}
.burger-line {
  width: 20px;
  height: 3px;
  background: #0096c7;   /* син цвят */
  margin: 2px 0;
  border-radius: 2px;
  display: block;
  transition: background 0.2s;
}
@media (max-width: 600px) {
  .footer-bottom-flex,
  .footer-menu,
  .footer-contacts-form,
  .footer-contacts,
  .footer-contact-form {
    display: none !important;
  }
  .footer-copy-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100vw !important;
    min-height: 36px !important;
    text-align: center !important;
    font-size: 1em !important;
    color: #1976d2 !important;
    background: #fff !important;
    padding: 8px 0 6px 0 !important;
    border-top: 1px solid #b2eaff !important;
    margin: 0 auto !important;
    position: static !important;
    z-index: 1000 !important;
  }
  .footer-copy {
    color: #1976d2 !important;
    font-size: 1em !important;
    letter-spacing: 0.01em !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
@media (max-width: 600px) {
  .phones {
    gap: 2px !important;
  }
  .phone-number {
    font-size: 0.92em !important;
    padding: 2px 6px !important;
    border-radius: 8px !important;
    min-width: unset !important;
    max-width: 90vw !important;
    word-break: break-all !important;
  }
}
nav button, .dropbtn {
    background: linear-gradient(90deg, #4fc3f7 0%, #0096c7 100%);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 1.08em;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 2px 8px #0096c733;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
    margin: 0 4px;
    letter-spacing: 0.5px;
    outline: none;
}
nav button:hover, .dropbtn:hover {
    background: linear-gradient(90deg, #0096c7 0%, #4fc3f7 100%);
    color: #fff;
    box-shadow: 0 4px 16px #0096c799;
    transform: translateY(-2px) scale(1.04);
}
.burger-btn {
    background: linear-gradient(135deg, #4fc3f7 60%, #0096c7 100%);
    border: none;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    margin-left: 8px;
    box-shadow: 0 2px 8px #0096c733;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.burger-btn:hover {
    background: linear-gradient(135deg, #0096c7 60%, #4fc3f7 100%);
    box-shadow: 0 4px 16px #0096c799;
    transform: scale(1.08) rotate(-3deg);
}
.burger-line {
    width: 24px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    display: block;
    transition: background 0.2s;
}
/* Компактни и стилни бутони за апартаментите */
nav button, .dropbtn {
    background: linear-gradient(90deg, #4fc3f7 0%, #0096c7 100%);
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.95em;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 1px 4px #0096c722;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
    margin: 0 2px;
    letter-spacing: 0.2px;
    outline: none;
    min-width: 70px;
    min-height: 32px;
}
nav button:hover, .dropbtn:hover {
    background: linear-gradient(90deg, #0096c7 0%, #4fc3f7 100%);
    color: #fff;
    box-shadow: 0 2px 8px #0096c799;
    transform: translateY(-1px) scale(1.03);
}

/* Компактен бургер бутон */
.burger-btn {
    background: linear-gradient(135deg, #4fc3f7 60%, #0096c7 100%);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 4px #0096c722;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    margin-left: 6px;
}
.burger-btn:hover {
    background: linear-gradient(135deg, #0096c7 60%, #4fc3f7 100%);
    box-shadow: 0 2px 8px #0096c799;
    transform: scale(1.06) rotate(-2deg);
}
.burger-line {
    width: 18px;
    height: 2.5px;
    background: #fff;
    margin: 2px 0;
    border-radius: 2px;
    display: block;
    transition: background 0.2s;
}
.burger-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #4fc3f7 60%, #0096c7 100%) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 0 0 6px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 1px 4px #0096c722 !important;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s !important;
    cursor: pointer !important;
}
.burger-btn:hover {
    background: linear-gradient(135deg, #0096c7 60%, #4fc3f7 100%) !important;
    box-shadow: 0 2px 8px #0096c799 !important;
    transform: scale(1.06) rotate(-2deg) !important;
}
.burger-line {
    width: 22px !important;
    height: 3px !important;
    background: #fff !important;
    margin: 2px 0 !important;
    border-radius: 2px !important;
    display: block !important;
    transition: background 0.2s !important;
}
@media (min-width: 601px) {
  .footer-copy-row {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-shadow: none !important;
  }
  .footer-copy {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
  }
}
@media (min-width: 601px) {
  .footer-copy-row,
  .footer-copy-row * {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-shadow: none !important;
    min-height: 0 !important;
    height: auto !important;
  }
}
@media (min-width: 601px) {
  footer {
    background: none !important;
    border: none !important;
  }
}
@media (min-width: 601px) {
  .site-title {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-bottom: 10px !important;
  }
}
@media (max-width: 600px) {
  .travel-info-gallery {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    max-width: 100vw !important;
  }
  .travel-thumb {
    width: 44vw !important;
    max-width: 120px !important;
    min-width: 80px !important;
    height: 28vw !important;
    max-height: 80px !important;
    object-fit: cover !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
    flex: 1 1 44vw !important;
  }
}
@media (max-width: 600px) {
  .gallery-thumbnails.small-thumbs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  .small-thumbnail {
    width: 30vw !important;
    max-width: 70px !important;
    min-width: 50px !important;
    height: 44px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    box-shadow: 0 1px 4px rgba(0,150,199,0.10) !important;
    margin: 0 !important;
    display: block !important;
  }
}
@media (max-width: 600px) {
  .gallery-main {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }
  .gallery-thumbnails.small-thumbs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 6px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    padding: 0 4vw !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
  }
  .small-thumbnail {
    width: 28vw !important;
    max-width: 60px !important;
    min-width: 40px !important;
    height: 40px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    box-shadow: 0 1px 4px rgba(0,150,199,0.10) !important;
    margin: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }
}
.home-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0096c7;
  box-shadow: 0 2px 8px rgba(0,150,199,0.18);
  margin-right: 16px;
  margin-left: 0;
  transition: box-shadow 0.2s, background 0.2s;
  border: 3px solid #fff;
  position: relative;
  z-index: 3;
}
.home-btn:hover {
  background: #1976d2;
  box-shadow: 0 4px 16px rgba(0,150,199,0.28);
}
.home-btn svg {
  display: block;
}
@media (max-width: 900px) {
  .home-btn {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .main-menu { display: none !important; }
  .mobile-menu { display: block !important; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 900px) {
  .mobile-menu .dropdown-content {
    position: static !important;
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    z-index: 10 !important;
    display: none;
    margin: 0;
    padding: 0;
  }
  .mobile-menu .dropdown-content.show {
    display: block !important;
  }
  .mobile-menu .dropdown,
  .mobile-menu .dropbtn {
    width: 100% !important;
    text-align: left !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .mobile-menu .dropbtn {
    font-size: 1.1em;
    font-weight: 700;
    color: #0096c7;
    padding: 12px 16px;
    background: #e0f7fa !important;
    border-bottom: 1px solid #b2eaff !important;
    border-radius: 0 !important;
    width: 100%;
    cursor: pointer;
  }
  .mobile-menu a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: #0096c7;
    text-decoration: none;
    background: #fff;
    border-bottom: 1px solid #e0f7fa;
    font-size: 1.08em;
    font-weight: 600;
    text-align: left;
    transition: background 0.18s, color 0.18s;
  }
  .mobile-menu a:hover, .mobile-menu .dropbtn:hover {
    background: #caf0f8 !important;
    color: #1976d2 !important;
  }
  .mobile-menu .burger-btn {
    margin: 0 0 8px 0 !important;
    background: #0096c7 !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
/* ...existing code... */

/* Mobile: make site title white */
@media (max-width: 768px) {
  .site-title, /* заменете с вашия селектор ако е различен */
  h1.site-title {
    color: #fff !important;
  }
}

/* ...existing code... */

/* Центриране на заглавия и описания на апартаменти и студиа в мобилна версия */
@media (max-width: 768px) {
  #greenhouse-floor, #greenhouse-two, #greenhouse-double,
  #redhouse-floor, #redhouse-two, #redhouse-double,
  #panorama-two, #panorama-three, #panorama-double,
  #studio-three {
    text-align: center !important;
  }
  #greenhouse-floor h2, #greenhouse-floor p,
  #greenhouse-two h2, #greenhouse-two p,
  #greenhouse-double h2, #greenhouse-double p,
  #redhouse-floor h2, #redhouse-floor p,
  #redhouse-two h2, #redhouse-two p,
  #redhouse-double h2, #redhouse-double p,
  #panorama-two h2, #panorama-two p,
  #panorama-three h2, #panorama-three p,
  #panorama-double h2, #panorama-double p,
  #studio-three h2, #studio-three p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* Mobile: гарантирано ограничаване на .main-photo-large в секцията */
@media (max-width: 600px) {
  section,
  .gallery-main,
  .main-photo-large-wrapper {
    position: relative;
    overflow: hidden !important;
    padding: 0 !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .main-photo-large {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 60vw !important;
    object-fit: contain !important;
    margin: 0 auto 12px auto !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    background: #fff !important;
  }
}
/* --- MOBILE: Perfectly center gallery thumbnails and arrows under large image --- */
@media (max-width: 600px) {
  .gallery-thumbnails {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow-x: visible !important;
    position: relative !important;
  }
  .thumbs-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    width: auto !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: visible !important;
  }
  .thumb-arrow {
    position: static !important;
    margin: 0 2px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    font-size: 1.1em !important;
    box-shadow: 0 1px 4px #0096c722 !important;
    flex-shrink: 0 !important;
    order: 0 !important;
  }
  .thumbnail {
    width: 54px !important;
    height: 36px !important;
    border-radius: 5px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    display: block !important;
  }
}
/* Homepage gallery: horizontal scroll on mobile */
@media (max-width: 700px) {
  .homepage-gallery {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .homepage-gallery .thumbnail {
    flex: 0 0 auto !important;
    width: 120px !important;
    height: auto !important;
    max-height: 90px !important;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
}
/* Mobile: thumbnails in .homepage-gallery fit in one row without scrolling */
/* ...existing code... */
/* ...existing code... */

/* Още по-малки thumbnails само за началната страница на мобилни устройства */
@media (max-width: 600px) {
  .homepage-gallery {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    overflow-x: hidden !important;
    padding: 0 !important;
  }
  .homepage-gallery .thumbnail {
    width: 14vw !important;      /* Намалено още */
    max-width: 14vw !important;
    min-width: 0 !important;
    max-height: 16vw !important;
    height: auto !important;
    margin: 0 1vw !important;
    object-fit: cover !important;
    box-sizing: border-box !important;
  }
}
/* Скриваме dropdown съдържанието по подразбиране */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Когато dropdown има клас "show", показваме менюто */
.dropdown-content.show {
  display: block;
}

/* Стилизиране на бутона */
.dropbtn {
  cursor: pointer;
}

/* Контейнер dropdown трябва да е относителен, за да позиционира абсолютното съдържание */
.dropdown {
  position: relative;
  display: inline-block;
}
.site-title {
  color: white;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .site-title {
    color: #0096c7;
  }
}
@media (max-width: 768px) {
  .site-title {
    color: #0096c7 !important;
  }
}
.site-title {
  color: white !important;
  text-decoration: none;
}

@media (max-width: 768px) {
  body.home-page .site-title {
    color: #0096c7 !important;
  }
}


