/* ОБЕДИНЕНИ СТИЛОВЕ */

/* ======= Начало: general.css ======= */
:root {
    --primary-color: #004d7a; /* Дълбоко синьо */
    --accent-color: #00b4d8;  /* Светло тюркоазено */
    --text-color: #333;
    --light-text-color: #fff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --footer-bg: #212529;
}

html {
	scroll-behavior: smooth; /* Плавно скролиране */
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background: var(--bg-white);
  color: var(--text-color);
}

/* Редуващи се фонове за секциите */
section:nth-of-type(odd) {
    background: var(--bg-light);
}

section:nth-of-type(even) {
    background: var(--bg-white);
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
	text-align: center;
}

#beaches .container p, #about .container p {
	text-align: justify;
}

section {
    padding: 80px 0 20px;
    scroll-margin-top: 40px;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
	color: var(--primary-color);
}

.first-line-indent {
  text-indent: 2em; /* Отстъп от първата дума на абзаца. Можете да промените стойността според вашите нужди */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px); /* Добавяме транслация нагоре */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Мобилни бутони обаждане и навигация */
.mobile-buttons {
    display: none; /* Скриваме ги по подразбиране */
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #565656;
    color: #fff; /* Бял текст */
    border: none;
    border-radius: 50%; /* Кръгла форма */
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 30px;
    z-index: 1001; /* За да е над другите елементи */
}

@media (max-width: 768px) { /* Показваме ги само на екрани с ширина до 768px (приблизително мобилни устройства) */
    .mobile-buttons {
        display: flex;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0); /* Прозрачен бял фон за по-добра видимост */
        padding: 10px;
        z-index: 1000; /* Уверете се, че са над останалото съдържание */
    }

    .call-button {
		flex-direction: column; /* Подреждаме иконата и текста вертикално */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #20cc3e; /* Пример за цвят */
        color: white;
        border-radius: 50%; /* Прави ги кръгли */
        width: 40px; /* Задайте желания размер */
        height: 40px;
        text-decoration: none;
        font-size: 20px; /* Размер на иконата */
        margin: 0 10px; /* Отстояние от краищата и между бутоните */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Добавете лек сянка */
		padding: 10px; /* Увеличете padding, за да има място за текста */
    }

    .navigation-button {
		flex-direction: column; /* Подреждаме иконата и текста вертикално */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #e73f3a; /* Пример за цвят */
        color: white;
        border-radius: 50%; /* Прави ги кръгли */
        width: 40px; /* Задайте желания размер */
        height: 40px;
        text-decoration: none;
        font-size: 20px; /* Размер на иконата */
        margin: 0 10px; /* Отстояние от краищата и между бутоните */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Добавете лек сянка */
		padding: 10px; /* Увеличете padding, за да има място за текста */
    }

    .call-button:hover {
        background-color: #2E6F40; /* По-тъмен цвят при hover */
    }
	
    .navigation-button:hover {
        background-color: #b00d19; /* По-тъмен цвят при hover */
    }

    .call-button i,
    .navigation-button i {
		margin-bottom: 5px; /* Отстояние между иконата и текста */
        
    }
	
	    .call-button span,
    .navigation-button span {
        font-size: 8px; /* Размер на текста */
		text-align: center; /* Добавяме центриране на текста */
    }
	
	.hidden {
    display: none !important;
}

	.modal-close {
		display: none; /* Не се вижда бутон за затваряне на снимки в малък режим */
	}
	
}
/* ======= Край: general.css ======= */


/* ======= Начало: header.css ======= */
/* header.css */
header {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: auto; /* Заменя min-height за адаптивност */
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex; /* Използваме Flexbox */
    justify-content: space-between; /* Разпределя елементите в двата края */
    align-items: center; /* Центрира вертикално */
    flex-wrap: wrap; /* Позволява пренасяне на нов ред, ако няма място */
    max-width: 1200px; /* Опционално: ограничава ширината */
    margin: 0 auto; /* Центрира контейнера хоризонтално */
    padding: 0 15px; /* Добавя вътрешни отстъпи */
}

header h1 {
    margin: 0;
    font-size: 1.8em;
    animation: fadeIn 2s ease-in-out;
}

header h1 a {
    text-decoration: none; /* Премахва подчертаването */
    color: inherit; /* Запазва цвета на околния текст */
}

