/* Allow scrolling */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

@font-face {
    font-family: "inspiration";
    src: url("./fonts/TIMESS__.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "rising";
    src: url("./fonts/Charming-Classy.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}


.section {
    height: 100vh;
    /* Full viewport height */
    width: 100vw;
    display: flex;
    flex-direction: column;
    /* Stack content vertically */
    justify-content: center;
    /* Vertically center */
    align-items: center;
    /* Horizontally center */
    scroll-snap-align: start;
    /* For snap scrolling */
    padding: 40px 20px;
    box-sizing: border-box;
    overflow: hidden;
    /* Prevent content from spilling into next section */
}


.section.snap-section {
    height: 100vh;
    scroll-snap-align: start;
    margin: 0;
    padding: 0;
}

.full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers entire section without stretching */
    display: block;
}



.snap-section {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
}

/* Remove position: fixed from video */
video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.video-container {
    position: relative;
    /* anchor for absolute children */
    width: 100%;
    margin: 0 auto;
    /* center horizontally */
    height: 100vh;
    overflow: hidden;
    /* optional: hide overflow */
}

.permanent-logo {
    position: fixed;
    /* relative to video-container */
    top: 0%;
    /* 35% from top of container */
    left: 50%;
    /* center horizontally */
    transform: translateX(-50%);
    /* center precisely */
    width: clamp(200px, 10vw, 400px);
    /* scales with screen width */
    height: auto;
    z-index: 1000;
}


.logo-overlay {
    position: absolute;
    top: -140px;
    /* distance from top of the container */
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    /* adjust logo size */
    pointer-events: none;
    /* so clicks go through */
    user-select: none;
    /* prevent selection */
    z-index: 10;
}

/* Hamburger menu */
.hamburger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    height: 1px;
    /* thickness of the lines */
    width: 100%;
    background: black;
    /* line color */
    border-radius: 1px;
    /* optional: smooth edges */
}


.hamburger-menu .bar {
    height: 4px;
    width: 100%;
    background-color: #c6c5c5;
    border-radius: 2px;
}

.dropdown-menu {
    position: fixed;
    top: 60px;
    left: 20px;
    background: rgba(178, 183, 185, 0.95);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    /* vertical stack */
    width: 180px;
    /* fixed width */
    z-index: 19;
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    /* optional: add smooth fade */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Links stacked vertically */
.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    margin: 4px 8px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'inspiration', sans-serif;
    display: block;
    /* ensure block-level for full width */
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

#unmuteBtn {
  position: absolute;
  left: clamp(10px, 2vw, 100px);   /* allow bigger left spacing */
  bottom: clamp(10px, 2vh, 100px); /* allow bigger bottom spacing */
  width: clamp(40px, 2vw, 120px);  /* allow bigger width on large screens */
  height: auto;
  cursor: pointer;
}


/* Other sections */
.section {
    min-height: 100vh;
    padding: 40px 20px;
    font-family: 'inspiration';
}

#inspiration {
    background-color: #dff0d8;
}

#penrith {
    background-color: #d9edf7;
}


