html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Russo One', Arial, sans-serif;
    background: linear-gradient(to bottom, #87CEEB, #E0F6FF);
    color: #4a4a4a;
    position: relative;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(128, 128, 128, 0.3);
    pointer-events: none;
    z-index: 0;
}

@font-face {
    font-family: 'Russo One';
    src: url('fonts/russoone.ttf') format('truetype');
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.menu {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-grow: 1;
}

.navbar a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: bold;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #cccccc;
}

.lang-switch {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.lang-switch select {
    padding: 0.5rem;
    border: none;
    background: #f0f0f0;
    border-radius: 5px;
    font-size: 1rem;
    color: #4a4a4a;
}

.section h2 {
    margin-bottom: 20px;
    color: #4a4a4a;
    z-index: 2;
    position: relative;
}

.description {
    width: 90%;
    max-width: 1200px;
    font-size: 1.2rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    color: #4a4a4a;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-align: center;
    scroll-behavior: smooth;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    filter: brightness(100%);
    padding: 20px 0;
}

.section p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-top: 10px;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    padding-bottom: 50px;
}

.hover-button {
    width: 300px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    background-image: url('img/button_en.png');
    transition: background-image 0.3s ease;
}

.hover-button:hover {
    background-image: url('img/button_en_active.png');
}

.section .hover-button {
    z-index: 3;
}

#home { background-image: url('img/1.jpg'); }
#about { background-image: url('img/2.jpg'); }
#gallery { background-image: url('img/3.jpg'); }
#contact { background-image: url('img/4.jpg'); }

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.section > * {
    position: relative;
    z-index: 2;
    color: #4a4a4a;
}

.header-1 {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.header-2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.logo {
    width: 80%;
    max-height: 115px;
    max-width: 640px;
    z-index: 2;
    position: relative;
}

.slider {
    position: relative;
    width: 90%;
    margin-top: 225px;
    max-width: 1200px;
    overflow: hidden;
    cursor: pointer;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slides img {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }

#menu-toggle {
    display: none !important;
}

.hamburger {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    color: #4a4a4a;
}

#about .content-wrapper {
    display: flex;
    width: 90%;
    max-width: 800px;
    justify-content: space-between;
    align-items: center;
}

#about .image-column {
    width: 40%;
    padding: 10px;
}

#about .about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#about .text-column {
    width: 55%;
    padding: 10px;
    text-align: left;
    background: rgba(255, 255, 255, 0.8);
    color: #4a4a4a;
}

#about h2 {
    margin-bottom: 10px;
    color: #4a4a4a;
}

#about p {
    color: #4a4a4a;
    margin: 0;
}

#gallery .content-wrapper {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    color: #4a4a4a;
    align-items: center;
}

#gallery .description-column {
    width: 100%;
    padding: 10px;
    text-align: left;
    color: #4a4a4a;
    background: rgba(255, 255, 255, 0.8);
}

#gallery .reviews-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin-top: 20px;
    text-align: left;
}

#gallery .reviews-slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}

#gallery .review {
    background: rgba(255, 255, 255, 0.8);
    color: #4a4a4a;
    padding: 15px;
    margin: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    flex: 0 0 500px;
    height: 400px;
    box-sizing: border-box;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    max-width: 500px;
}

#gallery .reviews-slides .review:first-child {
    margin-left: 300px;
}

#gallery .reviews-slides .review:last-child {
    margin-right: 10px;
}

#gallery h2 {
    margin-bottom: 10px;
    color: #4a4a4a;
}

#gallery p {
    color: #4a4a4a;
    margin: 0;
}

#contact {
    background-image: url('img/4.jpg');
}

#contact .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    color: #4a4a4a;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.contact-columns {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 800px;
    aling-items: center;
}

.contact-column {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    margin: 0 10px;
    align-items: center;
}

.contact-column h3 {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.contact-column p {
    margin: 5px 0;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .map-container {
        max-width: 100%;
    }
    .contact-columns {
        flex-direction: column;
	align-items: center;
        max-width: 100%;
    }
    .contact-column {
        margin: 10px 0;
        width: 100%;
    }
    .hover-button {
        width: 200px;
        height: 70px;
    }
    #gallery .review {
        flex: 0 0 250px;
        max-width: 250px;
    }
}

.contact-info a {
    color: #4a4a4a;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #cccccc;
}


.social-link {
    display: flex;
    align-items: center;
    margin-left: 40px;
    text-decoration: none;
    color: #4a4a4a;
    transition: filter 0.3s ease;
}

.social-link img {
    width: 12%;
    margin-right: 10px;
}

.social-link span {
    font-size: 1rem;
    font-weight: bold;
}

.social-link:hover {
    filter: brightness(1.1);
}

.social-link:hover img {
    filter: brightness(1.1);
}

.social-link:hover span {
    filter: brightness(0.5);
}


@media (max-width: 768px) {
    .menu {
        gap: 1rem;
    }
    .navbar a {
        font-size: 0.9rem;
    }
    .lang-switch {
        bottom: 10px;
        right: 10px;
    }
    .description {
        font-size: 1rem;
    }
    .section {
        font-size: 1.2rem;
        padding: 10px 0;
    }
    .slider {
        width: 95%;
        margin-top: 10px;
    }
    .hover-button {
        width: 200px;
        height: 70px;
    }
    #about .content-wrapper {
        flex-direction: column;
        width: 95%;
    }
    #about .image-column,
    #about .text-column {
        width: 100%;
    }
    #gallery .review {
        flex: 0 0 250px;
        max-width: 250px;
    }
}
