* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Spectral", serif;
    background-color: #f5f1ea;
    color: #4a4035;
    line-height: 1.6;
}

.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 900;
    display: flex;
    gap: 10px;
}

.lang-btn {
    background-color: #d4c5b0;
    color: #4a4035;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    cursor: pointer;
    font-family: "Spectral", serif;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.lang-btn:hover, .lang-btn.active {
    background-color: #b8a88a;
    transform: translateY(-2px);
}

header {
    background: white;
    padding: 4rem 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    width: 250px;
    /* background: rgba(255, 255, 255, 0.2); */
    border: 3px solid #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.header-text {
    text-align: left;
}

header h1 {
    font-family: "Spectral", serif;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 0.5rem;
}

header p {
    color: #fff;
    font-size: 1.1rem;
    font-style: italic;
}

nav {
    background-color: #e8dcc8;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

nav a {
    color: #4a4035;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

nav a:hover {
    color: #8b7355;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.intro {
    text-align: center;
    font-size: 1.1rem;
    margin: 1rem 0;
    color: #5a4f45;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    cursor: pointer;
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #e8dcc8, #d4c5b0);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #8b7355;
    font-style: italic;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    background: #fff;
    padding: 1.5rem;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.booking-section {
    background: linear-gradient(135deg, #d4c5b0, #b8a88a);
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 3px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.booking-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.airbnb-calendar {
    background-color: #fff;
    padding: 0.75rem;
    border-radius: 3px;
    margin-top: 1rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b7355;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #8b7355;
    padding: 1rem 2.5rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #8b7355;
    color: #fff;
    transform: translateY(-3px);
}

.poi-section {
    margin: 3rem 0;
}

.poi-section h2 {
    color: #8b7355;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.poi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.poi-card {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    overflow: hidden;
}

.poi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.poi-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e8dcc8, #d4c5b0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.poi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poi-content {
    padding: 1.5rem;
}

.poi-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.poi-icon {
    font-size: 1.5rem;
}

.poi-title {
    color: #8b7355;
    font-size: 1.3rem;
    font-weight: bold;
}

.poi-distance {
    color: #b8a88a;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.poi-description {
    color: #5a4f45;
    line-height: 1.6;
}

.contact-section {
    background-color: #fff;
    padding: 3rem;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 3rem 0;
    text-align: center;
}

.contact-section h2 {
    color: #8b7355;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 2;
    color: #5a4f45;
}

.contact-info a {
    color: #8b7355;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #b8a88a;
    text-decoration: underline;
}

footer {
    background-color: #4a4035;
    color: #e8dcc8;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* MODAL PART*/
.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 50%;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media (max-width: 768px) {
    /* Modal Content */
    .modal-content {
        width: 90%;
    }

    .header-content {
        flex-direction: column;
    }

    .header-text {
        text-align: center;
    }

    nav ul {
        gap: 1rem;
    }

    .poi-grid {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 1.8rem;
    }

    .lang-switcher {
        top: 60px;
        right: 00px;
        flex-wrap: wrap;
        width: 50px;
        gap: 5px ;
    }

    .container {
        padding: 1rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}