
 /* Set Variables */
 :root {
    --dark-blue: #3f525b;
    --light-blue: #52a9c9;
    --orange: #e8780a;
    --grey: #8f8681;
    --drop-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

/* General Page */
body {
    color: var(--grey);
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    background-color: #e9e9e9;
    margin: 0;
    padding: 0;
}

/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.container {
    margin: 0 auto;
}

/* Header */
header .container {
    display: flex;
    justify-content: space-between; /* Positions items at opposite ends */
    align-items: flex-end; /* Aligns items to the bottom of the header */
    position: relative; /* Establishes positioning context if needed */
    padding: 10px; /* Adjust padding as needed */
    width: 95%;
}

#header-left {
    display: flex;
    flex-direction: column; /* Stacks the logo text vertically */
    text-align: right; /* Aligns text to the left */
}

#header-right {
    display: flex;
    align-items: flex-end; /* Aligns navigation to the bottom */
}

.logo, .logo2 {
    margin: 0;
    line-height: 1;
}

.logo {
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 40px;
    color: var(--light-blue);
    margin: 0;
}

.logo2 {
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 15px;
    color: var(--grey);
    margin: 0;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between logo and hamburger */
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 17px;
    color: var(--dark-blue);
    text-decoration: none;
    padding: 15px 0;
    transition: color 0.3s ease; /* Optional: adds a smooth transition effect */
}

.nav-links a:hover {
    color: var(--light-blue); /* The color you want the link to change to on hover */
}

#home .home a,
#listings .listings a,
#help .help a,
#contact .contact a {
    color: var(--orange); /* Highlight current location on nav menu */
    pointer-events: none;
    cursor: default;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: var(--grey);
    margin-bottom: 4px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative; /* Ensure hero is positioned relative so children can be absolutely positioned */
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
    text-align: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Adjust the color and opacity as needed */
    z-index: 1;
}
.no-overlay::before {
    background: none;
}

.hero-content {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.hero-copy {
    display: inline-block;                          /* Shrink width to fit content */
    text-align: left;
    color: #ffffff;
}

.hero-copy1, .hero-copy2 {
    text-shadow: var(--drop-shadow);
}

.hero-copy1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: -12px;
}

.hero-copy2 {
    font-size: 65px;
    font-weight: 900;
    margin-left: 70px;    /* Remove negative margin */
}

.hero-goldfish {
    position: absolute;
    left: 100%;
    top: -120px;         
    margin-left: 20px; 
    width: 300px;     
    height: 300px;
    border-radius: 50%;     
    border: 6px solid var(--orange);
    object-fit: cover;   
    box-shadow: var(--drop-shadow);
}

.hero .property-details-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-evenly; /* Space the items evenly horizontally */
    align-items: center;
    background: linear-gradient(
        to bottom right, 
        rgba(63, 82, 91, 1),
        rgba(86, 117, 140, 0.9)
    );
    box-shadow: var(--drop-shadow);
    z-index: 3;
    padding: 0; /* Remove padding if needed, adjust as desired */
}

/* Adjust items for horizontal layout */
.hero .property-details-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hero .property-details-item span {
    font-size: 25px;
    padding-left: 10px;
    line-height: 40px;
    color: #fff;
    white-space: nowrap; /* Prevents text from wrapping to the next line */
}

.hero .property-details-item img {
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
}

.hero .property-details-item:last-child {
    margin-bottom: 0;
}

/* Main Content Section */
.main-content .container {
    align-items: center;
    justify-content: center;
    text-align: left;
    max-width: 1225px;
    padding-top: 25px;
}

.title {
    font-size: 30px;
    color: var(--grey);
    margin-bottom: 3px;
    border-bottom: 1px solid #b9b9b9;
}

.title .first-word {
    font-weight: 900;
    color: var(--orange);
}

.listing-address {
    font-size: 30px;
    font-weight: 900;
    color: var(--orange);
}