.inspiration-text-section {
    width: 100%;
    padding: 4rem 2rem; /* spacing around content */
    background-image: url('images/Penrith-The Inspiration Bkgd.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #222;
    font-family: 'inspiration', serif;
    text-align: center;
  }
  
  /* Title on top */
  .inspiration-text-section h1 {
    font-weight: 50;
    letter-spacing: 0.5rem;
    font-size: clamp(2rem, 3vw, 5rem);
    margin-bottom: 7rem; /* spacing below h1 */
    color: #222;
    font-family: 'inspiration', serif;
  }
  
  /* Row containing image + text */
.inspiration-content {
  display: flex;
  gap: 2rem;
  align-items: stretch; /* ensures both children match height */
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left image */
.inspiration-pic-desktop {
  width: 45%;
  height: auto;
  object-fit: cover;
}

/* Right text */
.inspiration-texts {
  width: 41%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* first p at top, last p at bottom */
  text-align: center;
}

  
  
  /* Paragraph styling */
  .inspiration-texts p {
    font-weight: 300;
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    line-height: 1.8;
  }

/* Default: hidden on all screens */
.mobile-only-section {
    display: none;
  }
  


  
/* Section: full viewport, flex container */
.more-inspiration-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    /* centers wrapper horizontally */
    align-items: center;
    /* centers vertically */
    background-color: #a4abac;
    font-family: 'inspiration', serif;
    color: #222;
}


/* Image: grows proportionally */
.more-inspiration-wrapper img {
    width: clamp(150px, 25vw, 600px);
    /* min 150px, max 600px */
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

/* Wrapper: image left, text right */
.more-inspiration-wrapper {
    display: flex;
    flex-direction: row;
    gap: clamp(20px, 5vw, 60px);
    width: max-content;
    /* container width = widest child */
    transform: translateX(clamp(400px, 41vw, 2200px));
    /* optional right shift */

    /* Center text vertically relative to image */
    align-items: center;
    /* THIS aligns text to middle of image */
}

/* Text container stays the same */
.more-inspiration-text {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 30px);
    text-align: left;
    margin: 0;
    /* remove extra top margin that may offset alignment */
}


/* Paragraph always 50% of text container */
.more-inspiration-text p, p2 {
    width: 30%;
    font-size: clamp(0.5rem, 1.1vw, 8rem);
    line-height: 1.8rem;
    font-weight: 300;
    color: #000;
    margin: 0;
}

/* h2 styling: grows proportionally */
.more-inspiration-text h2 {
    font-family: 'inspiration', serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #bfc8ca;
    margin: 0;
    letter-spacing: clamp(1rem, 0.8vw, 2rem);
    font-size: clamp(4rem, 5vw, 8rem);
}

/* h3 styling: grows proportionally */
.more-inspiration-text h3 {
    font-family: 'inspiration', serif;
    font-weight: 400;
    margin: 0;
    letter-spacing: clamp(1rem, 0.8vw, 2rem);
    font-size: clamp(4rem, 5vw, 8rem);
    text-transform: uppercase;
    color: #bfc8ca;
}

/* Mobile stacking */
@media (max-width: 900px) {
    .more-inspiration-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        transform: translateX(0);
        /* no shift on small screens */
    }

    .more-inspiration-text {
        text-align: center;
    }

    .more-inspiration-text p {
        width: 100%;
        /* full width on mobile */
    }

    .more-inspiration-wrapper img {
        width: 80%;
        /* scale image on mobile */
        max-width: 400px;
    }
}

/* Section styling */
#penrith {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 80px;
    background: #f8f8f8;
}

/* Image styling */
#penrith .penrith-image {
    display: block;
    width: 100%;
    height: auto;
}

/* Penrith text section container */
.penrith-text-section {
    position: relative;
    /* to allow absolute positioning inside */
    padding: 60px 20px;
    background-color: #58595b;
    color: #ffffff;
    min-height: 600px;
    /* enough height for absolute content */
    overflow: hidden;
    /* optional */
}


#penrith-text h1 {
    font-family: 'rising', cursive;
    font-size: clamp(1.5rem, 1.7vw, 14rem); /* scales with viewport */
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin: clamp(10px, 2vw, 40px) 0; /* top/bottom spacing scales */
    letter-spacing: clamp(1px, 0.5vw, 3px);
    line-height: clamp(1.4, 2vw, 2.5);
    position: relative;
    right: clamp(50px, 15vw, 1180px); /* scales with viewport */
    bottom: clamp(50px, 25vh, 1200px); /* scales with viewport height */
}


/* Paragraph description */
.penrith-description,
.penrith-description2 {
    font-family: 'inspiration', serif;
    position: absolute;
    top: clamp(200px, 37vh, 1400px);     /* scales with viewport height */
    left: clamp(50px, 45vw, 1670px);     /* scales with viewport width */
    width: clamp(300px, 37vw, 1700px);   /* responsive width */
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    font-weight: 300;
    line-height: clamp(1.5rem, 2vw, 2rem);
    margin: 0;
    color: #ffffff;
    text-align: justify;
}

