@media screen and (min-width: 1025px){
.accommodation{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin: 0 auto;
    width: 90%;
    padding: 50px 0; 
}

.site {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    background: linear-gradient(45deg, #ffffff, #f0f0f0); /* Soft white to light gray gradient */
    padding: 25px; /* Increased padding */
    margin: 20px; /* Margin for spacing */
    width: 800px; /* Adjusted width for a more spacious feel */
    height: 300px; /* Set height */
    border-radius: 20px; /* Softer corners */
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2); /* Shadow for sophistication */
    color: #333333; /* Dark gray text */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth effects on hover */
    overflow: hidden;
    position: relative;
}

.image-stack{
    flex-direction: row;
    display: flex;
}


.site-content {
    flex: 1; /* Take up remaining space */
    padding-right: 20px; /* Space between text and image */
}

.site img {
    width: 140px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Softer corners for the image */
    display: flex;
    justify-content: flex-start;
    padding: 5px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
}

/* Optional: Styles for headings and paragraphs within .property */
.site h2 {
    font-size: 1.6em; /* Heading size */
    color: #1a1a1a; /* Darker shade for headings */
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 0;
}

.site p {
    font-size: 1em; /* Standard text size */
    opacity: 0.85; /* Slight transparency */
}

.map-middle{
    z-index: 0;
    width: 50%;
    height: 450px;
    margin-top: 100px;
    padding-bottom: 50px;
    margin: 0 auto;
    border: none;
    flex-shrink: 0;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    padding-top: 90px;
    gap: 100px;
}

.sub-article{
    display: flex;
    align-content: center;
    margin-top: 10px;
    margin-bottom: 100px;
}

#accommodationTitle{
    color: navy;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    padding-top: 40px;
    font-family: "Bruno Ace SC";
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #bfae6b, #f1e1b3);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.accommodation h2{
    color:  #bfae6b;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: auto;
}

.text{
    display: block;
    width: 40%;
    justify-content: right;
    align-content: right;
    margin-left: auto;
    font-size: 0.9em;
}

.sub-box{
    background-color: #bfae6b;
    border-radius: 4px;
    width: 30%;
    height: 7%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    left: 0;
    bottom: 0;
    position: absolute;
    pointer-events: auto;
    margin-bottom: 20px;
    margin-left: 20px;
    margin: 0 auto;
    letter-spacing: 2px;
}

.sub-box-content{
    text-align: center;
    font-size: 0.9em;
}

#siteSearch{
    width: 500px;
    min-width: 500px;
    margin: 0 auto;
    display: flex;
}

.dropdownContent>a:hover{
    color: #BFA14A;
  }

.site:hover img{
    cursor: pointer;
}

.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); /* Dimmed black background */
}

.modal-content {
position: relative;
margin: auto;
top: 50%;
transform: translateY(-50%);
text-align: center;
max-width: 80%;
}

.modal-snap {
width: 100%;
max-width: 600px;
}

.nav-btn {
position: absolute;
top: 50%;
background-color: rgba(0, 0, 0, 0.5);
color: white;
font-size: 24px;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1;
transform: translateY(-50%);
}

#prev {
left: 10px;
}

#next {
right: 10px;
}

.close {
position: absolute;
top: 10px;
right: 20px;
color: white;
font-size: 36px;
font-weight: bold;
cursor: pointer;
}}

