@import url("https://use.typekit.net/rss0qkf.css");

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: "futura-pt";
    background: #f9f9f9;
    font-weight: 300;
    color: rgb(0, 0, 0);
    font-size: 22px;
    line-height: 27px;
   /* overflow-x: hidden;*/
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 15px 30px;
    z-index: 10;
    flex-wrap: wrap;
}

.nav-logo {
    flex: 2;
    text-align: left;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-left, .nav-right {
    display: flex;
    gap: 20px;
}

.nav-right {
    margin-right: 20px;
}

.nav-logo a,
.nav-left a,
.nav-right a {
    text-decoration: none;
    color: #ffffffc7;
    font-size: 18px;
    font-weight: bold;
}

/* Hamburger Menu & Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn .line {
    width: 30px;
    height: 4px;
    background-color: #ffffff9e;
    border-radius: 5px;
}

.nav-right .dropdown-content {
    display: none;
    position: fixed;
    background-color: white;
    min-width: 30%;
    height: 100vh;
    z-index: 1;
    top: 0;
    right: 0;
}

.nav-right .dropdown-content a {
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
}

.nav-right .dropdown-content a:hover {
    background-color: #f1f1f1;
}

.nav-right .dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive Navbar */
@media (max-width: 768px) {

    .nav-left, .nav-right {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 300px;
    overflow: hidden;
}

.carousel {
    cursor: pointer;
}

.carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    cursor: pointer;
}

.carousel img.active {
    opacity: 1;
}

/* Navigation Arrows */
.prev-btn {
    position: absolute;
    left: 0;
    padding: 10px;
    font-size: 40px;
    cursor: pointer;
}

.next-btn {
    position: absolute;
    right: 0;
    padding: 10px;
    font-size: 40px;
    cursor: pointer;
}

/* Close Button (used in various sections) */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    color: black;
}

/* See All Button */
.see-all-btn {
    position: absolute;
    bottom: 150px;
    right: 20px;
    background: rgb(255 255 255 / 20%);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 5px;
}

.see-all-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Thumbnails */
.thumbnails {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    max-width: 100%;
    scrollbar-width: none; /* Firefox */
}

.thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.thumbnails img {
    width: auto;
    height: 110px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease, margin-top 0.3s ease, transform 0.3s ease;
}

.thumbnails img:hover {
    transform: scale(1.2);
}


/* Fullscreen Gallery & Gallery Viewer */
.fullscreen-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
}

.fullscreen-gallery img {
    max-width: 90%;
    max-height: 90%;
}

.gallery-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
    z-index: 1000;
    padding: 20px;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 800px;
}

.gallery-img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Property Section */
.property-section {
    display: flex;
    background-color: white;
    color: black;
    padding: 40px;
    justify-content: center;
    align-items: center;
}

.property-details {
    width: 70%;
    max-width: 1000px;
}

.property-details p {
    margin-bottom: 30px;
}

.contract-status {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    background-color: black;
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
}

.property-title {
    font-size: 28px;
    margin-bottom: 5px;
    font-family: "adobe-garamond-pro";
    font-weight: lighter;
    margin-top: -2px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: black;
    margin: 20px auto;
    margin-top: -2px;
}

.down-arrow {
    font-size: 24px;
    display: block;
    margin: 10px auto;
    margin-left: 550px;
}

.price span {
    font-weight: bold;
}

.property-description {
    text-align: justify;
}

.property-stats {
    width: 25%;
    display: flex;
    flex-direction: column;
    max-width: 320px;
    padding-left: 80px;
}

.stat-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.stat-item i {
    font-size: 24px;
    margin-right: 40px;
}

.separator {
    width: 1px;
    height: 280px;
    background-color: black;
    margin: 0 auto;
    margin-bottom: -70px;
}

/* Appointment Section */
.appointment-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.left-image img {
    height: 700px;
    width: 650px;
    object-fit: cover;
}

.right-content img {
    width: 650px;
    height: 700px;
    object-fit: cover;
    margin-left: 50px;
}

.sche {
    color: black;
    justify-content: center;
    font-family: serif;
}

.sche2 {
    color: black;
}

.date-picker {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    width: 500px;
}

.nav-btn {
    background: transparent;
    border: 1px solid black;
    padding: 8px;
    cursor: pointer;
    font-size: 16px;
}

.days-container {
    display: flex;
    overflow: hidden;
    width: 450px;
}

#days-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.day {
    width: 150px;
    height: 170px;
    background: white;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-size: 16px;
}

