 *{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
/*.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background1.jpg);
    background-position: center;
    background-size: cover;
    position: relative; 
}*/

/*SLIDESHOW STYLES*/
.header{
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    /*z-index: 1;*/
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7));
}

/* Slideshow navigation dots */
.slideshow-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #fff;
    border-color: #11525f;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slideshow arrow controls (optional) 
.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.slideshow-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slideshow-arrow.prev {
    left: 20px;
}

.slideshow-arrow.next {
    right: 20px;
}

@media(max-width: 700px) {
    .slideshow-arrow {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .slideshow-arrow.prev {
        left: 10px;
    }
    
    .slideshow-arrow.next {
        right: 10px;
    }
    
    .slideshow-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}
*/

nav {
    position: relative;
    z-index: 50;
}

nav img {
    position: relative;
    z-index: 50;
}


/*.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background1.jpg);
    background-position: center;
    background-size: cover;
    position: relative; 
}*/

.side-title{
    margin-left: 15px;
    font-size: 20px;
    color: #fff;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 100px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #11525f;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #11525f;
    background: #11525f;
    transition: 1s;
}
nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #11525f;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

/*------About Page------*/
.about{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.accomlocations a, .accomlocations {
  text-decoration: none;
  color: inherit;
  display: block;  /*so the whole card stays clickable*/ 
} 
.accomlocations{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.accomlocations:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*-----Rooming and Pricing-----*/
.prices{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.accomlocations{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.accomlocations img{
    width: 100%;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.layer:hover{
    background:  rgba(211, 155, 81, 0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
.explore-btn {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #d39b51;
    cursor: pointer;
    opacity: 0;
    transition: 0.4s;
}
.layer:hover .explore-btn {
    opacity: 1;
    bottom: 35%;
}
.explore-btn:hover {
    background-color: #d39b51;
    color: #fff;
}
.room-details {
    width: 80%;
    margin: 60px auto;
    text-align: center;
}
.room-details h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #d39b51;
}
.room-details p {
    font-size: 16px;
    margin-bottom: 20px;
}

/*.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery img {
    width: 30%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}
*/

/* --- Gallery Container --- */
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 30px auto;
  padding: 0; /* Add padding for the buttons */
}

/* --- Scrollable Gallery --- */
.gallery {
  display: flex;
  overflow-x: scroll;
  gap: 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 10px;
}
.gallery::-webkit-scrollbar {
  display: none;
}
.gallery img {
  flex: 0 0 auto;
  width: 100%; /* Changed from 320px */
  max-width: 400px; /* Add a max-width instead */
  min-width: 300px; /* Ensure it doesn't get too small */
  height: auto; /*changed from 220px*/
  max-height: 600px; /*added this too*/
  object-fit: contain; /*changed from cover*/
  border-radius: 12px;
  transition: transform 0.3s ease;
  scroll-snap-align: center; /* Changed from 'start' - centers each image */
  flex-shrink: 0;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Adjust for mobile */
@media(max-width: 700px) {
  .gallery {
    gap: 10px;
    padding: 10px 5px;
  }
  
  .gallery img {
    width: calc(100vw - 30px); /* Almost full viewport width */
    height: auto;
    scroll-snap-align: center;
    max-height: 70vh;
    object-fit: contain;
  }
}

/* --- Scroll Buttons --- */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 15px 18px;
  border-radius: 50%;
  z-index: 10; /* Increased z-index */
  transition: background-color 0.3s ease;
}

.scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.scroll-btn.left {
  left: 20px;
}

.scroll-btn.right {
  right: 20px;
}

/* Hide arrows on small screens */
@media(max-width: 700px) {
   .scroll-btn.left {
    left: 10px;
  }

  .scroll-btn.right {
    right: 10px;
  }
}
  /*.gallery-container {
    padding: 0; /* Remove padding when arrows are hidden */
  /*}
}*/
/*------Facilities------*/
.facilities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.facilities-col {
    flex-basis: 31%; 
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.facilities-col img{
    width: 100%;
    border-radius: 10px;
}

.scroll-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  transition: background-color 0.3s;
}
.scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.scroll-btn.left {
  left: 10px;
}
.scroll-btn.right {
  right: 10px;
}

/*-----Call To Action------*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7)),url(images/contactus.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*------Footer-------*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #11525f;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

/*----- About Us Page? ----*/
.sub-header{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/back.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;  
}
.sub-header h1{
    margin-top: 100px;
}
.brixton43-header {
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/house-no43-rooms/outside.jpeg);
}
.brixton74-header {
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/house-no74-rooms/outside.png);
}
.auckland-header {
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/house-no33-rooms/cottage.jpg);
}
.hursthill-header {
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/house-no8-rooms/outside-no8.jpeg);
}
/*-------Download PDF Button-----*/
.download-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background-color: #d39b51;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.download-btn:hover {
    background-color: #c08943;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col img{
    width: 100%;
}
.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}
.blue-btn{
    border: 1px solid #11525f;
    background: transparent;
    color: #11525f;
}
.blue-btn:hover{
    color: #fff;
}