.menu-toggle {
    display: none; /* Скрит по подразбиране на широки екрани */
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle[aria-expanded="true"] {
    transform: rotate(90deg);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Подрежда елементите на един ред */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* Стилове за езиците */
.language-item {
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
}

.language-item img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    border-radius: 3px;
}

.language-item img:hover {
    transform: scale(1.15);
}

/* Медийна заявка за екрани над 769px-1249px */
 @media (min-width: 769px) and (max-width: 1249px) {
  header .container {
   flex-direction: column; /* Подрежда елементите вертикално */
   align-items: center; /* Центрира елементите хоризонтално */
  }

  header h1 {
   text-align: center; /* Центрира заглавието */
   margin-bottom: 10px; /* Добавя малко разстояние под заглавието */
   width: 100%; /* Заема цялата ширина */
  }

  nav {
   width: 100%; /* Навигацията също да заеме цялата ширина */
  }

  nav ul {
   display: flex;
   justify-content: center; /* Центрира елементите на менюто */
  }

  .menu-toggle {
   display: none; /* Скрива бутона за меню, тъй като менюто е винаги видимо */
  }
 }

/* Медийна заявка за екрани под 768px */
@media (max-width: 768px) {
    header .container {
        flex-direction: column; /* Променя посоката на колонна */
        align-items: center
    }

    header h1 {
        font-size: 1.5em;
        text-align: center;
        width: 100%; /* Заема цялата ширина */
    }

    .menu-toggle {
        display: block; /* Показва бутона за менюто */
        position: absolute;
        right: 15px;
        top: 6px;
    }

    nav {
        width: 100%; /* Заема цялата ширина */
    }

    nav ul {
        display: block; /* Променя на блоково показване */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transition: 
            opacity 0.3s ease,
            visibility 0.3s ease,
            max-height 0.3s ease,
            padding 0.3s ease;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    nav ul.active {
        opacity: 1;
        visibility: visible;
        max-height: 500px; /* Достатъчно голяма височина за съдържанието */
        padding: 0 0 20px 0;
    }

    nav ul li {
        display: block;
        margin: 15px 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: 
            opacity 0.3s ease,
            transform 0.3s ease;
        text-align: center; /* Центрира текста в мобилно меню */
    }

    nav ul.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    .language-item {
        margin: 10px 5px;
    }

    .language-item img {
        width: 32px;
        height: 32px;
    }
}

/* Допълнителна медийна заявка за много малки екрани (по желание) */
@media (max-width: 480px) {
    .language-item {
        margin: 10px 5px;
    }
}
/* ======= Край: header.css ======= */


/* ======= Начало: hero.css ======= */
#hero {
    /* ПРЕМХАНАТО: background: url('../images/header.jpg') no-repeat center center/cover; */
    color: var(--light-text-color);
    min-height: 400px;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: slideIn 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* ДОБАВЕНО: Стил за слоевете с фонови изображения */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0; /* Първоначално са невидими */
    transition: opacity 1s ease-in-out; /* Ефект на преливане */
}

/* ДОБАВЕНО: Клас, който прави слоя видим */
.hero-bg.visible {
    opacity: 1;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));     */
    z-index: 1; /* Уверяваме се, че е над снимките */
}

#hero .container {
    position: relative;
    z-index: 2; /* Уверяваме се, че е над всичко друго */
}

#hero h2 {
    font-size: 2.5em;
    animation: fadeIn 2s ease-in-out;
    /* Важно: цветът на h2 трябва да е видим, той се наследява от #hero */
}

.btn {
    background: var(--accent-color);
    color: var(--light-text-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: bold;
    position: relative;
    z-index: 2; /* Бутонът също трябва да е над фона и затъмнението */
}

.btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,111,97,0.3);
}

@media (max-width: 768px) {
  #hero {
    height: 50vh;
  }
  #hero h2 {
    font-size: 2em;
  }
}
/* ======= Край: hero.css ======= */


/* ======= Начало: rooms.css ======= */
#rooms {
    padding: 4rem 0;
   /* background: #fff; */
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 колони за 4 стаи */
    gap: 1rem;
 /*   overflow-x: auto;  Добавете ако искате хоризонтален скрол при малки екрани */
}

.room-grid, .container, #rooms {
    overflow: visible;
}

.room-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
/*    box-shadow: 0 5px 25px rgba(0,0,0,0.1); Да няма перманентна сянка */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
 /* transform: translateY(-5px); */   /* При минаване с мишката над панела дали да се движи. */     
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.room-images {
    position: relative;
    height: 250px;
    overflow: hidden;
	cursor: pointer;
}

.room-images .swiper-slide {
    height: 250px;
}

.room-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-images img:hover {
    transform: scale(1.05);
}

.room-info {
    padding: 1.5rem;
    text-align: center;
}