@media screen and (min-width: 901px) and (max-width: 1024px){
.accommodation{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin: 0 auto;
    width: 90%;
    padding: 50px 0; 
}

.site {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    background: linear-gradient(45deg, #ffffff, #f0f0f0); /* Soft white to light gray gradient */
    padding: 25px; /* Increased padding */
    margin: 20px; /* Margin for spacing */
    width: 800px; /* Adjusted width for a more spacious feel */
    height: 330px; /* Set height */
    border-radius: 20px; /* Softer corners */
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2); /* Shadow for sophistication */
    color: #333333; /* Dark gray text */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth effects on hover */
    overflow: hidden;
    position: relative;
}


.site-content {
    flex: 1; /* Take up remaining space */
    padding-right: 20px; /* Space between text and image */
}

.site img {
    width: 120px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Softer corners for the image */
    display: flex;
    justify-content: flex-start;
    padding: 5px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
}

/* Optional: Styles for headings and paragraphs within .property */
.site h2 {
    font-size: 1.6em; /* Heading size */
    color: #1a1a1a; /* Darker shade for headings */
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 0;
}

.site p {
    font-size: 1em; /* Standard text size */
    opacity: 0.85; /* Slight transparency */
}

.map-middle{
    z-index: 0;
    width: 50%;
    height: 450px;
    margin-top: 100px;
    padding-bottom: 50px;
    margin: 0 auto;
    border: none;
    flex-shrink: 0;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    padding-top: 90px;
    gap: 100px;
}

.sub-article{
    display: flex;
    align-content: center;
    margin-top: 10px;
    margin-bottom: 100px;
}

#accommodationTitle{
    color: navy;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    padding-top: 40px;
    font-family: "Bruno Ace SC";
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #bfae6b, #f1e1b3);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.accommodation h2{
    color:  #bfae6b;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: auto;
}

.text{
    display: block;
    width: 40%;
    justify-content: right;
    align-content: right;
    margin-left: auto;
}

.sub-box{
    background-color: #bfae6b;
    border-radius: 4px;
    width: 30%;
    height: 7%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    left: 0;
    bottom: 0;
    position: absolute;
    pointer-events: auto;
    margin-bottom: 20px;
    margin-left: 20px;
    margin: 0 auto;
    letter-spacing: 2px;
}

.sub-box-content{
    text-align: center;
    font-size: 1em;
}

#siteSearch{
    width: 500px;
    min-width: 500px;
    margin: 0 auto;
    display: flex;
}

.dropdownContent>a:hover{
    color: #BFA14A;
  }

.site:hover img{
    cursor: pointer;
}

.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); /* Dimmed black background */
}

.modal-content {
position: relative;
margin: auto;
top: 50%;
transform: translateY(-50%);
text-align: center;
max-width: 80%;
}

.modal-snap {
width: 100%;
max-width: 600px;
}

.nav-btn {
position: absolute;
top: 50%;
background-color: rgba(0, 0, 0, 0.5);
color: white;
font-size: 24px;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1;
transform: translateY(-50%);
}

#prev {
left: 10px;
}

#next {
right: 10px;
}

.close {
position: absolute;
top: 10px;
right: 20px;
color: white;
font-size: 36px;
font-weight: bold;
cursor: pointer;
}}

@media screen and (min-width: 769px) and (max-width: 900px){
.accommodation{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin: 0 auto;
    width: 90%;
    padding: 50px 0; 
}

.site {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    background: linear-gradient(45deg, #ffffff, #f0f0f0); /* Soft white to light gray gradient */
    padding: 25px; /* Increased padding */
    margin: 20px; /* Margin for spacing */
    width: 600px; /* Adjusted width for a more spacious feel */
    height: 300px; /* Set height */
    border-radius: 20px; /* Softer corners */
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2); /* Shadow for sophistication */
    color: #333333; /* Dark gray text */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth effects on hover */
    overflow: hidden;
    position: relative;
    font-size: 0.8em;
}


.site-content {
    flex: 1; /* Take up remaining space */
    padding-right: 20px; /* Space between text and image */
}

.site img {
    width: 100px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Softer corners for the image */
    display: flex;
    justify-content: flex-start;
    padding: 5px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
}

/* Optional: Styles for headings and paragraphs within .property */
.site h2 {
    font-size: 1.6em; /* Heading size */
    color: #1a1a1a; /* Darker shade for headings */
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 0;
}

.site p {
    font-size: 1em; /* Standard text size */
    opacity: 0.85; /* Slight transparency */
}

.map-middle{
    z-index: 0;
    width: 50%;
    height: 450px;
    margin-top: 100px;
    padding-bottom: 50px;
    margin: 0 auto;
    border: none;
    flex-shrink: 0;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    padding-top: 90px;
    gap: 100px;
}

.sub-article{
    display: flex;
    align-content: center;
    margin-top: 10px;
    margin-bottom: 100px;
}

#accommodationTitle{
    color: navy;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    padding-top: 40px;
    font-family: "Bruno Ace SC";
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #bfae6b, #f1e1b3);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.accommodation h2{
    color:  #bfae6b;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: auto;
}