.day.active {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-family: cursive;
    font-weight: 400;
}

.weekday {
    font-size: 14px;
}

.date {
    font-size: 30px;
    font-weight: bold;
}

.month {
    font-size: 14px;
}

.time-picker {
    margin: 20px 0;
}

#time-select {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid black;
}

.appointment-buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 20px 0;
}

.option-btn {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    border: 1px solid black;
    cursor: pointer;
    background: white;
    text-align: center;
}

.option-btn.active {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.next-btn.active {
    background: black;
    cursor: pointer;
}

/* Responsive Adjustments for Property & Appointment Sections */
@media screen and (max-width: 768px) {
    .property-section {
        flex-direction: column;
        padding: 20px;
    }
    .property-details, .property-stats {
        width: 100%;
        margin: 0;
    }
    .contract-status {
        font-size: 10px;
        padding: 8px 15px;
    }
    .property-title {
        font-size: 24px;
    }
    .property-subtitle {
        font-size: 18px;
    }
    .divider {
        width: 100%;
    }
    .down-arrow {
        margin-left: 0;
        font-size: 20px;
    }
    .price {
        font-size: 16px;
    }
    .stat-item i {
        font-size: 20px;
        margin-right: 20px;
    }
    .separator {
        width: 100%;
        margin-left: 0;
    }
    .appointment-container {
        flex-direction: column;
    }
    .left-image img, .right-content img {
        width: 100%;
        height: auto;
        margin-left: 0;
    }
    .right-content {
        width: 100%;
        margin-left: 0;
    }
    .contact-section .contact-container {
        display: block;
    }
    .date-picker {
        width: 100%;
    }
    .days-container {
        width: 100%;
    }
    .day {
        width: 100px;
        height: 120px;
    }
    .appointment-buttons {
        flex-direction: column;
    }
    .option-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    #fp img {
        max-width: 100%;
    }
    .thumbnails {
        overflow-x: auto;  /* Allow horizontal scrolling */
        -webkit-overflow-scrolling: touch;  /* Enable momentum scrolling on iOS */
    }
    .nav-right {
        margin-top: -40px;
        margin-right: -10px;
    }
    .viewsite-menu-inner {
        font-size:1.2em;
    }
   .nav-right  .dropdown-content {
        min-width: 50%;
    }
    .see-all-btn {
        bottom: 100px;
    }
    .property-title {
        font-size: 30px;
        line-height: 40px;
    }
    
}

/* Adjustments for Very Small Screens */
@media (max-width: 480px) {
    .nav-logo img {
        height:  75px !important;
    }
    .nav-left, .nav-right {
        flex-direction: column;
        gap: 10px;
    }
    .hero {
        height: 350px !important;
    }
    .carousel img {
        object-position: center;
        height: 350px !important;
    }
    .fullscreen-gallery img {
        max-width: 80%;
        max-height: 80%;
    }
    .thumbnails img {
        height: 60px;
    }
    .see-all-btn {
        bottom: 100px;
    }
    .property-title {
        font-size: 30px;
        line-height: 40px;
    }
    .nav-right a {
        font-size: 24px;
    }
}

/* Container, Row, & Column Layouts */
.container {
    margin: auto;
    background: rgb(252, 250, 250);
    padding: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    flex: 1;
    min-width: 300px;
    margin: 40px 0 40px;
}

.section {
    margin-bottom: 40px;
}

h2 {
    text-transform: uppercase;
    padding-bottom: 10px;
}

.details {
    width: 100%;
    max-width: 1400px;
}

.details p {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #000;
    margin: 5px 0;
    font-weight: bold;
}

.details p span {
    font-weight: lighter;
    color: #000;
}

.feature {margin-top:15px;}

.hea {
    color: black;
    font-size: 30px;
    font-weight: lighter;
    font-family: "adobe-garamond-pro";
}

/* Map Section */
.map-section {
    width: 100%;
    height: 500px;
    margin-top: -100px;
    display: flex;
    justify-content: center;
}

.mapim {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 768px) {
    .map-section {
        height: 400px;
        margin-top: 0;
    }
}

@media screen and (max-width: 480px) {
    .map-section {
        height: 300px;
    }
}

/* Work Section Styling */
.work-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.head-ing {
    font-family: "adobe-garamond-pro";
    margin-bottom: 20px;
}

.vertical-line {
    position: absolute;
    width: 300px;
    height: 2px;
    background-color: white;
    margin-top: -15px;
    margin-left: 225px;
}