/*----- Contact Us Page ----*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0 0 0;
}
.location iframe{
    width: 100%;
    min-height: 500px; /* Changed from height: 450px */
    height: 500px;
    border-radius: 10px;
}
.contact-us{
    width: 80%;
    margin: auto;
    padding-bottom: 50px;
}
.contact-us .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
/* Make sure this section also has proper sizing */
.contact-col.map-col {
    flex-basis: 48%;
    min-height: 500px; /* Add this */
}

.contact-col.map-col iframe {
    width: 100%;
    height: 100%;
    min-height: 500px; /* Add this */
    border-radius: 10px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #11525f;
    margin-right: 30px;
}
.contact-col div .fa-brands{
    font-size: 28px;
    color: #11525f;
    margin-right: 30px;
}
.contact-col div .fa-solid{
    font-size: 28px;
    color: #11525f;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col h5 a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}
.contact-col h5 a:hover {
    color: #11525f;
    text-decoration: underline;
}

@media(max-width: 700px){ /* Responsive design for smaller screens */
    .contact-us .row {
        flex-direction: column;
    }
    .contact-col, .contact-col.map-col {
        flex-basis: 100%;
    }
}
/*-------Back Button on Rooms Page-----*/
.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background-color: #d39b51;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
    transition: 0.3s;
}
.back-btn:hover {
    background-color: #fff;
    color: #d39b51;
    border: 2px solid #d39b51;
}


/* Slideshow arrow controls (optional) 
.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.slideshow-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slideshow-arrow.prev {
    left: 20px;
}

.slideshow-arrow.next {
    right: 20px;
}

@media(max-width: 700px) {
    .slideshow-arrow {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .slideshow-arrow.prev {
        left: 10px;
    }
    
    .slideshow-arrow.next {
        right: 10px;
    }
    
    .slideshow-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}
*/

.side-title{
    margin-left: 15px;
    font-size: 20px;
    color: #fff;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 100px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #11525f;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #11525f;
    background: #11525f;
    transition: 1s;
}
nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #11525f;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