.text{
    display: block;
    width: 40%;
    justify-content: right;
    align-content: right;
    margin-left: auto;
}

.sub-box{
    background-color: #bfae6b;
    border-radius: 4px;
    width: 35%;
    height: 6%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    left: 0;
    bottom: 0;
    position: absolute;
    pointer-events: auto;
    margin-bottom: 20px;
    margin-left: 20px;
    margin: 0 auto;
    letter-spacing: 2px;
}

.sub-box-content{
    text-align: center;
    font-size: 1em;
}

#siteSearch{
    width: 500px;
    min-width: 500px;
    margin: 0 auto;
    display: flex;
}

.dropdownContent>a:hover{
    color: #BFA14A;
  }

.site:hover img{
    cursor: pointer;
}

.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); /* Dimmed black background */
}

.modal-content {
position: relative;
margin: auto;
top: 50%;
transform: translateY(-50%);
text-align: center;
max-width: 80%;
}

.modal-snap {
width: 100%;
max-width: 600px;
}

.nav-btn {
position: absolute;
top: 50%;
background-color: rgba(0, 0, 0, 0.5);
color: white;
font-size: 24px;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1;
transform: translateY(-50%);
}

#prev {
left: 10px;
}

#next {
right: 10px;
}

.close {
position: absolute;
top: 10px;
right: 20px;
color: white;
font-size: 36px;
font-weight: bold;
cursor: pointer;
}}

@media screen and (min-width: 481px) and (max-width: 768px){
.accommodation{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin: 0 auto;
    width: 90%;
    padding: 50px 0; 
}

.site {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    background: linear-gradient(45deg, #ffffff, #f0f0f0); /* Soft white to light gray gradient */
    padding: 25px; /* Increased padding */
    margin: 20px; /* Margin for spacing */
    width: 80%; /* Adjusted width for a more spacious feel */
    height: 200px; /* Set height */
    border-radius: 20px; /* Softer corners */
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2); /* Shadow for sophistication */
    color: #333333; /* Dark gray text */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth effects on hover */
    overflow: hidden;
    position: relative;
    font-size: 0.65em;
}


.site-content {
    flex: 1; /* Take up remaining space */
    padding-right: 20px; /* Space between text and image */
}

.site img {
    width: 80px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Softer corners for the image */
    display: flex;
    justify-content: flex-start;
    padding: 5px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
}

/* Optional: Styles for headings and paragraphs within .property */
.site h2 {
    font-size: 1.6em; /* Heading size */
    color: #1a1a1a; /* Darker shade for headings */
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 0;
}

.site p {
    font-size: 1em; /* Standard text size */
    opacity: 0.85; /* Slight transparency */
}

.map-middle{
    z-index: 0;
    width: 50%;
    height: 450px;
    margin-top: 100px;
    padding-bottom: 50px;
    margin: 0 auto;
    border: none;
    flex-shrink: 0;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    padding-top: 90px;
    gap: 100px;
}

.sub-article{
    display: flex;
    align-content: center;
    margin-top: 10px;
    margin-bottom: 100px;
}

#accommodationTitle{
    color: navy;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    padding-top: 40px;
    font-family: "Bruno Ace SC";
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #bfae6b, #f1e1b3);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.accommodation h2{
    color:  #bfae6b;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: auto;
}

.text{
    display: block;
    width: 40%;
    justify-content: right;
    align-content: right;
    margin-left: auto;
}

.sub-box{
    background-color: #bfae6b;
    border-radius: 4px;
    width: 40%;
    height: 5%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    left: 0;
    bottom: 0;
    position: absolute;
    pointer-events: auto;
    margin-bottom: 20px;
    margin-left: 20px;
    margin: 0 auto;
    letter-spacing: 2px;
}

