:root {
    --white-color: #f6efe5; /* Soft white for backgrounds or text */
    --brown-color: #86684B; /* Primary earthy brown for nav bar, headings, and key elements */
    
    /* Swapping Olive Green with Forest Green */
    --forest-green: #4B7F52; /* Deeper green for section backgrounds or hover effects */
    --sage-green: #8F9779; /* For softer section backgrounds or dividers */
    --stone-grey: #A9A9A9; /* For secondary text or subtle borders */
    --warm-sand: #D2B48C; /* For background or lighter text sections */
    --terracotta: #814d3e; /* For buttons, links, and accents */
    --muted-gold: #C2A476; /* For subtle accents, borders, or decorative elements */
}

@font-face {
    font-family: 'Scriptin';
    src: url('GreatVibes-Regular.ttf') format('truetype');
    /* Adjust the path 'fonts/scriptin.ttf' to where your font file is located */
}

/* Step 2: Apply the font to all h1 elements */
h1 {
    font-family: 'Scriptin', sans-serif;
}

.navbar {
    background-color: var(--brown-color);
    font-family: 'Hacked-KerX', sans-serif;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding: 10px 20px 10px 10px; 
    position: sticky;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    top: 0;
    margin: 0;
    transition: height 0.1s cubic-bezier(0.4, 0.0, 0.2, 1);
}


#logo {
    font-family: sans-serif;
    margin-right: auto; 
    margin-left: 20px; 
    font-size: 30px;
    color: var(--white-color);
}


.navbar a {
    text-decoration: none;
    color: var(--white-color);
    position: relative;
    margin-left: 20px; 
    font-size: 30px;
    font-family: 'Hacked-Kerx', sans-serif;
}

.navbar a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -1px;
    background-color: rgb(255, 255, 255);
    transition: width 0.3s;
}


.navbar a:hover::before {
    width: 100%;
}

.navbar a.active::before {
    width: 100%;
}


.icon-container {
    display: none; 
    position: absolute;
    right: 10px; 
    background-color: var(--brown-color);
    border-radius: 10px;
    padding: 5px;
    z-index: 999; 
    outline: 1px solid rgb(0, 0, 0); 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: 1vw;
    flex-direction: row;
}


.icon-container.visible {
    display: block;
    width: max-content; 
}

.connect-icon {
    width: 30px;
    height: auto;
    margin-right: 5px; 
    transition: transform 0.3s;
    margin-left: 10px;
    cursor: pointer;
    display: block;
}


.connect-icon:hover {
    transform: scale(1.2);
}

.icon-container img {
    width: 30px;
    height: auto;
    margin-right: 10px; 
    transition: transform 0.3s;
    cursor: pointer; 
    position: relative;
    left: 4px;
    top: 2px;
}


.icon-container img:hover {
    cursor: pointer;
}

.container {
    max-width: 100%;
    max-height: 20%;
}
img#cover.cover {
    max-width: 100%;
}



a img {
    text-decoration: none !important;
    list-style: none !important;
    border-bottom: 0 !important;
    list-style-type: none !important;
  }

  a.icon-link {
    text-decoration: none;
    border: none;
    outline: none;
    /* Add any other reset styles as needed */
  }
  
  


html, body{
    margin: 0;
    background-color: var(--white-color);
}

#logo::before{
    display: none;
}

@media screen and (max-width: 799px) {
    .navbar a:not(#logo),
    .icon-container {
        display: none;
    }
}

@media screen and (max-width: 799px) {
    .connect-icon {
        display: none;
    }  
}

@media screen and (max-width: 799px) {
    .navbar {
        display: none;
    }  
}


@media screen and (min-width: 800px) {
    .mobile-nav {
        display: none; 
    }
}

@media screen and (min-width: 800px) {
    .mobile-container {
        display: none; 
    }
}


@media screen and (min-width: 800px) {
    .nav-toggle .bar {
        display: none; 
    }
}

@media screen and (min-width: 800px) {
    .mobile-nav {
        display: none !important;
    }
}

@media screen and (min-width: 800px) {
    a.nav-toggle {
        display: none;
    }
}

  .nav-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--white-color);
    transition: all 100ms ease-in-out;
  }
  
  .nav-toggle:hover {
    cursor: pointer;
  }
  
.mobile-bar.x:nth-of-type(1) {
    transform: rotate(45deg);
    transform-origin: top left;
    width: 28px;
    color: var(--white-color);
}

.mobile-bar.x:nth-of-type(2) {
    transform-origin: center;
    width: 0;
}

.mobile-bar.x:nth-of-type(3) {
    transform: rotate(-45deg);
    transform-origin: bottom left;
    width: 28px;
    margin-top: 15px;
    
    
}


.mobile-nav a {
    text-decoration: none;
    color: var(--brown-color);
    position: relative;
    margin-left: 20px; 
}



