/* Universal Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif !important;
  background: #EFEEE5 !important;
  color: #000000;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif !important;
}

p {
  font-size: 18px; /* default is about 16px, increase to 18 or more */
}

/* Header */
header {
  position: relative; /* important for absolute positioning inside */
  height: 400px;      /* or your actual height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Black overlay */
header > div.bg-black {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.logo {
  width: 200px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  max-width: 300%; /* Responsive size */
}

/* Navbar Container */
.navbar-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav right */
  padding: 1rem 2rem;
  background: transparent;
}

/* Navbar Brand Logo */
.navbar-brand img {
  height: 50px;
}

/* Nav List */
.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  align-items: center;
  white-space: nowrap; /* Prevent wrapping to multiple lines */
}

/* Nav Links */
.navbar-nav a {
  color: white !important;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
  display: block;
}

.navbar-nav a:hover {
  color: #e53935;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0,0,0,0.75);
  border-radius: 0 0 6px 6px;
  min-width: 160px;
  padding: 0.25rem 0;
  z-index: 20;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
}

.dropdown-menu li a:hover {
  color: #e53935 !important;
  background-color: transparent !important;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* General anchor hover */
a:hover {
  color: #e53935 !important; /* Tailwind yellow-400 hex */
}

/* Welcome Text */
.welcome-text {
  position: absolute;
  bottom: 1rem;               /* Push to bottom – adjust to 0 if needed */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  z-index: 10;
  padding: 0.5rem 1rem;
  width: 100%;                /* Optional: makes it easier to center inside */
}

.welcome-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem; /* 5xl equivalent */
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.welcome-text p {
  font-family: 'Lora', serif;
  font-size: 1.125rem; /* lg equivalent */
}

/* Responsive: stack navbar items on small screens */
@media (max-width: 768px) {
  .navbar-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .welcome-text h1 {
    font-size: 2.25rem; /* smaller on mobile */
  }
}

/* Swiper Pagination Dots */
.swiper-pagination-bullet {
  background-color: #f87171;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background-color: #dc2626 !important;
  opacity: 1;
}

/* Property Card Hover Effects */
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:text-red-600 {
  color: #dc2626;
}

.group:hover .group-hover\:text-blue-600 {
  color: #2563eb;
}

.group:hover .group-hover\:underline {
  text-decoration: underline;
}

.group:hover .group-hover\:underline-offset-4 {
  text-underline-offset: 4px;
}

/* Transition Utility Overrides */
.transition-transform {
  transition-property: transform;
}

.duration-700 {
  transition-duration: 700ms;
}

.transition-colors {
  transition-property: color;
}

.duration-300 {
  transition-duration: 300ms;
}

/* Responsive Flex Card Layout */
.property-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.property-card:hover {
  transform: scale(1.015) translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.property-card:active {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Icons with Text */
.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #6B7280;
}

.property-features i {
  color: #dc2626;
  margin-right: 0.25rem;
}

/* Image */
.property-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: transform 0.7s;
}

.property-image:hover {
  transform: scale(1.05);
}

/* Location Info */
.property-location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .property-location {
    border-top: none;
    border-left: 1px solid #e5e7eb;
  }
}

.property-location i {
  color: #dc2626;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.property-location span {
  color: #1f2937;
  transition: color 0.3s;
}

.group:hover .property-location span {
  color: #2563eb;
}

/* Footer Section Start */
.footer-area {
  background-color: #111;
  color: #fff;
  padding: 30px 0;
}

.footer-widget h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
  color: #fff;
}

.footer-left-widget p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}
.social-icons {
  display: flex;            /* Align icons horizontally */
  gap: 10px;                /* Space between icons */
  margin-top: 15px;         /* Margin above the container */
  flex-wrap: wrap;          /* Allow wrapping if needed */
}

/* Individual social icon styling */
.social-icon {
  display: inline-flex;      /* Center icon inside the circle */
  justify-content: center;   /* Horizontal centering */
  align-items: center;       /* Vertical centering */
  color: #ccc;               /* Default icon color */
  font-size: 16px;           /* Size of the icon */
  width: 40px;               /* Circle width */
  height: 40px;              /* Circle height */
  border: 1px solid #444;    /* Border color for the circle */
  border-radius: 50%;        /* Make it circular */
  transition: all 0.3s ease; /* Smooth transition on hover */
  text-decoration: none;     /* Remove underline for links */
}

/* Hover effect for icons */
.social-icon:hover {
  background-color: #fff !important; /* Change background color on hover */
  color: #000 !important;           /* Change icon color on hover */
  border-color: #000;               /* Optional: change border color */
}

.contact-widget .contact-info li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #ccc;
}

.contact-widget .contact-info i {
  margin-right: 10px;
  color: #fff;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-widget h3 {
    font-size: 18px;
  }

  .footer-area {
    padding: 40px 0;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

.copyright a {
  color: #ed3538;
}

/* Footer Section End */


/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 1.25rem;
  right: 4rem;
   bottom: 70px; /* Previously maybe 20px? Increased to move it up */
  background-color:  #C0C0C0;
  color: rgb(0, 0, 0);
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.scroll-top:hover {
  background-color: #ffffff;
}
.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #C0C0C0 !important;
  color: #000000 !important;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
  border: none;
  box-shadow: none;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.call-button:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.call-button {
  outline: 2px solid rgb(0, 0, 0) !important;
}
 
 

/* Section Divider */
.section-divider {
  width: 100%;
  height: 5px; /* Adjust the thickness here */
  background-color: white; /* White color for the border */
  margin: 20px 0; /* Add spacing above and below the divider */
}

/* Breadcrumb */
.breadcrumb a {
  color: #000000; /* Tailwind red-600 */
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #dc2626 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">" !important;
  padding: 0 0.5rem;
  color: #6c757d; /* Optional: change to match your theme */
}

/* Responsive Nav Toggle for Mobile */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  nav .menu-toggle {
    display: block;
    color: white;
    font-size: 24px;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