/* For second paragraph, just shift down more */
.penrith-description2 {
    top: clamp(300px, 50vh, 1500px); /* slightly lower than first description */
}



.numberlabelpic-desktop {
    display: block;
    position: absolute;  /* absolute positioning relative to parent */
    
    /* Clamp positions */
    top: clamp(300px, 63%, 1500px);   /* min 300px, preferred 30% of parent height, max 500px */
    left: clamp(50px, 46%, 1200px);   /* min 50px, preferred 20% of parent width, max 200px */

    /* Clamp width */
    width: clamp(200px, 36%, 1400px); 
    height: auto;   /* maintain aspect ratio */
}





/* 2 equal halves */
.more-penrith-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh; /* full screen height */
  background-color: #a9a9a9;
}


/* half containers */
.penrith-half {
  position: relative;
  overflow: hidden;
}

/* Default desktop images */
.penrith-half.left img {
    content: url('images/Penrith-Frotal\ View\ \(25\ Sept\).jpg');
  }
  
  /* Mobile override */
  @media (max-width: 768px) {
    .penrith-half.left img {
      content: url('images/Penrith-Frotal\ View\ \(25\ Sept\)\ M.jpg'); /* new mobile image */
    }
  }

  
/* left image: normal fill */
.penrith-half.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 3rem;
}

/* right image: full height, fill right half, no x-scroll */
.penrith-half.right img {
  width: 100%;           /* fill container width (exactly half of screen) */
  max-width: 100%;       /* prevent overflow */
  height: 100%;          /* fill container height */
  object-fit: cover;     /* cover container without distortion */
  object-position: bottom; /* align image to bottom */
  display: block;
}

/* overlay text on right image */
.penrith-half.right .text-content {
  position: absolute;
  top: 50%; /* 75% down vertically */
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'inspiration', serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.4rem;
  word-spacing: 0.5rem;
  color: #000;
  text-align: center;
  width: 60%;
}

/* Default: show desktop image, hide mobile image */
.desktop-img {
  display: block;
}
.mobile-img {
  display: none;
}

/* Mobile screens */
@media (max-width: 768px) {
  .desktop-img {
    display: none;
  }
  .mobile-img {
    display: block;
  }
}



/* Whole section */
.gallery-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #c2c2cb;
    padding: 1rem 2rem 4rem 2rem;
    box-sizing: border-box;
    text-align: left;
  }
  
  /* Title styling */
  .gallery-title {
    font-family: 'rising', cursive;
    font-size: clamp(1rem, 1.7vw, 3.5rem);
    letter-spacing: 0.1rem;
    word-spacing: 0.3rem;
    font-weight: 300;
    margin-bottom: 6rem;
    text-align: center; /* center the title */
    color: #000;
  }
  
  /* Content row (2-column layout) */
  .gallery-text-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.1rem;
    width: 100%;
    max-width: 1200px;
  }
  
  
  /* Left column */
  .gallery-text-left {
    flex: 1;
  }
  
  .gallery-text-block-two {
    font-family: 'inspiration', serif;
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    color: #000;
    line-height: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: clamp(3rem, 6vw, 6rem);
    width: clamp(60%, 78%, 85%);
    text-align: center;
    margin-top: clamp(1.5rem, 3vw, 3rem);
}

.gallery-text-block-three {
    font-family: 'inspiration', serif;
    font-size: clamp(1rem, 1.3vw, 1.6rem);
    letter-spacing: clamp(0.1rem, 0.3vw, 0.28rem);
    word-spacing: clamp(0.2rem, 0.5vw, 0.5rem);
    font-weight: bold;
    color: #000;
}

  
  /* Right column */
  .gallery-text-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  .gallery-side-image {
    width: 100%;
    max-width: 1000px;
    object-fit: cover;
  }
  