#logo2 {
    font-family: 'Hacked-KerX', sans-serif;
    font-size: 1.8rem;
    position: absolute;
    top: .6rem; 
    left: 0rem; 
    text-decoration: none;
    color: var(--white-color);
    margin-left: 25px;
}


.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    width: 22px;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;   
    top: -20px;
    margin-bottom: -15px; 
}

/* Remove underline for links */
#instagramLink, #facebookLink {
    text-decoration: none;
}

/* Remove underline on hover */
#instagramLink:hover, #facebookLink:hover {
    text-decoration: none;
}

/* Remove focus outline or underline after click */
#instagramLink:focus, #facebookLink:focus {
    outline: none;
    text-decoration: none;
}



.mobile-nav {
    position: sticky;
    top: 0px;
    background-color: var(--brown-color);
    color: var(--brown-color);
    font-family: 'Hacked-KerX', sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 35px 20px 10px 10px;
    z-index: 900; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    width: 22px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 999;  
    color: #ffffff;
    margin-left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    
}


.mobile-container {
    position: fixed;
    top: 0;
    right: -40%;
    width: 40%;
    height: 100%;
    background-color: var(--brown-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 9998; 
    transition: transform .3s ease;
}

.mobile-container.open {
    transform: translateX(-100%);
}



.mobile-nav a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -1px;
    background-color: var(--white-color);
    transition: 5.0s;
}


.mobile-nav a.active::before {
    width: 100%;
}



@media screen and (min-width: 800px) {
    .mobile-container {
        display: none;
    }
}


@media screen and (min-width: 800px) {
    .mobile-container.nav {
        display: none;
    } 
}

@media screen and (min-width: 800px) {
    .contact {
        max-height: 50%;
    }
}
@media screen and (min-width: 800px) {
    .form {
        max-height: .5vw;
    }
}
.mob-icons {
    justify-content: flex-start;
    margin-right: -15px;
    margin-top: 1px;
    margin-left: 10px;
    cursor: pointer;
}


.mobile-container img{
    width: 28px;
    height: auto;
}


.mobile-links {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 15px;
    gap: 10px; 
    text-decoration: none;
    color: var(--white-color);
    font-family: monospace;
    font-size: larger;
    
}



.mobile-container .mobile-links a.active::before {
    width: 100%;
}


.mobile-links.active {
    text-decoration: underline; 
}





/*Email Form*/


* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #1f242d;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
    max-width: 100%;
}

.contact{
    background-color: var(--brown-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    
}
.hot-contact {
    font-size: 30px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    top: 8px;
}

.contact form {
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-left: 30px;
    margin-right: 20px;

}

form .input-box {
    display: flex;
    justify-content: space-between;
}

.input-box .input-field {
    width: 48.5%;
}

.field .item {
    width: 100%;
    padding: 18px;
    border: 2px solid rgb(0, 0, 0);
    outline: none;
    font-size: 16px;
    color: var(--black-color);
    margin: 12px 0;
    background-color: rgb(255, 255, 255);

}

.field.error .item {
    border-color: #ff0000ef;
    font-family: apple;
}

.field .item::placeholder {
    color: rgba(0, 0, 0, 0.664);
}

.field .error-txt {
    font-size: 14.5px;
    color: #ff0000;
    text-align: left;
    margin: -5px 0 10px;
    display: none;
}

.field.error .error-txt {
    display: block;
}

form .textarea-field .item {
    resize: none;
}

form .textarea-field .error-txt {
    margin-top: -10px;
}

form button {
    padding: 12px 32px;
    background: rgb(255, 255, 255);
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.568);
    font-size: 16px;
    color: rgb(0, 0, 0);
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: .5s;
    margin-bottom: 2vh;
}

button.swal2-confirm.swal2-styled {
    background-color: var(--brown-color);
}
div.swal2-success-circular-line-right-styled {
    color: black;
}
form button:hover {
    box-shadow: none;
}




textarea#message.item{
    max-height: 20vh;
}


.our-team-h1 {
    margin-left: 15px;
    margin-top: 10px;
    margin-bottom: 0px;
}

/* mobile bars */
.mobile-toggle .mobile-bar {
height: 3px;
    width: 100%;
    background-color: var(--white-color);
    transition: all 100ms ease-in-out;
}

/* General Section Styles */
.landing-section {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--white-color);
    color: var(--brown-color);
}

/* Heading Styles */
.landing-heading {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: var(--terracotta);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Grid Layout for Paragraph and Gallery */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    grid-gap: 40px; /* Space between the paragraph and gallery */
    align-items: flex-start;
    max-width: 1200px; /* Adjust width for larger screens */
    margin: 0 auto;
    padding: 0 20px;
}