.listing-tagline {
    font-size: 25px;
    margin-left: 5px;
    margin-bottom: 20px;
    margin-top: -4px;
    border-bottom: 1px solid #b9b9b9;
}

.main-content p {
    margin: 0 10px 10px 10px;
    line-height: 1.4em;
}

.main-content p:last-child {
    margin-bottom: 0;
}

.main-content ul {
    margin-left: 50px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.main-content ul li:not(:last-child) {
    margin-bottom: 5px;
}

.centered-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Keeps internal content left-aligned */
    margin: 0 auto; /* Centers the flex container */
    width: fit-content; /* Adjusts the width to fit content */
}

.main-content .logo {
    font-size: 30px;
    margin-top: 10px;
}

.contact-details .logo {
    margin-top: 0;
}
.main-content .logo2 {
    font-size: 14px;
    font-weight: 400;
}

.main-content .price {
    color: var(--dark-blue);
    font-weight: 700;
    margin-left: 10px;
}

.main-content img {
    margin-top: 5px;
}
.main-content h3 {
    font-size: 15px;
    font-weight: 400;
    color: #8f8681;
}

.section-title {
    font-size: 25px;
    color: var(--grey);
    margin-bottom: 3px;
    text-transform: uppercase;
}

.section-title .first-word {
    font-weight: 900;
    font-size: 25px;
    color: var(--light-blue);
}

.cards-section .section-title {
    margin-left: -20px;
}

.listing-links {
    display: flex;
    justify-content: center; /* Centers the links horizontally */
    gap: 15px; /* Adds space between the links */
    margin-top: 20px; /* Optional: spacing above the links */
}

.listing-links a {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--orange);
    border-radius: 3px;
    color: var(--orange);
    background-color: transparent;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.listing-links a:hover {
    background-color: var(--orange);
    color: #fff;
}

/* Photo Gallery */
.photo-gallery .container {
    max-width: 1225px;     /* Ensure a container wide enough for three images across (3x400px + gaps) */
    margin: 0 auto;
    margin-top: 20px;
}

.photo-gallery .section-title {
    flex-basis: 100%;
    width: 100%;
}

.photo-gallery-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
    justify-content: flex-start;
}

.photo-gallery .photo-item {
    width: 100%;          /* Fixed width for each image container */
    box-sizing: border-box;
}

.listing-photo {
    width: 100%;           /* Image fills the container width */
    height: auto;          /* Maintain aspect ratio */
    display: block;        /* Ensure no unwanted whitespace under images */
}

/* Lightbox Overlay Styles */
.lightbox-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-overlay .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay img {
    max-width: 100%;
    max-height: 100%;
    cursor: pointer; /* Clicking the image goes to the next image */
    display: block;
    box-shadow: 0 0 10px #000;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(82, 169, 201, 0.6);
    box-shadow: var(--drop-shadow);
    font-size: 24px;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 0;
    cursor: pointer;
    z-index: 10;
    font-weight: bold;
    text-align: center;
}

.lightbox-close:hover {
    background-color: rgba(82, 169, 201, 0.9);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(232, 120, 10, 0.6);
    box-shadow: var(--drop-shadow);
    font-size: 24px;  
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 0;
    cursor: pointer;
    user-select: none;
    z-index: 10;
}

.lightbox-arrow:hover {
    background-color: rgba(82, 169, 201, 0.8);
}

.lightbox-arrow.left {
    left: 10px;
}

.lightbox-arrow.right {
    right: 10px;
}

.lightbox-arrow.hidden {
    display: none;
}

.lightbox-trigger {
    cursor: pointer;
}

/* Contact Content */
.contact-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1225px;
    margin: 0 auto;
    padding-top: 10px;
    text-align: left;
}

.contact-form {
    flex: 2;
    box-sizing: border-box;
    /* Optional: Add padding if desired */
}

p .form-message {
    margin: 0;
}
.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;   /* Stack elements vertically */
    align-items: flex-start;  /* Left-align the content inside this column */
    box-sizing: border-box;
}

