﻿/* General Navigation Styles */
#top_nav {
    background-color: #444;
    border-radius: 9px;
    padding: 10px;
    position: relative;
}

ul#css3menu0 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

ul#css3menu0 li {
    display: inline-block;
    margin: 0;
}

ul#css3menu0 a {
    text-decoration: none;
    font-size: 16px;
    font-family: Verdana, Geneva, sans-serif;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

ul#css3menu0 a:hover {
    background-color: #721818;
}

/* Mobile Menu Toggle */
.menu-icon {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    padding: 10px;
}

/* Hide the checkbox */
#css3menu-switcher {
    display: none;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    /* Show the hamburger menu icon on mobile */
    .menu-icon {
        display: block;
    }

    /* Hide the menu by default */
    ul#css3menu0 {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: #444;
        border-radius: 5px;
        padding: 10px;
        width: 100%;
    }

    /* Show the menu when the checkbox is checked */
    #css3menu-switcher:checked ~ ul#css3menu0 {
        display: flex;
    }

    /* Adjust menu item styles for mobile */
    ul#css3menu0 li {
        width: 100%;
        text-align: left;
        margin: 0;
    }

    ul#css3menu0 a {
        display: block;
        width: 100%;
        padding: 10px 15px;
    }
}


﻿  /* CSS layout */
html {overflow-y: scroll;}

a {
	color:white;
}

a:hover {
	color:yellow;
}

body {
	background-color:white;
	font: Tahoma,Geneva,sans-serif;
	font-size: 16px;
}

h3 {
    font-size: 1.2rem;
}


#wrapper {
	width: 100%;
    max-width: 1080px;
    margin: 0 auto;
	background-image: linear-gradient(rgba(114,24,24,.50), black);
	background-color: black;
	display:block;
	font:bold .9rem Tahoma,Geneva,sans-serif;
	
}


#container
{
	overflow:hidden;
	color:white;
    display: flex;            /* Enables flexbox */
    flex-wrap: wrap;          /* Allows wrapping on small screens */
    gap: 20px;                /* Adds spacing between columns *
	
	
}

#header {
	background-image: linear-gradient(rgba(114,24,24,.50), black);
	background-color: black;
	width: 100%; /* Makes the header span the full width */
    max-width: 100%; /* Prevents overflow */
}

#header img {
    max-width: 100%;
    height: auto;
    display: block;  /* Prevents inline spacing issues */
    margin: 0 auto;  /* Centers the image horizontally if it's a block element */
}

#top_nav {
	background-image: linear-gradient(rgba(114,24,24,.50), black);
	background-color: black;
	padding-top:10px;

}

#homeinfo {
	margin-top:50px;
	font: 20px Tahoma,Geneva,sans-serif;
	padding: 0 10px 0px 0;
	margin: 0 0 20px 0;

}

#homeinfo a {
	color:white;
}

#homeinfo a:hover {
	color:yellow;
}


#ourlistings
{
	font: 17px Tahoma,Geneva,sans-serif;
	padding: 0 10px 0 0;
	display:block;
	overflow:hidden;
	background-image: linear-gradient(rgba(114,24,24,.50), black);
	background-color: black;
	
}

#footer {
	font:bold .9rem Tahoma,Geneva,sans-serif;
	clear: both;
	background-color:black;
	color:white;
	padding: 20px 10px;
	text-align:center;
}

#sidebar {float: left; width: 300px; padding-left:20px;}

#content {overflow: hidden; }

#search-mls table {
	font:15px Bold Tahoma,Geneva,sans-serif;
	margin: 30px auto;
}
#search-mls td {

	padding: 10px 20px 5px 20px;
}

#mls-results {
	font:15px Tahoma,Geneva,sans-serif;
	text-align:center;
	padding: 5px;
	padding: 20px 0px 40px 20px
}

#mls-results table {
	width:950px;
	margin-left:auto;
	margin-right:auto;
	border-collapse: collapse;
}

#mls-results th {
	font-weight: bold;
	text-align:center;
	
}
#mls-results tr {
	text-align:center;
	border-bottom: 3px solid #fff;
	
}

#mls-results td {
	/*text-align:center;*/
	margin: 10px 5px 15px 5px;
	padding-top: 20px;
	padding-bottom: 10px;
	
	/*border-bottom: 1px solid #fff;*/
}

#cma-request {

}

#cma-request table {
	margin: 30px auto;
	border-collapse: collapse;
	font: 14px Tahoma,Geneva,sans-serif;
}

#cma-request td {
	padding-bottom:15px;
	padding-right: 10px;
}


/*Classes */