/*------About Page------*/
.about{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.accomlocations a, .accomlocations {
  text-decoration: none;
  color: inherit;
  display: block;  /*so the whole card stays clickable*/ 
} 
.accomlocations{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.accomlocations:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*-----Rooming and Pricing-----*/
.prices{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.accomlocations{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.accomlocations img{
    width: 100%;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.layer:hover{
    background:  rgba(211, 155, 81, 0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
.explore-btn {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #d39b51;
    cursor: pointer;
    opacity: 0;
    transition: 0.4s;
}
.layer:hover .explore-btn {
    opacity: 1;
    bottom: 35%;
}
.explore-btn:hover {
    background-color: #d39b51;
    color: #fff;
}
.room-details {
    width: 80%;
    margin: 60px auto;
    text-align: center;
}
.room-details h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #d39b51;
}
.room-details p {
    font-size: 16px;
    margin-bottom: 20px;
}

/*.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery img {
    width: 30%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}
*/

/* --- Gallery Container --- */
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 30px auto;
  padding: 0; /* Add padding for the buttons */
}

/* --- Scrollable Gallery --- */
.gallery {
  display: flex;
  overflow-x: scroll;
  gap: 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 10px;
}
.gallery::-webkit-scrollbar {
  display: none;
}
.gallery img {
  flex: 0 0 auto;
  width: 100%; /* Changed from 320px */
  max-width: 400px; /* Add a max-width instead */
  min-width: 300px; /* Ensure it doesn't get too small */
  height: auto; /*changed from 220px*/
  max-height: 600px; /*added this too*/
  object-fit: contain; /*changed from cover*/
  border-radius: 12px;
  transition: transform 0.3s ease;
  scroll-snap-align: center; /* Changed from 'start' - centers each image */
  flex-shrink: 0;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Adjust for mobile */
@media(max-width: 700px) {
  .gallery {
    gap: 10px;
    padding: 10px 5px;
  }
  
  .gallery img {
    width: calc(100vw - 30px); /* Almost full viewport width */
    height: auto;
    scroll-snap-align: center;
    max-height: 70vh;
    object-fit: contain;
  }
}

/* --- Scroll Buttons --- */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 15px 18px;
  border-radius: 50%;
  z-index: 10; /* Increased z-index */
  transition: background-color 0.3s ease;
}

.scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.scroll-btn.left {
  left: 20px;
}

.scroll-btn.right {
  right: 20px;
}

/* Hide arrows on small screens */
@media(max-width: 700px) {
   .scroll-btn.left {
    left: 10px;
  }

  .scroll-btn.right {
    right: 10px;
  }
}
  /*.gallery-container {
    padding: 0; /* Remove padding when arrows are hidden */
  /*}
}*/
/*------Facilities------*/
.facilities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.facilities-col {
    flex-basis: 31%; 
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.facilities-col img{
    width: 100%;
    border-radius: 10px;
}

.scroll-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  transition: background-color 0.3s;
}
.scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.scroll-btn.left {
  left: 10px;
}
.scroll-btn.right {
  right: 10px;
}

/*-----Call To Action------*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7)),url(images/contactus.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*------Footer-------*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #11525f;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

/*----- About Us Page? ----*/
.sub-header{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/back.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;  
}
.sub-header h1{
    margin-top: 100px;
}
.brixton43-header {
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/house-no43-rooms/outside.jpeg);
}
.brixton74-header {
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/house-no74-rooms/outside.png);
}
.auckland-header {
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/house-no33-rooms/cottage.jpg);
}
.hursthill-header {
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/house-no8-rooms/outside-no8.jpeg);
}
/*-------Download PDF Button-----*/
.download-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background-color: #d39b51;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.download-btn:hover {
    background-color: #c08943;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col img{
    width: 100%;
}
.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}
.blue-btn{
    border: 1px solid #11525f;
    background: transparent;
    color: #11525f;
}
.blue-btn:hover{
    color: #fff;
}

/*----- Contact Us Page ----*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0 0 0;
}
.location iframe{
    width: 100%;
    min-height: 500px; /* Changed from height: 450px */
    height: 500px;
    border-radius: 10px;
}
.contact-us{
    width: 80%;
    margin: auto;
    padding-bottom: 50px;
}
.contact-us .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
/* Make sure this section also has proper sizing */
.contact-col.map-col {
    flex-basis: 48%;
    min-height: 500px; /* Add this */
}

.contact-col.map-col iframe {
    width: 100%;
    height: 100%;
    min-height: 500px; /* Add this */
    border-radius: 10px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #11525f;
    margin-right: 30px;
}
.contact-col div .fa-brands{
    font-size: 28px;
    color: #11525f;
    margin-right: 30px;
}
.contact-col div .fa-solid{
    font-size: 28px;
    color: #11525f;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col h5 a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}
.contact-col h5 a:hover {
    color: #11525f;
    text-decoration: underline;
}

@media(max-width: 700px){ /* Responsive design for smaller screens */
    .contact-us .row {
        flex-direction: column;
    }
    .contact-col, .contact-col.map-col {
        flex-basis: 100%;
    }
}
/*-------Back Button on Rooms Page-----*/
.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background-color: #d39b51;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
    transition: 0.3s;
}
.back-btn:hover {
    background-color: #fff;
    color: #d39b51;
    border: 2px solid #d39b51;
}