/* carousel */
/* Desktop carousel - hide on small screens */
.more-gallery-section {
    display: block; /* visible by default */
  }
  
  .more-gallery-section-mobile {
    display: none; /* hidden by default */
  }

  
  
  /* Mobile view */
  @media screen and (max-width: 768px) {
    /* Hide desktop carousel on mobile */
    .more-gallery-section {
      display: none;
    }
  
    /* Show mobile carousel on mobile */
    .more-gallery-section-mobile {
      display: block;
    }
  }
  
.carousel-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem; /* keep spacing between slides */
    align-items: center;
}

.carousel-image {
    max-width: 50%;   /* image only takes 80% of container */
    max-height: 50%;  /* keep vertical breathing space */
    margin: 0 auto;   /* centers the image */
    flex-shrink: 0;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.carousel-image.current {
    transform: scale(1.4);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    z-index: 20;
    padding: 0.6rem 1.2rem;
    user-select: none;
    color: #333;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(255, 255, 255, 1);
}

.carousel-button.left {
    left: 2%;
}

.carousel-button.right {
    right: 2%;
}

/* siteplan */
/* Desktop view default */
.desktop-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
  
  
  /* Mobile view */
  @media (max-width: 768px) {
    /* Hide desktop images */
    .desktop-only {
      display: none !important;
    }
  
    /* Show all mobile images */
    .mobile-only {
      display: block !important;
      width: 100% !important; /* first image full width by default */
      height: auto;
      margin: 1rem auto; /* spacing + center */
    }
  
    /* Second mobile image only (smaller) */
    .mobile-small1 {
      width: clamp(100px, 80%, 850px) !important; /* adjust smaller width */
      margin: 0.5rem auto; /* vertical spacing + center */
    }

    .mobile-small2 {
        width: clamp(100px, 80%, 850px) !important; /* adjust smaller width */
        margin: 0.5rem auto; /* vertical spacing + center */
        padding-top: clamp(0.5rem, 3vw, 2.5rem);
      }
  
    /* Stack images vertically */
    .siteplan-slide {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }
  

  
.siteplan-slide img.full-image {
    width: 100vw;
    /* Change this value to control width (e.g., 100vw for full width) */
    height: auto;
    /* Maintain aspect ratio */
    object-fit: contain;
    /* or use 'cover' if you want it to fill the space */
    display: block;
    margin: 0 auto;
    /* Center the image horizontally */
}

.virtualtour-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background-image: url('images/Penrith-Virtual\ Tour\ Bkgd.jpg'); /* path to your image */
    background-size: cover;       /* makes image cover entire section */
    background-position: center;  /* centers the image */
    background-repeat: no-repeat; /* prevents tiling */
    text-align: center;
    color: #fff;                  /* optional: text color on image */
}

.virtualtour-item a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* makes label text keep its original color */
}

.virtualtour-item a:visited {
  color: inherit;          /* prevents purple visited links */
}

  
  .virtualtour-title {
    font-family: 'rising', cursive; /* or your preferred font */
    font-size: clamp(1rem, 1.7vw, 13.5rem);
    letter-spacing: 0.1rem;
    word-spacing: 0.3rem;
    font-weight: 300;
    margin-bottom: 5rem; /* gap between title and images */
    color: #000;
  }
  
  .virtualtour-images {
    display: flex;
    justify-content: center;
    gap: 2rem; /* space between each image */
    flex-wrap: wrap; /* responsive wrap on small screens */
  }
  
  .virtualtour-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: clamp(250px, 25vw, 1500px); /* grows with viewport */
}

.virtualtour-img {
    width: 100%;   /* fills parent */
    height: auto;
    
}

.virtualtour-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 5rem); /* grows with viewport width */
}

.virtualtour-label {
    font-family: 'inspiration', serif;
    font-size: clamp(1rem, 1.3vw, 11.5rem);      /* scales with viewport width */
    letter-spacing: clamp(0.05rem, 0.2vw, 0.15rem);
    font-weight: 500;
    color: #000;
}

  

/* location */
/* Slide 1: Our Prime Location */
.location-slide1 {
    background-color: #5b605e;
    color: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 4rem;
    text-align: center;
}

