body { font-family: 'Roboto', sans-serif; margin: 0; padding: 0; overflow-x: hidden; }

/* Preloader */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: 9999;
    display: flex; justify-content: center; align-items: center; transition: opacity 0.5s ease;
}
#preloader.loaded { opacity: 0; pointer-events: none; }

/* Loading Animation (from loading.io) */
@keyframes ldio-rpinwye8j0b { 0% { transform: rotate(0deg) } 50% { transform: rotate(180deg) } 100% { transform: rotate(360deg) } }
.ldio-rpinwye8j0b div { position: absolute; animation: ldio-rpinwye8j0b 1s linear infinite; width: 80px; height: 80px; top: 10px; left: 10px; border-radius: 50%; box-shadow: 0 2px 0 0 #007bff; transform-origin: 40px 41px; }
.loadingio-eclipse { width: 100px; height: 100px; display: inline-block; overflow: hidden; }
.ldio-rpinwye8j0b { width: 100%; height: 100%; position: relative; transform: translateZ(0) scale(1); backface-visibility: hidden; transform-origin: 0 0; }
.ldio-rpinwye8j0b div { box-sizing: content-box; }

/* Parallax Sections with Local JPEG Images */
.parallax { background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; min-height: 60vh; }
.hero { background-image: url('images/hero-bg.jpeg'); } /* Your downloaded hero JPEG */
.properties { background-image: url('images/properties-bg.jpeg'); min-height: 80vh; } /* Your downloaded properties JPEG */
.cta { background-image: url('images/cta-bg.jpeg'); min-height: 40vh; } /* Your downloaded CTA JPEG */

@media only screen and (max-width: 1366px) { 
    .parallax { background-attachment: scroll; } 
}
/* General Styles */
.navbar-brand {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 3px; /* Extended spacing for a wide, luxurious header */
    background: linear-gradient(to right, #007bff, #00bfff); /* Optional gradient for extra cool factor */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.navbar { transition: background 0.3s; }
.navbar.scrolled { background: rgba(255,255,255,0.95) !important; }
.nav-link { transition: transform 0.3s ease, color 0.3s ease, background 0.8s; background-position: center; }
.nav-link:hover { transform: scale(1.05); color: #007bff !important; background: #f0f0f0 radial-gradient(circle, transparent 1%, #f0f0f0 1%) center/15000%; }
.nav-link:active { background-color: #e0e0e0; background-size: 100%; transition: background 0s; }
section { transition: opacity 0.5s, transform 0.5s; }
.card { transition: transform 0.3s; border: none; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.card:hover { transform: translateY(-5px); }
.btn-primary { background-color: #007bff; border: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }
.btn-light { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.btn-light:hover { transform: scale(1.05); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }
.map { border-top: 1px solid #ddd; }

/* Fade-In Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}


section { opacity: 0; transition: opacity 0.6s ease-out; }
section.visible { opacity: 1; animation: fadeInUp 0.8s ease-out forwards; }


.card:hover { transform: translateY(-10px); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }


.parallax::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0); 
    transition: opacity 0.5s;
}

.btn {
    position: relative;
    overflow: hidden;
    transition-duration: 0.4s;
}

.btn::after {
    content: "";
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -20px;
    margin-top: -120%;
    opacity: 0;
    transition: all 0.8s;
}

.btn-primary::after {
    background: rgba(255, 255, 255, 0.6); /* White ripple for brightness */
}

.btn:active::after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s;
}

/* Primary button hover effect */
.btn-primary {
    background-color: #007bff;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.1); /* Slightly larger scale for more noticeable effect */
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5); /* Blue glow shadow for luxury feel */
    background-color: #0056b3; /* Darken slightly on hover for depth */
}
/* Contact Background (using CTA image) */
.contact-bg { background-image: url('images/cta-bg.jpeg'); min-height: 80vh; }


#contact {
    color: black !important;
  }
  
  #contact h1,
  #contact h2,
  #contact p,
  #contact strong {
    color: black !important;
  }
  
  #contact .team-section {
    color: white !important;
  }
  
  #contact .team-section h3 {
    font-weight: bold;
    font-size: 2rem;
  }
  
.hero h1 {
    color: #ffffff; 
    text-shadow: 
        0 0 10px #ffffff,  
        0 0 20px #ffffff,  
        0 0 30px #00bfff, 
        0 0 40px #00bfff; 
    font-weight: 900; 
    letter-spacing: 2px; 
}