.sub-box-content{
    text-align: center;
    font-size: 1em;
}

#siteSearch{
    width: 500px;
    min-width: 500px;
    margin: 0 auto;
    display: flex;
}

.dropdownContent>a:hover{
    color: #BFA14A;
  }

.site:hover img{
    cursor: pointer;
}

.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); /* Dimmed black background */
}

.modal-content {
position: relative;
margin: auto;
top: 50%;
transform: translateY(-50%);
text-align: center;
max-width: 80%;
}

.modal-snap {
width: 100%;
max-width: 600px;
}

.nav-btn {
position: absolute;
top: 50%;
background-color: rgba(0, 0, 0, 0.5);
color: white;
font-size: 24px;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1;
transform: translateY(-50%);
}

#prev {
left: 10px;
}

#next {
right: 10px;
}

.close {
position: absolute;
top: 10px;
right: 20px;
color: white;
font-size: 36px;
font-weight: bold;
cursor: pointer;
}}

 @media screen and (min-width: 345px) and (max-width: 480px) {
.accommodation{
    justify-content: space-evenly;
    margin: 0 auto;
    width: 87%;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.site {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    background: linear-gradient(45deg, #ffffff, #f0f0f0); /* Soft white to light gray gradient */
    width: 100%; /* Adjusted width for a more spacious feel */
    height: 300px; /* Set height */
    border-radius: 20px; /* Softer corners */
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2); /* Shadow for sophistication */
    color: #333333; /* Dark gray text */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth effects on hover */
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 60px;
  margin-right: 15px;
  padding: 20px;
  margin-top: 20px;
}

.image-stack img.snap {
  object-fit: cover;
}

.site-content {
    flex: 1; /* Take up remaining space */
    padding-right: 20px; /* Space between text and image */
}

.site img {
    width: 50px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Softer corners for the image */
    display: block;
    padding: 5px;
    padding-left: 10px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
    order: -1;
}


#hide{
    visibility: hidden;
    display: none;
}

/* Optional: Styles for headings and paragraphs within .property */
.site h2 {
    font-size: 0.9em; /* Heading size */
    color: #1a1a1a; /* Darker shade for headings */
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 0;
}

.site p {
    font-size: 0.35em; /* Standard text size */
    opacity: 0.85; /* Slight transparency */
}

.map-middle{
    z-index: 0;
    width: 80%;
    height: 300px;
    margin-top: 100px;
    padding-bottom: 50px;
    margin: 0 auto;
    border: none;
    flex-shrink: 0;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    padding-top: 90px;
    gap: 100px;
}

.sub-article{
    display: flex;
    align-content: center;
    margin-top: 10px;
    margin-bottom: 100px;
}

#accommodationTitle{
    color: navy;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    padding-top: 50px;
    font-family: "Bruno Ace SC";
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #bfae6b, #f1e1b3);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
    font-size: 2em;
}

.accommodation h2{
    color:  #bfae6b;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: auto;
    padding-left: 10px;
    width: 10%;
}

.text{
    display: block;
    width: 60%;
    justify-content: right;
    align-content: right;
    margin-left: auto;
    padding-right: 10px;
    font-size: 0.7em;
}

.sub-box{
    background-color: #bfae6b;
    border-radius: 4px;
    width: 30%;
    height: 7.5%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    left: 0;
    bottom: 0;
    position: absolute;
    pointer-events: auto;
    margin-bottom: 20px;
    margin-left: 20px;
    margin: 0 auto;
    letter-spacing: 2px;
}

.sub-box-content{
    text-align: center;
    font-size: 1em;
}

#siteSearch{
    width: 190px;
    margin: 0 auto;
    display: flex;
    font-size: 0.7em;
    margin-bottom: 20px;
}

.dropdownContent>a:hover{
    color: #BFA14A;
  }

.site:hover img{
    cursor: pointer;
}

.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); /* Dimmed black background */
}