.room-info h3 {
    margin: 0 0 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.room-info p {
    color: #333;
    line-height: 1.6;
    min-height: 60px;
}

.gallery-btn {
    display: inline-block;
    background: #ff6f61;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.gallery-btn:hover {
    background: #ff3b2f;
    transform: translateY(-2px);
}

/* Swiper Styles */
.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: none; /* Фон под стрелките за превъртане на снимки на стаите (Беше: rgba(255,255,255,0.9);) */
    border-radius: 50%;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255,111,97,0.4); /* Фон под стрелките за превъртане на снимки на стаите */
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.2rem;
    color: #333;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .room-grid {
        grid-template-columns: 1fr;
    }

    .room-images {
        height: 200px;
    }

    .swiper-button-prev,
    .swiper-button-next {
 /*      display: none; Скриване на стрелките на малък екран */
    }
}

@media (max-width: 480px) {
    .room-info {
        padding: 1rem;
    }
    
    .room-info h3 {
        font-size: 1.3rem;
    }
    
    .gallery-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
/* ======= Край: rooms.css ======= */


/* ======= Начало: services.css ======= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.service-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    margin: 10px 0;
    position: relative;
    z-index: 1;
}

/* При минаване с мишката над панелите да няма ефект*/
/* .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
} */

.service-item .icon {
    font-size: 2em;
    margin-bottom: 10px;
    display: block;
}

.service-item h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-item p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

/* Стилове за иконите */
.service-item img {
    display: block;
    margin: 0 auto 15px; /* Центрира изображението хоризонтално и добавя долен маргин */
    transition: all 0.3s ease-in-out; /* Променяме прехода, за да е по-плавен за увеличение */
    /* width: 80px;    Адаптирайте размера според нуждите */
    height: auto;
}

.service-item:hover img {
    transform: scale(1.1); /* Увеличава изображението с 10% */
    /* Можете да промените стойността (напр. 1.2 за 20% увеличение) */
}

/* Премахваме анимацията за иконите, тъй като вече не е нужна */
/* @keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
} */

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-item h3 {
    font-size: 1em;
  }
  .service-item p {
    font-size: 0.85em;
  }
}
/* ======= Край: services.css ======= */


/* ======= Начало: beaches.css ======= */
.beach-gallery {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.beach-scroll {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: max-content;
    padding: 0 20px;
}

.beach-scroll img {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: cover;
    margin: 10px 0;
}

.beach-scroll img:hover {
    transform: scale(1.05);
    z-index: 10;
    position: relative;
}

.scroll-btn {
    background: rgba(0, 77, 122, 0.7);
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 0px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 40px;
    height: 40px;
    transition: background 0.3s ease;
}

.scroll-btn:hover {
    background: var(--primary-color);
}

.scroll-btn.left {
    left: 20px;
}

.scroll-btn.right {
    right: 20px;
}

.expanded-image, #beach-expanded {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.expanded-image.active, #beach-expanded.active {
    opacity: 1;
    visibility: visible;
}

.modal-swiper {
    width: 90%;
    height: 90%;
    padding: 20px;
}

.modal-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 10px; /* Заобляне на ъглите на контейнера */
    background-color: #000; /* Черен фон, за да се вижда заоблянето, ако изображението не го покрива */
    overflow: hidden; /* Скрива всяко съдържание, което излиза извън заоблените ъгли на слайда */
}

.modal-swiper img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    object-fit: contain;
}

.modal-swiper .swiper-button-next,
.modal-swiper .swiper-button-prev {
    color: #fff !important;
    background: rgba(255,255,255,0.3) !important;
    padding: 10px !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
}

.image-caption {
    color: #ccc;
    margin-top: 10px; /* Разстояние над текста */
    text-align: center; /* Центриране на текста */
    padding: 0 20px; /* Вътрешни отстъпи */
    font-size: 16px; /* Размер на шрифта */
}

/* Показване на текст в модал Плажове центрирано над 769px */
.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;	/* Позиция на текста */
    justify-content: center;
	width: 100%; /* Ограничава ширината спрямо родителя */
    max-width: 100%; /* Предотвратява преливане */
}

@media (max-width: 768px) {
    .beach-scroll img {
        width: 240px;
        height: 160px;
    }

    .beach-scroll {
        gap: 10px;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 24px;
        line-height: 35px;
        text-align: center;
    }
    .scroll-btn.left {
        left: 10px;
    }
    .scroll-btn.right {
        right: 10px;
    }

    .modal-swiper .swiper-button-next,
    .modal-swiper .swiper-button-prev {
        display: none !important;
    }

    .image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .image-caption {
        /* margin-top: 10px; - Вече е зададен глобално */
        /* color: #aaaaaa; - Вече е зададен глобално */
        font-size: 14px;
        padding: 0 10px;
    }
}
/* ======= Край: beaches.css ======= */


/* ======= Начало: prices.css ======= */
#prices {
    padding: 80px 0 40px;
}

.price-table {
    overflow-x: auto;
}