.home-content {
    width: 600px;
    max-width: 100%;           /* Ensures it is responsive */
    margin-left: auto;
    margin-right: auto;
    background: black;
    padding: 30px;
    border-radius: 30px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -webkit-font-smoothing: antialiased;
    position: relative;
    border: 2px solid white;
    box-sizing: border-box;    /* Includes padding in the width calculation */
}
.home-row:after {
    content: "";
    display: table-row;
    clear: both;
	width:100%;
	overflow: hidden;
}


/* Left column styles */
.home-left {
    flex: 1;                  /* Takes 1 portion of the available space */
    max-width: 25%;           /* Restricts width to 25% on larger screens */
    padding: 10px;            /* Adds inner spacing */
    box-sizing: border-box;   /* Includes padding in width calculation */
}

/* Right column styles */
.home-right {
    flex: 3;                  /* Takes 3 portions of the available space */
    max-width: 75%;           /* Restricts width to 75% on larger screens */
    padding: 10px;            /* Adds inner spacing */
    box-sizing: border-box;   /* Includes padding in width calculation */
}


.home-left a {
	color:white;
}

.home-right {
    width: 75%;
    padding: 10px;
	display: table-cell;
	float: right;
	position:relative;
		padding-bottom: 99999px; 
	margin-bottom: -99999px;
	
}

#home-section {
    display: flex;
    flex-wrap: wrap; /* Ensures children wrap on smaller screens */
    gap: 10px;
}

@media screen and (max-width: 600px) {
    .home-left {
        width: 100%;
    }
    .home-right {
        width: 100%;
    }
    #footer {
        font-size: 0.8rem; /* Smaller font size for small screens */
        padding: 15px 5px; /* Adjust padding for smaller devices */
}
}


.form-data {
	font:bold 15px Tahoma,Geneva,sans-serif;
	border-radius: 18px;
    -moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
    display:inline-block;
    -webkit-font-smoothing: antialiased;
	height: 3em;
	
}

.bed-bath {
	font:bold 15px Tahoma,Geneva,sans-serif;
	border-radius: 18px;
    -moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
    display:inline-block;
    -webkit-font-smoothing: antialiased;
	height: 3em;
	width: 4em;
	
}
	
.town-list {
	font:bold 17px Tahoma,Geneva,sans-serif;
	width:300px;
	border-radius: 18px;
    -moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
    display:inline-block;
    -webkit-font-smoothing: antialiased;
	
}

.submit-button {
	font:bold 17px Tahoma,Geneva,sans-serif;
   background:white;
    color:black;
    border: 1px solid #223445;
    border-radius: 18px;
    -moz-border-radius: 10px; 
	-webkit-border-radius: 10px;
    display:inline-block;
    width: 10em;
    height: 3em;
    -webkit-font-smoothing: antialiased;
}



#sng-mls-res {
	font: 16px Tahoma,Geneva,sans-serif;
}

.sng-mls-res-con {
  display: flex;
	
}


.sng-mls-res-col {
  
  -webkit-flex: 1; /* Safari 6.1+ */
  -ms-flex: 1; /* IE 10 */ 
  flex: 1; /*grow*/
  padding:15px;
	
}

.sng-mls-res-col img {
  width: 100%; 
  height: auto; 
}




.cmaerror {
	color:red
}

.cma-form-data {
	-moz-border-radius: 4px; 
	-webkit-border-radius: 4px;
    border-radius: 13px;
	display:inline-block;
    -webkit-font-smoothing: antialiased;
	height: 2.5em;
	width:250px;
}

.cma-add-comments {
	font: 14px Tahoma,Geneva,sans-serif;
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
    border-radius: 15px;
	display:inline-block;
    -webkit-font-smoothing: antialiased;
	width:400px;
	
	
}
    /*.image-container {
      position: relative;
      width: 250px;
      height: 200px;
	  
      margin: 0 auto; /* Added to center the image horizontally within the container */
    }*/

/*  Our Listings Classes */
.property-listings {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px;
	
}

.property-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background-image: linear-gradient(rgba(114,24,24,.50), black);
	background-color: black;
    align-items: center;
}

.image-container {
    flex: 1 1 250px;
    max-width: 250px; /* Limits the image size */
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px;
    object-fit: cover; /* Ensures the image fits nicely without distortion */
}

.property-details {
    flex: 2 1 300px;
    font-size: 14px;
    line-height: 1.6;
}

.property-details p {
    margin: 5px 0;
}

.details-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.details-link:hover {
    text-decoration: underline;
}

.property-status {
    flex: 0 1 100px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: #28a745;
    padding: 10px;
    border-radius: 5px;
    align-self: center;
}

.property-status[data-status="reduced"] {
    background-color: #ffc107;
}

.property-status[data-status="sold"] {
    background-color: #dc3545;
}

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
	  font-weight: bold;
      width: 100%;
      height: 100%;
      background-color: rgba(114, 24, 24, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px; /* Adjust font size as needed */
    }