.modal-content {
position: relative;
margin: auto;
top: 50%;
transform: translateY(-50%);
text-align: center;
max-width: 80%;
}

.modal-snap {
width: 100%;
max-width: 600px;
}

.nav-btn {
position: absolute;
top: 50%;
background-color: rgba(0, 0, 0, 0.5);
color: white;
font-size: 24px;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1;
transform: translateY(-50%);
}

#prev {
left: 10px;
}

#next {
right: 10px;
}

.close {
position: absolute;
top: 10px;
right: 20px;
color: white;
font-size: 36px;
font-weight: bold;
cursor: pointer;
}}

@media screen and (max-width: 344px) {
.accommodation{
    justify-content: space-evenly;
    margin: 0 auto;
    width: 80%;
    padding-top: 20px;
    
}

.site {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    background: linear-gradient(45deg, #ffffff, #f0f0f0); /* Soft white to light gray gradient */
    width: 100%; /* Adjusted width for a more spacious feel */
    height: 200px; /* Set height */
    border-radius: 20px; /* Softer corners */
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2); /* Shadow for sophistication */
    color: #333333; /* Dark gray text */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth effects on hover */
    overflow: hidden;
    position: relative;
    font-size: 0.5em;
    margin-bottom: 20px;
}


.site-content {
    flex: 1; /* Take up remaining space */
    padding-right: 20px; /* Space between text and image */
}

.site img {
    width: 50px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Softer corners for the image */
    display: flex;
    justify-content: flex-start;
    padding: 5px;
    padding-left: 10px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
}

#hide{
    visibility: hidden;
    display: none;
}

/* Optional: Styles for headings and paragraphs within .property */
.site h2 {
    font-size: 1.2em; /* Heading size */
    color: #1a1a1a; /* Darker shade for headings */
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 0;
}

.site p {
    font-size: 0.3em; /* Standard text size */
    opacity: 0.85; /* Slight transparency */
}

.map-middle{
    z-index: 0;
    width: 50%;
    height: 450px;
    margin-top: 100px;
    padding-bottom: 50px;
    margin: 0 auto;
    border: none;
    flex-shrink: 0;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    padding-top: 90px;
    gap: 100px;
}

.sub-article{
    display: flex;
    align-content: center;
    margin-top: 10px;
    margin-bottom: 100px;
}

#accommodationTitle{
    color: navy;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    padding-top: 50px;
    font-family: "Bruno Ace SC";
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #bfae6b, #f1e1b3);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
    font-size: 2em;
}

.accommodation h2{
    color:  #bfae6b;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: auto;
    padding-left: 10px;
    width: 10%;
}

.text{
    display: block;
    width: 60%;
    justify-content: right;
    align-content: right;
    margin-left: auto;
    padding-right: 10px;
}

.sub-box{
    background-color: #bfae6b;
    border-radius: 4px;
    width: 20%;
    height: 5%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    left: 0;
    bottom: 0;
    position: absolute;
    pointer-events: auto;
    margin-bottom: 20px;
    margin-left: 20px;
    margin: 0 auto;
    letter-spacing: 2px;
}

.sub-box-content{
    text-align: center;
    font-size: 1em;
}

#siteSearch{
    width: 190px;
    margin: 0 auto;
    display: flex;
    font-size: 0.7em;
    margin-bottom: 20px;
}

.dropdownContent>a:hover{
    color: #BFA14A;
  }

.site:hover img{
    cursor: pointer;
}

.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); /* Dimmed black background */
}

.modal-content {
position: relative;
margin: auto;
top: 50%;
transform: translateY(-50%);
text-align: center;
max-width: 80%;
}

.modal-snap {
width: 100%;
max-width: 600px;
}

.nav-btn {
position: absolute;
top: 50%;
background-color: rgba(0, 0, 0, 0.5);
color: white;
font-size: 24px;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1;
transform: translateY(-50%);
}

#prev {
left: 10px;
}

#next {
right: 10px;
}

.close {
position: absolute;
top: 10px;
right: 20px;
color: white;
font-size: 36px;
font-weight: bold;
cursor: pointer;
}}