table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: separate; /* Key change for border-radius to work */
    border-spacing: 0; /* Optional: removes default cell spacing */	
    background: #fff;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); Сянка на таблицата */
	border-radius: 10px; /* Adjust the radius value as needed */
    overflow: hidden; /* Ensures rounded corners are visible */
}

table th, table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

table th {
    background: var(--primary-color);
    color: var(--light-text-color);
    font-weight: bold;
}

table tr:hover {
    background: #f0f0f0;
}

/* Optional: round only the top corners of the header row */
table thead tr:first-child th:first-child {
    border-top-left-radius: 10px;
}
table thead tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

/* Optional: round only the bottom corners of the last row */
table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
/* ======= Край: prices.css ======= */


/* ======= Начало: contact.css ======= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.contact-info {
    text-align: left;
    height: 400px; /* Задава същата височина като картата */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Центрира текста вертикално */
}

.contact-info p {
    font-size: 1.2em;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
}

iframe {
    width: 100%; /* Заема цялата ширина на колоната */
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info {
        height: auto; /* Адаптира височината на малки екрани */
    }
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* ======= Начало: Стил за социални бутони ======= */

/* Контейнер за бутоните */
.social-buttons {
    display: flex;
    gap: 15px; /* Разстояние между бутоните */
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Общ стил за всички бутони */
.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    color: #fff; /* Бял цвят на текста */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.contact-button .contact-icon {
    margin-right: 8px; /* Нулираме стария margin и задаваме нов */
    width: 20px;       /* Леко по-малки икони за по-добър вид в бутона */
    height: 20px;
}

.contact-button:hover {
    transform: translateY(-3px); /* Повдигане на бутона при hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Специфичен стил за Facebook бутона */
.facebook-button {
    background-color: #1877f266; /* Официално синьо на Facebook */
}

.facebook-button:hover {
    background-color: #166fe5; /* Малко по-светло синьо при hover */
    color: #fff; /* Гарантираме, че цветът на текста остава бял */
}

/* Специфичен стил за YouTube бутона */
.youtube-button {
    background-color: #ff000066; /* Официално червено на YouTube */
}

.youtube-button:hover {
    background-color: #e60000; /* Малко по-тъмно червено при hover */
    color: #fff; /* Гарантираме, че цветът на текста остава бял */
}

/* Специфичен стил за бутона към другата къща */
.villa-button {
    background-color: #20b2aa66; /* Цвят LightSeaGreen */
	text-align: center; /* Центрира текста хоризонтално */
    line-height: 1.5; /* Подобрява вертикалното подравняване при пренасяне на редове */
}

.villa-button:hover {
    background-color: #1a8c85; /* По-тъмен нюанс при hover */
    color: #fff;
}

 @media (min-width: 769px) and (max-width: 1249px) {
.social-buttons {
    display: flex;
    gap: 5px; /* Разстояние между бутоните */
}
.contact-button {
    padding: 5px 5px;
} 
}
@media (max-width: 768px) {
.social-buttons {
    display: flex;
    gap: 5px; /* Разстояние между бутоните */
}
.contact-button {
    padding: 5px 5px;
}
}
/* ======= Край: Стил за социални бутони ======= */

/* Ефект на звънене на иконата */
@keyframes ring {
    0% { transform: translate(0); }
    10% { transform: translate(-2px, -2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, 2px); }
    50% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, -2px); }
    70% { transform: translate(-2px, 2px); }
    80% { transform: translate(2px, 2px); }
    90% { transform: translate(-2px, -2px); }
    100% { transform: translate(0); }
}

.contact-info a[href^="tel"] .contact-icon {
    transition: transform 0.3s ease;
}

.contact-info a[href^="tel"]:hover .contact-icon {
    animation: ring 1s ease;
}
/* ======= Край: contact.css ======= */



/* ======= Начало: footer.css ======= */
footer {
    background: #333;
    color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

footer p {
	text-align: center;
    margin: 0;
}

@media (max-width: 600px) {
    footer {
        flex-direction: column;
        align-items: center;
		font-size: 0.8em;
		padding-bottom: 40px; /* Увеличаваме долния padding, за да не се застъпва с бутоните */
    }
    footer .cookie-settings {
        margin-top: 10px;
    }
}
/* ======= Край: footer.css ======= */


/* ======= Начало: cookiebanner.css ======= */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  transition: bottom 0.5s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.active {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  font-size: 0.9em;
  line-height: 1.5;
}

.cookie-content a {
  color: #4CAF50;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.3s;
}

.cookie-btn.accept {
  background: #4CAF50;
  color: white;
}

.cookie-btn.reject {
  background: #f44336;
  color: white;
}

.cookie-settings {
  text-align: center;
  padding: 0px;
}

.cookie-settings button {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}
/* ======= Край: cookiebanner.css ======= */