.location-slide1 h1 {
    position: relative;
    top: 100px;
    /* distance from top */
    left: 430px;
    font-family: 'inspiration', serif;
    font-weight: 200;
    font-size: 5.2rem;
    letter-spacing: 4rem;
    text-transform: uppercase;
    color: #bfc8ca;
    /* darker brown or gold tone */
    margin-top: 10px;
}

.location-slide1 h2 {
    position: relative;
    top: 20px;
    /* distance from top */
    left: 220px;
    font-family: 'inspiration', serif;
    font-weight: 200;
    font-size: 5.2rem;
    letter-spacing: 4rem;
    text-transform: uppercase;
    color: #bfc8ca;
    /* darker brown or gold tone */
    margin-top: 10px;
}

.location-slide1 p {
    position: relative;
    top: 100px;
    /* adjust to your desired spacing */
    right: 270px;
    font-family: 'inspiration', serif;
    font-size: 1.1rem;
    color: #ffffff;
    text-align: justify;
    margin-bottom: 2rem;
    width: 40%;
    line-height: 2rem;
    font-weight: 50;
}

#location2 {
    background-color: #afb5b4;
    /* optional background */
}

/* Default: desktop only */
.location-bottom-image-desktop {
    display: flex;  /* show desktop container */
  }
  
  .location-bottom-image-mobile {
    display: none;  /* hide mobile container */
  }
  
  /* Mobile view */
  @media (max-width: 768px) {
    .location-bottom-image-desktop {
      display: none !important;  /* hide desktop container */
    }
  
    .location-bottom-image-mobile {
      display: flex !important;  /* show mobile container */
      justify-content: center;
      top: 2%;
    }
  }
  
  
  
