body {
   font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
	overflow-x: hidden;

}
main.container {
    max-width: 960px;
    margin: auto;
    padding: 2em;
}
/* Booking info box */
.booking-info {
    background-color: #fffbe6;
    border-left: 4px solid #ffd800;
    padding: 1.5em;
    margin-bottom: 2em;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    font-size: 0.95rem;
    line-height: 1.6;
}

.booking-info ul {
    list-style: none;
    padding-left: 1.2em;
    margin-top: 0.5em;
    margin-bottom: 1em;
}


.booking-info ul li::before {
    content: "✔";
    color: #ffd800;
    font-weight: bold;
    margin-left: -1.2em;
    display: inline-block;
    width: 1em;
}

/* TOP CONTACT BAR */
.top-bar {
    background-color: #ffc107;
    padding: 0.5em 2em;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
	overflow-x: hidden;

}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    text-align: center;
}

.top-link {
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-weight: 500;
    padding: 0.3em 0.75em;
    white-space: nowrap;
}

.top-link:hover {
    color: #000;
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-link {
        padding: 0.2em 0.75em;
    }
}
#headerCarousel .carousel-item {
  height: 600px;
  position: relative;
}

#headerCarousel .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

#headerCarousel .carousel-caption {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-align: center;
  width: auto;
  max-width: 90%;
}

@media (max-width: 768px) {
  #headerCarousel .carousel-caption {
    padding: 1rem;
    font-size: 1rem;
    bottom: 71%;
    max-width: 95%;
    line-height: 1.5;
    width: 90%;
  }
}

.gallery img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 0.5rem;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.about-wrapper {
  background-color: #f8f9fa;
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
}

/* HEADER LAYOUT */
header {
    background-color: #222;
    color: #fff;
    padding: 1em 2em;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1em;
}

.logo a {
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 1em;
    z-index: 10;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
}

.lang-switcher {
    font-size: 0.9rem;
    color: #ccc;
}

.lang-switcher a {
    color: #bbb;
    text-decoration: none;
    margin: 0 0.2em;
}

.lang-switcher a:hover {
    color: #fff;
}

.menu {
    list-style: none;
    display: flex;
    gap: 1.5em;
    padding: 0;
    margin-top: 1em;
    width: 100%;
    flex-direction: row;
    justify-content: center;
}

.menu a {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.menu a:hover {
    color: #ffd800;
    border-bottom: 2px solid #ffd800;
	padding-bottom: 5px;
}
.menu a.active {
    color: #ffd800;
    border-bottom: 2px solid #ffd800;
    padding-bottom: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .menu.show {
        display: flex;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-right {
        margin-top: 1em;
        flex-direction: row;
        justify-content: flex-end;
        width: 100%;
    }

    .menu {
        align-items: center;
    }
}

footer {
    background-color: #222;
    color: #fff;
    padding: 1em;
    text-align: center;
}

section {
    padding: 2em;
    max-width: 960px;
    margin: auto;
}

.hero {
    background: #ffd800;
    padding: 3em 2em;
    text-align: center;
}

.btn {
    display: inline-block;
    margin-top: 1em;
    background: #333;
    color: #fff;
    padding: 0.5em 1.5em;
    text-decoration: none;
    border-radius: 4px;
}

label {
    display: block;
    margin-bottom: 1em;
}

input, textarea {
    width: 100%;
    padding: 0.5em;
    margin-top: 0.3em;
    box-sizing: border-box;
}

.photos {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
}

.photos img {
    max-width: 30%;
    height: auto;
    border-radius: 6px;
}

.map iframe {
    width: 100%;
    border: none;
    border-radius: 6px;
}
.lang-switcher a img {
    transition: transform 0.2s ease;
}

.lang-switcher a:hover img {
    transform: scale(1.1);
}
