/* Основни стилове */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('морски фон3.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}
/*background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');*/
header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #4fc3f7;
}

.hero {
    text-align: center;
    padding: 10rem 2rem;
    background-color: rgba(0, 0, 0, 0.5);
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}



.gallery {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.album {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 28px;
    color: #333;
    width: 1000px;
    /*width: 100vw; /* Заема цялата ширина на екрана */
   /* margin-left: calc(-50vw + 50%); /* Центриране (ако е в контейнер) */
}


.photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.photos img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}
.photos img:hover {
    transform: scale(1.03);
}



.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background-color: #4fc3f7;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}




.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(0, 0, 0, 0.7);
}

.contacts {
    display: flex;
    gap: 20px;
}

.contacts a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contacts a:hover {
    color: #4fc3f7;
}

.contacts i {
    font-size: 16px;
}



.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 2.8rem;
}

/* .hero h1 {
    background: linear-gradient(to right, #f1f2ee, #d1dc2b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
} */


/* Language Switcher Styles */
.language-switcher {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

#languageBtn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

#languageBtn:hover {
    background: rgba(255,255,255,0.3);
}

.language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    z-index: 1;
}

.language-dropdown a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.language-dropdown a:hover {
    background: #f1f1f1;
}

.language-switcher:hover .language-dropdown {
    display: block;
}


@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
}


/* Lightbox стилове */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-content {
    max-height: 80vh;
    max-width: 90vw;
    margin-top: 5vh;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.caption {
    color: white;
    padding: 10px;
    font-size: 1.2em;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    user-select: none;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

/* Галерия стилове */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.02);
}



h2 {
    text-align: center;
    font-family: "Georgia", serif;
    margin-top: 2rem;
    color: white; /* Бял текст */
    background-color: rgba(0, 0, 0, 0.5); /* Прозрачно черен фон (0.5 = 50% прозрачност) */
    display: inline-block; /* Фонът да обхваща само текста */
    padding: 10px 20px; /* Отстъп отгоре/отдолу и отляво/отдясно */
    border-radius: 5px; /* Закръглени ъгли (по желание) */
}


.lightbox-content {
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* 📱 Адаптивност за мобилни (по желание) */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
    }
    .right-section {
        flex-direction: column;
        gap: 1rem;
    }
    .contacts {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Lightbox стилове */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-content {
    max-height: 80vh;
    max-width: 90vw;
    margin-top: 5vh;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.caption {
    color: white;
    padding: 10px;
    font-size: 1.2em;
    margin-top: 20px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    user-select: none;
    transition: 0.3s;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Стилове за галерията */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}