/* Section styling */
.location-slide2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    background-color: #f5f5f5; /* optional background */
    box-sizing: border-box;
  }
  
  /* Row with text + image */
  .location-row {
    display: flex;
    align-items: center;
    justify-content: center; /* centers the row horizontally */
    gap: 2rem; /* spacing between text and image */
    flex-wrap: wrap; /* ensures responsiveness on smaller screens */
    margin-bottom: 3rem; /* space before bottom image */
  }
  
  /* Text container */
  .location-text {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .location-text h1 {
    position: relative;
  left: -70px;
    font-family: 'Rising', serif;
    font-size: clamp(1rem, 1.7vw, 3.5rem);
    letter-spacing: 0.1rem;
    word-spacing: 0.3rem;
    font-weight: 300;
    color: #333;
    margin: 0.3rem 0;
    line-height: 1.3;
  }
  
  .location-text h2 {
    position: relative;
  left: clamp(5px, 5vw, 150px);
    font-family: 'Rising', serif;
    font-size: clamp(1rem, 1.7vw, 3.5rem);
    letter-spacing: 0.1rem;
    word-spacing: 0.3rem;
    font-weight: 300;
    color: #333;
    margin: 0.3rem 0;
    line-height: 1.3;
  }
  
  /* Side image styling */
  .side-image {
    width: 30%;        /* size control */
    height: auto;
    object-fit: cover;
    position: relative; 
    left: 55px;       /* move right (negative moves left) */
    top: 0px;        /* move upwards (positive moves down) */
  }
  
  
  /* Bottom image container */
  .location-bottom-image-desktop {
    position: relative;
    width: 80%;
    display: flex;
    justify-content: center;
  }
  
  .bottom-image {
    margin-top: 2rem;
    width: 80%;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
  }
  


.location-slide3 {
    padding: 4rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.location-slide3 h1 {
    font-size: 2.5rem;
    font-family: 'inspiration', serif;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
}

.location-slide3 {
    position: relative;
    padding: 4rem 0;
    background-color: #f9f9f9;
    text-align: center;
    overflow: hidden;
}

.location-slide3 h1 {
    font-size: 2.5rem;
    font-family: 'inspiration', serif;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
}

.map-top-space {
    height: 100px;
    /* how tall the white space should be */
    background-color: white;
    /* makes it white */
}

/* Shared wrapper */
.map-scroll-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    cursor: grab;
  }
  
  /* Draggable image */
  .draggable-map {
    position: absolute;
    top: 0;
    left: 0;
    user-select: none;
    -webkit-user-drag: none;
    z-index: 1;
  }
  
  /* Mobile Drag Button */
  .mobile-drag-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(60px, 20vw, 120px);
    height: clamp(60px, 20vw, 120px);
    font-size: clamp(0.8rem, 4.3vw, 1.2rem);
    z-index: 10;
    cursor: pointer;
    background: rgba(100, 100, 100, 0.8);
    color: #f0f0f0;
    font-weight: 600;
    font-family: 'inspiration';
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .mobile-drag-btn:hover {
    background: rgba(120, 120, 120, 0.9);
    transform: translate(-50%, -50%) scale(1.05);
  }
  
  /* Mobile Exit Button */
  .mobile-exit-btn {
    font-family: 'inspiration';
    position: absolute;
    top: clamp(10px, 10vw, 50px);
    right: clamp(10px, 2vw, 20px);
    padding: clamp(0.5rem, 1vw, 1rem);
    font-size: clamp(0.7rem, 4.3vw, 1.2rem);
    z-index: 10;
    display: none;
    cursor: pointer;
    background: rgba(100, 100, 100, 0.8);
    color: #f0f0f0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .mobile-exit-btn:hover {
    background: rgba(120, 120, 120, 0.9);
    transform: scale(1.05);
  }
  
  /* Hide mobile elements on desktop, desktop elements on mobile */
  @media (max-width: 768px) {
    #mapScrollWrapper { display: none; }
    .mobile-drag-btn, .mobile-exit-btn { display: block; }
  }
  
  @media (min-width: 769px) {
    #mapScrollWrapperMobile { display: none; }
    .mobile-drag-btn, .mobile-exit-btn { display: none !important; }
  }

/* Default: show desktop, hide mobile */
.desktop-only {
    display: block;
  }
  
  .mobile-only {
    display: none;
  }
  
  /* Mobile view */
  @media (max-width: 768px) {
    .desktop-only {
      display: none !important; /* hide desktop container */
    }
  
    .mobile-only {
      display: block !important; /* show mobile container */
    }
  
    /* Optional: make mobile image scale nicely */
    .centered-image-mobile {
      width: 80%;
      max-width: 800px;
      display: block;
      margin: 0 auto; /* center horizontally */
    }
  }

  
.image-section {
    background-image: url('images/Penrith-Location\ Listing\ Bkgd.jpg');
    /* your background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    /* full page height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container {
    position: relative;
    text-align: center;
    width: 80%;
}

.centered-image {
    max-width: 70%;
    /* adjust size */
    height: auto;
}


/* Desktop text shows only on desktop */
.desktop-text-location44 {
    display: block;
  }
  .mobile-image-location44 {
    display: none;
  }
  
  /* Mobile overrides */
  @media screen and (max-width: 1023px) {
    .desktop-text-location44 {
      display: none;   /* hide desktop text */
    }
    .mobile-image-location44 {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-height: 800px;   /* limit section height */
        overflow: hidden;    /* crop if image is too tall */
        padding: 0.5rem 0;   /* small vertical padding */
    }

    .mobile-heading-location44-img {
        width: auto;         /* auto width to maintain aspect ratio */
        max-width: 100%;     /* fill container horizontally */
        max-height: 100%;    /* fit within section height */
        height: auto;
    }

    .location-slide4 {
        max-height: 800px;   /* optional: limit entire section */
        overflow: hidden;    
    }
  }
  

.location-slide4 {
    background-color: #a1a5a5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.location-slide4-container h1 {
    font-family: 'inspiration', serif;
    font-size: 1.5rem;
    color: #000000;
    letter-spacing: 1px;
    line-height: 1.8;
    letter-spacing: 1rem;
    font-weight: 100;
}

.location-slide4-container h2 {
    font-family: 'inspiration', serif;
    font-size: 1.5rem;
    color: #000000;
    letter-spacing: 1px;
    line-height: 1.8;
    letter-spacing: 1rem;
    font-weight: 100;

}

.location-slide5 {
 background-color: #6b6b6b;
}


#location5-desktop {
    position: relative;
    height: 100vh;  /* keeps full viewport height */
    width: 100%;
    box-sizing: border-box;
    padding-top: 180px; /* moves all inner content down */
}