.contact-details a {
    color: var(--dark-blue);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Form Container */
#contact-form {
    display: block;
    width: 95%;
    max-width: 800px; /* Adjust as desired */
}

#contact-form .row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adds space between columns in the row */
    margin-bottom: 10px; /* Space between rows */
}

#contact-form .row:last-child {
    margin-bottom: 0; /* Space between rows */
}

#contact-form .col-1, 
#contact-form .col-3 {
    flex: 1; 
    min-width: 0; /* Allows flex items to shrink properly */
}

/* Form Controls */
#contact-form .form-control {
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: var(--dark-blue);
    background: #fff; /* Clean, neutral background */
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact-form .form-control::placeholder {
    color: #aaa; /* Subtle placeholder color for a modern look */
}

/* Focus State */
#contact-form .form-control:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 5px rgba(82,169,201,0.3); /* Subtle glow of light blue */
}

/* Textarea */
#contact-form textarea.form-control {
    resize: vertical; /* Allows vertical resizing while maintaining aesthetics */
}

/* Submit Button */
#contact-form .btn-contact {
    display: inline-block;
    background-color: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid var(--orange);
    border-radius: 3px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    width: auto;
}

#contact-form .btn-contact:hover {
    background-color: #e9e9e9;
    color: var(--orange);
}

/* Recaptcha alignment adjustments if needed */
#contact-form .g-recaptcha {
    margin-bottom: 10px;
    text-align: left; /* Ensure alignment matches form direction */
}

/* Error States (if using error classes) */
.has-error .form-control {
    border-color: #e03131; /* Subtle red for error */
    box-shadow: 0 0 5px rgba(224,49,49,0.3);
}

/* Google Map */
.google-map .container {
    max-width: 1225px;
    margin: 0 auto;
    margin-top: 20px;
}

.map-display {
    width: 100%;
    height: 400px; /* Adjust as needed */
    border: 1px solid #b9b9b9;
}

/* Cards Section */
.cards-section {
    padding-top: 20px;
}

.cards-section .container {
    position: relative;
    max-width: 1227px;
    padding: 0 20px;
    box-sizing: border-box;
}

.cards {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on touch devices */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding: 0; /* Adjust padding */
}

.card {
    background: #f4f4f4;
    width: 30%;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
}

/* Real Estate Listing Card Styles */
.property-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    margin-right: 10px;
    min-width: 387px;
    max-width: 387px;
    width: auto;
    border: 1px solid #b9b9b9;
    overflow: hidden;
    background-color: #fff;
    box-shadow: var(--drop-shadow);
}

.property-image {
  position: relative;
}

.property-image img {
  width: 100%;
  height: auto;
  display: block;
}

.property-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--dark-blue);
  color: #fff;
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 0.9em;
  text-transform: uppercase;
}

.property-info-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom right, var(--dark-blue), #56758c);
  color: #fff;
  display: flex;
  justify-content: space-around;
  padding: 5px 0;
}

.property-info-item {
  display: flex;
  align-items: center;
}

.property-info-item img {
  width: 20px;
  height: 20px;
}

.property-info-item span {
    font-size: 1em;
    padding-left: 10px;
}

.property-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Make the details section take up all remaining space */
    padding: 15px;
    font-family: inherit;
}

.property-title {
  font-size: .9em;
  margin: 0 0 5px;
  color: #333;
}

.property-location {
  font-size: 0.9em;
    line-height: 1.3em;
  color: #777;
  margin: 0 0 10px;
}

.property-price {
  font-size: 1.1em;
  color: var(--dark-blue);
  margin: 0 0 15px;
}