/* YouTube Video Background & Overlay */
.video-container {
    position: absolute;
}

.video-container iframe {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}


/** Local Areas **/

.title-spacing {padding: 100px 0 50px 0;}

.text-center{text-align:center;}


#local-area{width: 100%; max-width: 1400px; padding-bottom: 100px; border-radius:5px;}
.local-title {font-size:35px;margin-top:40px;}

.area-row {display: flex; flex-wrap: wrap; width: 100%; padding:40px 20px;}
.area-title {font-size: 30px; font-weight: 600; margin-top: 15px;}
.title-right {padding: 0 0 0 40px;}
.title-left {padding: 0 40px 0 0;}
.area-subtitle {font-size:30px; font-weight: 300;}
.area-image {width: 38%; margin-top: 40px;}
.area-image img {width: 100%; display: inline-block; border-radius: 6px;box-shadow: 0px 7px 20px 5px rgba(0, 0, 0, .2); }
.area-content {width: 60%; align-items: center; justify-content: center;}
.content-right {padding: 0 0 0 40px;}
.content-left {padding: 0 40px 0 0;}
.area-content-full {width: 100%; align-items: center; justify-content: center; padding: 20px;}
.area-desc {width: 100%; margin-top: 15px; text-align: justify;}

@media (max-width: 768px) {
    .area-image, .area-content { width: 100%; }
}

/** Local Areas End **/



.work-content {
    position: relative;
    max-width: 800px;
    padding: 20px;
    z-index: 1;
}

.contact-btn {
    margin-top: 35px;
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid white;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #cfbeb1;
}

/* Contact Section */
.contact-section {
    width: 100%;
    padding: 50px 10%;
    background-color: white;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    max-width: 500px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
    color: black;
}

.contact-right {
    flex: 1;
}

.contact-right h2 {
    font-size: 28px;
    font-family: "adobe-garamond-pro";
    font-weight: lighter;
    color: black;
}

.subtitle {
    font-size: 18px;
    color: #000;
    margin: 20px 0;
}

.legal-text {
    font-size: 14px;
    color: #000;
    margin-top: 20px;
    line-height: 1.5;
}

.street {
    font-weight: bold;
    margin-bottom: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    margin-left: 20px;
}

.contact-info h3 {
    font-weight: 300;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.info-item i {
    font-size: 18px;
    color: #333;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
}

.footer hr {
    border: none;
    height: 1px;
    background: #000;
    margin-bottom: 20px;
}

.footer p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.footer a {
    color: #007BFF;
    text-decoration: none;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 10px;
    font-size: 20px;
    color: #333;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #007BFF;
}

.img-fluid {
    width: 100%;
}

.load-balance {
    color: #000;
    text-align: center;
    background-color: #000;
}

/* Pop-up Button */
.popup-container {
    position: fixed;
    bottom: 35px;
    right: 35px;
    text-align: center;
}

.popup-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-content {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 10px;
    background: #fff;
    padding: 10px;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #373737;
}

.popup-content p {
    margin: 5px 0;
    color: black;
}

.popup-container:hover .popup-content {
    display: block;
}

/* Scroll Up Button */
#scrollUpBtn {
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#scrollUpBtn:hover {
    background-color: #005bb5;
}

#openhouse-section {padding: 40px 0 0;font-size: .8rem;}
.open_title {font-size: 1rem;font-weight: 600;}
.open_house {width:100%;margin-top:10px;}
.open_date {font-weight: 600;}
.open_time {font-weight: 300;}


/*******Gallery CSS Start Here*************/
	@media (hover: hover) and (pointer: fine) {
 		.carousel:hover img{
				-webkit-transform: scale(1.05);
				-moz-transform: scale(1.05);
				-ms-transform: scale(1.05);
				transform: scale(1.05);
    -webkit-transition: transform 1.05s ease-in-out;
    -moz-transition:transform 1.05s ease-in-out;
    -ms-transition:transform 1.05s ease-in-out;				
 		 }
 		 .carousel:hover::after { opacity: 0.3; }
 	}
	.carousel::after {
	  content: " ";
	  position: absolute;
	  left: 0;
	  right: 0;
	  top: 0;
	  bottom: 0;
	  opacity: 0;
	  background: #000000;
	  -webkit-transition: opacity 0.2s ease-out;
	  transition: opacity 1.05s ease-out;
	}
/*******Gallery CSS END here*************/	