/* Container for all content to manually position */
#location5-desktop .content-wrapper {
    position: absolute;
    top: 40%; /* instead of 20% */
    left: 5%;
    width: 90%;
}


/* Images row */
.location5-images-row-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 90%;        /* fill wrapper */
    max-width: 2100px;  /* spacing to text below */
    margin-left: 40px;
}

.location5-images-row-desktop img {
    width: 32%;          /* three images roughly equal width */
    height: auto;
    object-fit: cover;
    margin-left: 20px;
}

/* Main text */
.location5-main-text-desktop {
    text-align: center;
    font-size: clamp(0.5rem, 1.1vw, 10.1rem);
    line-height: clamp(1.4rem, 2.5vw, 12rem);
    color: #ffffff;
    max-width: clamp(400px, 55vw, 2600px);
    margin: 0 auto;
    padding-top: clamp(20px, 6vh, 200px); /* responsive top spacing */
}

  
  .location-slide6-background-mobile {
    display: none;
  }

.location-slide6 {
    position: relative;
    height: 100vh;
    /* full viewport height */
    overflow: hidden;
}

/* Big image: fill container and behind */
.location-slide6-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

  
  /* Mobile background override */
  @media (max-width: 768px) {
    .location-slide6-background {
      content: url('images/Penrith-Location\ Nature\ \(M\)\ 19\ Sept.jpg'); /* mobile background image */
      width: 100%;
      height: auto; /* optional, maintain aspect ratio */
      object-fit: cover;
    }
  }
  

/* Smaller overlay image */
.location-slide6-overlay {
    position: absolute;
    top: clamp(65%, 67%, 80%);      /* responsive vertical position */
    left: clamp(20%, 35%, 35%);     /* responsive horizontal position */
    transform: translate(-50%, -50%);
    width: clamp(200px, 25vw, 2600px);  /* responsive width */
    height: auto;
    z-index: 2;
    pointer-events: none;            /* optional */
}

/* Desktop view: hide mobile duplicate */
.mobile-only1 {
    display: none;
  }

  .mobile-only2 {
    display: none;
  }
  
  /* Mobile view: hide desktop grid, show mobile grid */
  @media (max-width: 768px) {
    .desktop-only {
      display: none;
    }
    .mobile-only1 {
      display: grid;
      
    }

    .mobile-only2 {
        background-color: #a1a5a5;
        display: grid;
      }
  }


  .developers-inner-container {
  padding-top: clamp(4rem, 10vh, 15rem); /* min 4rem, scales with 10% of viewport height, max 15rem */
}


  
.developers-section {
  padding: 4rem 2rem;
  background-color: #a1a5a5;
}

.developers-inner-container {
  max-width: clamp(1200px, 80vw, 2800px); /* min 1200px, scales with 80% of viewport, max 2000px */
  margin: 0 auto;
}


/* Title on top */
.developer-text {
  font-size: clamp(0.8rem, 1vw, 1.2rem);
  font-weight: bold;
  letter-spacing: 0.3rem;
  text-align: left;        /* align with description column */
  margin-bottom: 2rem;     /* space below title */
  margin-left: 325px;      /* move it right horizontally */
  margin-top: 30px;        /* move it down vertically */
}


/* Each row: logo + description horizontally */
.developer-row {
  display: flex;
  align-items: flex-start; /* top-align logo and description */
  gap: 2rem; /* space between logo and description */
  margin-bottom: 3rem; /* space between rows */
}

/* Logo block */
.developer-logo-block {
  flex: 1; /* controls logo width */
  display: flex;
  justify-content: flex-start; /* align left */
}

.developer-image {
  max-width: 170px;
  height: auto;
  object-fit: contain;
}

/* Description block */
.developer-description-block {
  flex: 3; /* controls description width */
}