.property-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto; /* Pushes the button to the bottom of the flex container */
    padding: 10px 20px;
    border: 2px solid;
    border-image: linear-gradient(to bottom right, var(--orange), #f99b3e) 1;
    border-radius: 3px;
    background: linear-gradient(to bottom right, var(--orange), #f99b3e);
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.property-button:hover {
    background-color: transparent;
    color: var(--orange);
}

/* Scroll Buttons */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;  
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 0;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(232, 120, 10, 0.6); 
    box-shadow: var(--drop-shadow);
}

.left-button {
    left: 0; /* Adjust as needed */
}

.right-button {
    right: 0; /* Adjust as needed */
}

.scroll-button:hover {
    outline: none;
    background-color: rgba(82, 169, 201, 0.8); /* Adjust color */
}

/* Footer */
footer {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Center the footer content horizontally */
footer .container {
    width: 100%;
    margin: 0 auto; /* Centers the container within the footer */
}

#footer-nav {
    display: flex;
    justify-content: center; /* Center the child elements horizontally */
    width: 100%;             /* Ensure it takes up the full width */
    background: linear-gradient(
        to bottom right, 
        rgba(63, 82, 91, 1),
        rgba(86, 117, 140, 0.9)
    );
    padding: 12px;
    margin-bottom: 15px;
}

.footer-nav-links {
    display: flex;
    list-style: none;
    justify-content: center; /* Horizontally centers items */
}

.footer-nav-links li {
    margin-left: 20px;
}

.footer-nav-links a {
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    transition: color 0.3s ease; /* Optional: adds a smooth transition effect */
}

.footer-nav-links a:hover {
    color: var(--light-blue); /* The color you want the link to change to on hover */
}

/* Footer Contact */
.footer-contact {
    display: flex;
    align-items: center; /* Vertically centers items */
    justify-content: center; /* Centers items horizontally */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

/* Image on the Left */
.footer-contact-photo {
    margin-right: 5px; /* Space between image and text */
}

.footer-contact-photo img {
    border-radius: 50% !important;
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
    object-fit: cover; /* Ensures the image fits within the dimensions */
}

/* Text on the Right */
.footer-contact-copy {
    max-width: 600px; /* Limits the width of the text area */
    text-align: left;
    border-left: 1px solid #b6b6b6;
}

.footer-contact-copy p {
    margin: 0;
    font-size: 16px;
    color: var(--dark-blue);
    line-height: 1.2;
    padding-left: 5px;
}

.footer-contact-copy p .highlight {
    color: var(--light-blue);
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
}

.footer-contact-copy a {
    color: var(--dark-blue); /* Link color */
    text-decoration: none;
}

.footer-contact-copy a:hover {
    text-decoration: underline;
}

/* General Styles */
.rounded-circle {
    border-radius: 50% !important;
}

/* Responsive CSS */

/* Medium devices (tablets, < 992px) */
@media (max-width: 992px) {
    /* Tablet-specific styles here */
    .hero {
        height: 500px;
    }
    .hero-copy1 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: -12px;
    }

    .hero-copy2 {
        font-size: 45px;
        font-weight: 900;
        margin-left: 70px;    /* Remove negative margin */
    }
    .hero-goldfish {
        left: 100%;
        top: -100px;         /* Raise up 25 pixels from vertical center */
        margin-left: 5px;  /* Space between text and image */
        width: 250px;           /* Adjust the size as needed */
        height: 250px;          /* Same as width to maintain a square */
        border: 6px solid var(--orange); /* Adds a 3px border with the specified color */
    }
    
   .container {
        padding: 20px 10px 0;
    }
    
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns at <=768px */
    }
    
    .cards-section .container {
        position: relative;
        max-width: 975px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .cards-section .section-title {
        margin-left: -10px;
    }
    .property-card {
        margin-right: 10px;
        min-width: 303px;
        max-width: 303px;
    }
    .right-button {
        right: 5px;
    }
}

/* Small devices (larger phones, < 768px) */
@media (max-width: 768px) {
    nav {
        position: relative;
    }

    /* Hide navigation links by default */
    .nav-links {
        display: none; /* Hide the menu by default */
        flex-direction: column;
        position: absolute; /* Position it absolutely within the nav */
        top: 44px; /* Position below the header */
        right: 0; /* Align with the left edge */
        width: 125px; /* Full width */
        background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
        z-index: 1000; /* Ensure it appears above other content */
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        padding: 10px;
        display: block;
        text-align: center;
    }

    /* Show navigation links when open */
    .nav-links.open {
        display: flex;
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center; /* Center items vertically */
        padding: 10px;
}

    /* Hero Section */
    .hero {
        display: flex;
        align-items: center;         /* Vertically center content */
        justify-content: center;     /* Horizontally center content */
        height: 350px;
        text-align: center;
        position: relative;          /* Establish positioning context if needed */
    }

    .hero .container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero-content {
        position: relative;
        display: inline-block;
    }

    .hero-copy {
        display: inline-block;  
        text-align: left;
    }

    .hero-copy1 {
        font-size: 23px;
        margin-bottom: -8px;
    }

    .hero-copy2 {
        font-size: 35px;
        font-weight: 700;
        margin-left: 50px;    /* Indent second line of copy */
    }

    .hero-goldfish {
        left: 100%;
        top: -75px;         /* Raise up 25 pixels from vertical center */
        margin-left: 5px;  /* Space between text and image */
        width: 175px;           /* Adjust the size as needed */
        height: 175px;          /* Same as width to maintain a square */
        border: 5px solid var(--orange); /* Adds a 3px border with the specified color */
    }
    
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns at <=768px */
    }
    
    .cards-section .container {
        position: relative;
        max-width: 753px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .property-card {
        margin-right: 10px;
        min-width: 349px;
        max-width: 349px;
    }
    .right-button {
        right: 1px;
    }

   .contact-content {
        flex-direction: column;
        align-items: stretch;
    }
    #contact-form {
        width: 100%;
        margin-bottom: 10px;
    }
    .contact-details {
        margin-top: 10px;
    }
}