/* Paragraph Styles */
.landing-paragraph {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 100%; /* Full width of the grid cell */
    color: var(--brown-color);
    padding: 0 20px;
    text-align: justify; /* Improve readability with justified text */
}

/* Photo Gallery */
.photo-gallery {
    display: grid; /* Switch to grid for better control */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Flexible grid */
    gap: 20px;
}

.gallery-image {
    width: 100%; /* Ensure images take up full grid cell width */
    height: auto;
    border-radius: 10px; /* Add subtle rounding to images */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr; /* Stack paragraph and gallery */
        text-align: center;
    }

    .landing-paragraph {
        font-size: 1rem;
        padding: 0 10px;
    }

    .photo-gallery {
        grid-template-columns: 1fr; /* Stack images vertically on mobile */
        gap: 10px; /* Smaller gaps between images on mobile */
    }

    .gallery-image {
        width: 90%; /* Large enough for visibility but not full screen */
        margin: 0 auto;
    }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .landing-paragraph {
        font-size: 1.1rem;
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr); /* Two images per row */
        gap: 15px;
    }
}

/* Laptop (1025px - 1399px) */
@media (min-width: 1025px) {
    .landing-heading {
        font-size: 2.5rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .landing-paragraph {
        font-size: 1.3rem;
    }

    .photo-gallery {
        grid-template-columns: repeat(3, 2fr); /* Three images per row on larger screens */
    }

    .gallery-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    .landing-heading {
        font-size: 3rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr 1fr;
        max-width: 1400px;
        gap: 50px;
    }

    .landing-paragraph {
        font-size: 1.4rem;
    }

    .photo-gallery {
        grid-template-columns: repeat(3, 1fr); /* More space for images on large screens */
        gap: 30px;
    }

    .gallery-image {
        max-width: 350px;
    }
}


/* General Styles */
* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.contactform-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--warm-sand);
    overflow: hidden;
    max-width: 100%;
}

.contactform-contact {
    background-color: var(--brown-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px;
    border-radius: 10px;
}

.contactform-hot-contact {
    font-size: 30px;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    top: 8px;
}

.contactform-contact form {
    text-align: center;
    margin-left: 30px;
    margin-right: 20px;
}

.contactform-form .contactform-input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.contactform-input-box .contactform-input-field {
    width: 48.5%;
}

.contactform-field .contactform-item {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--stone-grey);
    outline: none;
    font-size: 16px;
    color: var(--black-color);
    margin: 12px 0;
    background-color: var(--white-color);
    transition: border-color 0.3s;
}

.contactform-field .contactform-item:focus {
    border-color: var(--forest-green);
    outline: none;
}

.contactform-field.error .contactform-item {
    border-color: #ff0000ef;
}

.contactform-field .contactform-item::placeholder {
    color: rgba(0, 0, 0, 0.664);
}

.contactform-field .contactform-error-txt {
    font-size: 14.5px;
    color: #ff0000;
    text-align: left;
    margin: -5px 0 10px;
    display: none;
}

.contactform-field.error .contactform-error-txt {
    display: block;
}

.contactform-form .contactform-textarea-field .contactform-item {
    resize: none;
}

.contactform-form .contactform-textarea-field .contactform-error-txt {
    margin-top: -10px;
}

.contactform-form button {
    padding: 12px 32px;
    background: var(--terracotta);
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    color: var(--white-color);
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 2vh;
    transition: 0.5s;
}

button.swal2-confirm.swal2-styled {
    background-color: var(--brown-color);
}

div.swal2-success-circular-line-right-styled {
    color: var(--black-color);
}

.contactform-form button:hover {
    background: var(--forest-green);
    box-shadow: none;
}

/* Switch Styles */
.contactform-switch-wrapper {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.contactform-switch-label {
    font-size: 16px;
    color: var(--white-color);
    margin-right: 10px;
}

.contactform-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}

.contactform-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.contactform-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: -2px;
    bottom: 0;
    background-color: var(--stone-grey);
    transition: 0.4s;
    border-radius: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.contactform-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: var(--white-color);
    transition: 0.4s;
    border-radius: 0px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.contactform-switch input:checked + .contactform-slider {
    background-color: var(--forest-green);
}

.contactform-switch input:checked + .contactform-slider:before {
    transform: translateX(32px);
}


.contactform-company-name-field {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}


.contactform-company-name-field.show {
    max-height: 100px;
    opacity: 1;
}


@media screen and (min-width: 1024px) {
    .contactform-input-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .contactform-input-box .contactform-input-field {
        width: 70%;
    }

    .contactform-switch-wrapper {
        width: 28%;
        margin-left: 10px;
    }

    .contactform-input-box:not(:last-child) .contactform-input-field {
        width: 48.5%;
    }
}

@media screen and (min-width: 1440px) {
    .contactform-input-box .contactform-input-field {
        width: 70%;
    }

    .contactform-switch-wrapper {
        width: 28%;
    }

    .contactform-input-box:not(:last-child) .contactform-input-field {
        width: 48.5%;
    }
}