.developer-description {
  font-size: clamp(0.79rem, 1vw, 1rem);
  line-height: clamp(1.3rem, 2vw, 1.6rem);
  text-align: justify;
}

/* Mobile: show only on smaller screens */
.mobile-only3,
.mobile-only4 {
  display: block; /* visible by default */
}

/* Desktop: hide on larger screens */
@media screen and (min-width: 1024px) {
  .mobile-only3,
  .mobile-only4 {
    display: none !important;
  }
}

  
  /* Mobile view: hide desktop grid, show mobile grid */
  @media (max-width: 768px) {

    .mobile-only4 {
        background-image: url('images/enquiry.jpeg');
        /* replace with your image path */
    background-size: cover;
    /* makes image cover the whole section */
    background-position: center;
    /* centers the image */
    background-repeat: no-repeat;
    /* prevents tiling */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* optional: overlay a light color for better readability */
    position: relative;
      }
  }


/* enquiry */
.enquiry-section {
    background-image: url('images/enquiry.jpeg');
    /* replace with your image path */
    background-size: cover;
    /* makes image cover the whole section */
    background-position: center;
    /* centers the image */
    background-repeat: no-repeat;
    /* prevents tiling */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* optional: overlay a light color for better readability */
    position: relative;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    /* adjust opacity & color as needed */
    z-index: 0;
}

.enquiry-container {
    position: relative;
    /* ensures content stays above overlay */
    z-index: 1;
    display: flex;
    width: 80%;
    max-width: 1200px;
    gap: 5rem;
    align-items: flex-start;
    /* make form align top, image keeps full size */
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 7rem;
    padding-left: 14rem;
}

.enquiry-form {
    flex: 0 0 auto;
    /* don’t stretch vertically */
    align-self: flex-start;
    /* stick to the top */
    min-width: 300px;
    max-width: 600px;
    /* optional: limit width */
}

.enquiry-form h2 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'inspiration', serif;
    text-align: left;
    font-weight: 400;
    white-space: nowrap;
    
    /* keep text in one line */
}

.form-row {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    /* space between label and input */
}

.form-row label {
    min-width: 60px;
    /* fixed width for labels */
    font-weight: bold;
}

.form-row input,
.form-row textarea {
    flex: 1;
    width: 100%;
    padding: 0.8rem 0.5rem;
    /* increase height of fields */
    font-size: 0.9rem;
    /* bigger text */
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
}


.enquiry-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* less vertical space between fields */
}

.enquiry-form label {
    font-weight: bold;
    font-size: 0.9rem;
    /* smaller labels */
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 0.3rem 0;
    /* reduced height */
    border: none;
    border-bottom: 0.8px solid rgba(0, 0, 0, 0.5);
    background: transparent;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    /* slightly thicker and darker on focus */
}

.enquiry-form button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #555151;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'inspiration', serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.enquiry-form button:hover {
    background-color: #555;
}

.enquiry-image {
    flex: 1;
    /* image still takes remaining space */
    min-width: 300px;
}

.enquiry-image img {
    width: 75%;
    height: auto;
    object-fit: cover;
}

.para-container {
    text-align: center;
    /* center-aligns text inside */
    width: 100%;
    /* take full width of parent */
    display: flex;
    flex-direction: column;
    /* stack paragraphs vertically */
    align-items: center;
    margin-top: 50px;
}

.para-one,
.para-one2 {
    font-size: 18px;
    color: #785227;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    /* keeps them tight to their text */
    margin: 4px 0;
}


.para-two {
    padding: 0 5%;
    /* 5% left & right padding */
    text-align: justify;
    font-size: 10px;
    margin-top: 35px;
    width: 69%;
}

.para-three {
    padding: 0 5%;
    /* 5% left & right padding */
    text-align: justify;
    font-size: 8.2px;
    margin-top: 35px;
    width: 69%;
}

.phone-link {
  color: inherit;        /* keeps the text color the same as parent */
  text-decoration: none; /* removes the underline */
  cursor: pointer;       /* shows pointer on hover */
}


  