/* Extra small devices (phones, < 480px) */
@media (max-width: 480px) {
    /* Mobile-specific styles here */
    .logo {
        font-size: 24px;
    }

    .logo2 {
        font-size: 8px;
    }
    
    .nav-links {
        top: 36px; /* Position below the header */
    }
    
    .main-content {
        font-size: 16px;
    }
    .title {
        font-size: 28px;
    }
    .listing-address {
        font-size: 24px;
        margin-bottom: 3px;
    }

    .listing-tagline {
        font-size: 16px;
    }
    
    .photo-gallery-grid {
        grid-template-columns: 1fr; /* 1 column at <=480px */
    }
    .lightbox-trigger {
        pointer-events: none;
        cursor: default;
    }
    
    /* Adjust cards layout */
    .cards-section .section-title {
        margin-left: 0;
    }
    .cards-section .container {
        padding: 0 10px;
    }
    .cards {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }
    .property-card {
        margin-right: 0;
        margin-bottom: 15px;
        max-width: 480px;
        box-shadow: none;
    }
    .property-card:last-child{
        margin-bottom: 0;
    }
    .scroll-button {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        height: 250px;
    }
    .hero-goldfish {
        display: none;
    }
    
    /* Scroll Buttons - remove */
    .scroll-button {
        display: none;
    }
    
    /* Footer */
     .footer-nav-links a {
        font-size: 11px;
    }
    
    /* Footer Contact */
    .footer-contact {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        text-align: center; /* Center text within items */
    }

    /* Image on the Left (Now Top) */
    .footer-contact-photo {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 5px; /* Add bottom margin for spacing */
    }

    /* Text on the Right (Now Below Image) */
    .footer-contact-copy {
        max-width: none; /* Allow full width */
        text-align: center; /* Center text */
        border-left: 0; /* Remove left border */
    }

    .footer-contact-copy p {
        margin: 0;
        font-size: 14px;
        line-height: 1.2;
        padding-left: 0;
    }
}
