@font-face {
  font-family: "Cabinet";
  src: url(CabinetGrotesk-Variable.ttf);
}
@font-face {
  font-family: "Satoshi";
  src: url(Satoshi-Variable.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  font-family: "Cabinet", sans-serif;
  background-color: #f8f5f1;
}

/* Hero Section */
.hero-section {
  background: url("assests/about-page.avif") no-repeat center/cover;
  height: 60vh;
  position: relative;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 🔴 Overlay to darken background */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 48%);
  z-index: 1;
}

/* 🟡 Make sure all inner content stays above overlay */
.hero-section * {
  position: relative;
  z-index: 2;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.logo1 img {
  width: 160px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
  justify-content: center;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.active-nav {
  background-color: #e2252d;
  padding: 12px;
  border-radius: 6px;
}
.visit-btn {
  background-color: #e2252d;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.visit-btn {
  background-color: #e2252d;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.visit-btn a {
  color: white;
  text-decoration: none;
}
/* Hero Content */
.hero-content {
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 17vh;
}
.hero-content h1 {
  font-family: "Cabinet";
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* 2nd */
.about-section {
  background-color: #f8f5f1;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 80px 40px;
  flex-wrap: wrap;
}

/* Text Content */
.text-content {
  flex: 1;
  min-width: 300px;
  max-width: 650px;
}

.tag {
  background: #e2252d;
  color: white;
  border: none;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 20px;
  width: fit-content;
}

.text-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #374151;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.buttons .primary {
  background: #e2252d;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}
.buttons .primary a {
  text-decoration: none;
  color: #fff;
}

.buttons .secondary {
  background-color: #f8f5f1;
  color: #e2252d;
  border: 1px solid #e2252d;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}
.buttons .secondary a{
  color: #e2252d;
  text-decoration: none;
}

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid #e2252d;
  padding-top: 28px;
}
.stat h2 {
  font-family: "Cabinet";
  font-size: 45px;
  font-weight: 600;
  /* color: white; */
}

.stat p {
  font-size: 14px;
  color: #6b7280;
  /* color: white; */
  margin-top: 4px;
}

/* Image */
.image-content {
  flex: 1;
  min-width: 300px;
  max-width: 650px;
}

.image-content img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
/* 3 */
.fun-facts {
  background-color: #f8f5f1;
  max-width: 90vw;
  margin: 40px auto;
  padding-top: 20px;
  padding-bottom: 30px;
}
.fun-facts .fun-main-head {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-bottom: 20px;
}
.fun-facts .fun-main-head h1 {
  font-size: 36px;
}
.fun-facts h2 {
  margin-bottom: 40px;
  font-weight: normal;
}

.facts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f8f5f1;
  margin-top: 20px;
}

.fact {
  flex: 1 1 150px;
  min-width: 150px;
  padding: 36px 20px;
  box-sizing: border-box;
  border-left: 1px solid #ddd;
}

.fact:first-child {
  border-left: none;
}

.label {
  font-size: 18px;
  color: #777;
  margin: 0 0 15px;
}

.number {
  font-size: 45px;
  font-weight: bold;
  margin: 0;
}

/* Faq */
.container {
  /* max-width: 1200px; */
  margin: auto;
  padding: 60px 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  width: 92vw;
  padding: 20px 40px;
}

.left-section {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.left-section h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 10px;
}

.left-section h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.property-image {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.right-section {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 19px;
  font-weight: 500;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}
/* FOOTER */
footer {
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  color: #fff;
  background-color: #e2252d;
}
/* Base styling */
#footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 40px 30px;
  background-color: #e2252d;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

#footer-brand img {
  width: 200px;
  margin-bottom: 10px;
}

#footer-brand p {
  margin: 6px 0;
}

#footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#footer-social img {
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid #fff;
  border-radius: 10px;
}

#footer-nav,
#footer-resources,
#footer-location {
  min-width: 180px;
}

#footer-nav h4,
#footer-resources h4,
#footer-location h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
}

#footer-nav ul,
#footer-resources ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer-nav li,
#footer-resources li {
  margin-bottom: 10px;
  color: #fff;
}

#footer-nav a,
#footer-resources a,
#footer-location a {
  text-decoration: none;
  color: #fff;
}
#footer-location {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#footer-location img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
  margin-top: 5px;
}

#footer-bottom {
  margin-top: 40px;
  padding: 20px 40px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
  background-color: #e2252d;
}

#footer-links a {
  text-decoration: none;
  color: #fff;
  margin: 0 5px;
}
footer h4 {
  font-family: "Cabinet";
}
#footer-location .box {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .facts-container {
    flex-direction: column;
    border: none;
  }

  .fact {
    border: none;
    border-top: 1px solid #ddd;
  }

  .fact:first-child {
    border-top: none;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .buttons button {
    width: 100%;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}
