@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to right, #d16ba5, #86a8e7);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navbar */
nav.navbar {
  position: fixed;
  top: 100px; /* Match header height */
  left: 0;
  width: 100%;
  background-color: #d16ba5;
  z-index: 999;
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hamburger.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Links */
.nav-links {
display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.nav-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #d16ba5;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }
}

/* Page Content Padding */
.page-content {
  padding-top: 200px; /* Header (120px) + Navbar (80px estimated) */
}

/* Header Inner Layout */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-text img {
  height: 60px;
}

.logo-caption h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
}

.logo-caption p {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}

.contact-info {
  text-align: right;
  color: #ffffff;
  min-width: 200px;
  word-break: break-word;
}

.contact-info p {
	margin: 0;
	font-size: 12px;
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .contact-info {
    text-align: left;
    margin-top: 1rem;
  }
}

/*  Image appears above the text on mobile vvvv */

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-image {
    order: -1; /* Image appears above the text on mobile */
  }

  .hero-text {
    text-align: center;
  }
}
/*  ^^^^Image appears above the text on mobile */










.hero {
  margin-top: -55px; /* Adjust to match your header + nav height */
}

/* Hero Section */
.hero {
  padding: 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fce9f1;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-button {
  background-color: #FFD207;
  color: #D16BA5;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero-button.secondary {
  background-color: #FFFFFF;
}

.hero-button:hover {
  background-color: #b85590;
}

.hero-button.secondary:hover {
  background-color: #6f92d6;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Features Section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  gap: 1.5rem;
}

.feature {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  background: #fafafa;
}

.feature h3 {
  color: #a044ff;
}

/* Responsive Features */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 90%;
  }
}

/* Full Sections */
.full-section {
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}



.section1 { background-color: #d16ba5; }
.section2 { background-color: #e6f6f2; }
.section3 { background-color: #f6f0e6; }
.section4 { background-color: #e6ecf6; }
.section5 { background-color: #f6e6e6; }

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #f3f3f3;
  color: #888;
  font-size: 0.9rem;
}


.landlord-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  justify-content: space-between;
}

.landlord-image {
  flex: 1 1 30%;
  max-width: 30%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .landlord-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.landlord-details {
  margin-bottom: 2rem;
}

.landlord-services.no-bullets {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.landlord-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
}

.cta-button.primary {
  background-color: #1e90ff;
  color: #fff;
}

.cta-button.secondary {
  background-color: #eee;
  color: #333;
  border: 1px solid #ccc;
}

.cta-button.tertiary {
  background-color: #4caf50;
  color: white;
}

/* ✅ ADDED FLEX CONTAINER FOR LANDLORD IMAGES */
.landlord-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}



html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

[id]::before {
  content: '';
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}


  a.active {
    color: #722350;
    font-weight: bold;
    border-bottom: 2px solid #d16ba5;
  }