/* Tablet View */
@media screen and (max-width: 768px) {
    .contactform-input-box {
        flex-direction: column;
    }

    .contactform-input-box .contactform-input-field {
        width: 100%;
    }

    .contactform-switch-wrapper {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
}


.contactform-button-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.day-selection-button {
    flex: 1;
    padding: 15px;
    margin: 0 10px;
    background-color: var(--white-color);
    color: var(--black-color);
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s, box-shadow 0.3s;
    border-radius: 4px; 
}

.day-selection-button:hover {
    transform: scale(1.1);
}


.day-selection-button.selected {
    background-color: var(--forest-green);
    color: var(--white-color); 
    box-shadow: 0 0 10px var(--forest-green); 
}


.day-selection-button:first-child {
    margin-left: 0;
}

.day-selection-button:last-child {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .contactform-button-box {
        flex-direction: column;
    }

    .day-selection-button {
        margin: 10px 0;
    }
}

.question-form {
    text-align: center;
    color: var(--white-color);
    margin-bottom: 2vw;
}

/* styles.css */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal-width columns */
    gap: 0; /* Remove space between images */
    padding: 0; /* Remove padding */
}

.gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.card_container .card_img:last-child {
    padding-bottom: 50px;
}

section {
    padding-bottom: 50px; /* Add 50px of bottom padding */
}


footer {
    position: relative;
    background-color: var(--brown-color);
    bottom: 0;
    width: 100%;
    min-height: 350px;
    padding: 4rem 1rem 0rem;
    top: 100px;
}
.container-footer {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;


}
.row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.col{
    min-width: 250px;
    color:#f2f2f2f2;
    font-family: poppins;
    padding:0 2rem;
}
.col .logo{
    width: 100px;
    margin-bottom:25px;
}
.col h3{
    color:rgb(0, 0, 0);
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}
.col h3::after{
    content: '';
    height:3px;
    width:0px;
    background-color: rgb(0, 0, 0);
    position: absolute;
    bottom: 0;
    left:0;
    transition: 0.3s ease;

}
.col h3:hover::after{
    width:30px
}
.col .social a i{
    color:rgb(255, 255, 255);
    margin-top:2rem;
    margin-right: 5px;
    transition: 0.3s ease;
}
.col .social a i:hover{
    transform: scale(1.5);
    filter:grayscale(25);
}
.col .links a{
    display: block;
    text-decoration: none;
    color:#f2f2f2;
    margin-bottom: 5px;
    position: relative;
    transition: 0.3s ease;
}
.col .links a::before{
    content:'';
    height: 16px;
    width:3px;
    position: absolute;
    top:5px;
    left:-10px;
    background-color: rgb(255, 255, 255);
    transition: 0.5s ease;
    opacity: 0;
}
.col .links a:hover::before{
    opacity: 1;
}
.col .links a:hover{
    transform: translateX(-8px);
    color:rgb(255, 255, 255);
}
.col .contact-details{
    display: inline-flex;
    justify-content: space-between;
}
.col .contact-details i{
    margin-right:15px;
}
.row .form{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:2rem 0;
}
.row .form input{
    background-color: #1a1c20ff;
    border:0;
    outline:none;
    padding:14px 20px;
    border-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}


/********** Responsive Design ********/
@media(max-width:900px)
{
  .row{
    flex-direction: column;
  }
  .col{
    width: 100%;
    text-align: left;
    margin-bottom: 25px;
  }
}
@media(max-width:768px)
{
  .row{
    flex-direction: column;
  }
  .col{
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
}

.gallery-container2 {
    display: flex;
    align-items: center;
    justify-content: center;
     /* or any height you want */
}


.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
     /* or any height you want */
}

.Gallery-h12 {
    font-size: 10vw;
    margin-top: 40px;
}

.Gallery-h1 {
    font-size: 10vw;
    margin-bottom: 40px;
}

/* Styling for The Owners section */
.owners-section {
    margin: 50px auto; /* Center the section with space around it */
    max-width: 1200px; /* Adjust to fit the page */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align h2 to the left */
}

.owners-title {
    font-size: 40px; /* Adjust as needed */
    margin-bottom: 20px; /* Add space between h2 and the images */
    color: var(--terracotta);
}

/* Container for the images */
.owners-images-container {
    display: flex; /* Puts the images in a row */
    gap: 0; /* Remove the space between the images */
}

/* Styling for individual owner images */
.owner-image img {
    width: 100%; /* Each image takes 50% of the container, adjust as needed */
    max-height: 600px; /* Fixed height for the images */
    object-fit: cover; /* Ensures the images fill their container without distortion */
    border-radius: 0; /* No rounded corners */
    margin: 0; /* Remove any margins */
}

