body {
  font-family: "Outfit", sans-serif;
  background-color: #fdf1df;
  color: #4a2b00;
  line-height: 1.75;
  font-size: 1.05rem;
  scroll-behavior: smooth;
}

h1, h2, h5, .display-4, .display-5, .display-6 {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, #978241, #ffebab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.luxury-navbar {
  min-height: 72px;
  font-family: "Outfit", sans-serif;
  background-color: #fdf1df;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.luxury-navbar.scrolled {
  background-color: rgba(253, 241, 223, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.luxury-navbar .nav-link {
  font-weight: 700;
  font-size: 1rem;
  color: #4a2b00 !important;
  padding: 0.5rem 1rem;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.luxury-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #c49100;
  transition: width 0.3s ease;
}
.luxury-navbar .nav-link:hover {
  background-color: rgba(210, 168, 72, 0.08);
  color: #c49100 !important;
}
.luxury-navbar .nav-link:hover::after {
  width: 100%;
}

[data-parallax] {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
}
[data-parallax]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
}
[data-parallax] > * {
  position: relative;
  z-index: 2;
}
[data-parallax] h2 {
  font-size: 2.5rem;
}
[data-parallax] p {
  font-size: 1.1rem;
  color: #211300;
}

.luxury-header {
  padding: 5rem 1rem;
  text-align: center;
}
.luxury-header h1 {
  font-size: 3.25rem;
}
.luxury-header p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #311c00;
}

.about-intro {
  padding: 4rem 0;
}
.about-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.about-intro p {
  font-size: 1.05rem;
  color: #170d00;
  margin-bottom: 1.5rem;
}
.about-intro img {
  border-radius: 1.5rem;
  border: 5px solid white;
  box-shadow: rgba(0, 0, 0, 0.14);
  transition: transform 0.4s ease;
}
.about-intro img:hover {
  transform: scale(1.03);
}
.about-intro ul {
  padding-left: 0;
  margin-top: 1.5rem;
}
.about-intro ul li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  list-style: none;
}
.about-intro ul li i {
  font-size: 1.2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
  color: #c49100;
}

.our-values {
  background-color: #fff9e9;
  border-radius: 2rem;
  padding: 5rem 1rem;
  text-align: center;
}
.our-values h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.our-values .value-box {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.our-values .value-box:hover {
  transform: translateY(-8px);
}
.our-values .value-box i {
  color: #c49100;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.our-values .value-box h5 {
  font-weight: 700;
  font-size: 1.25rem;
}
.our-values .value-box p {
  font-size: 1rem;
  color: #4d3b2a;
}

.team-section {
  padding: 5rem 0;
}
.team-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.team-section .team-card {
  border: none;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.team-section .team-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.14);
}
.team-section .team-card img {
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.team-section .team-card .card-body {
  padding: 1.5rem;
  background-color: #fff;
  text-align: center;
}
.team-section .team-card .card-body h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.team-section .team-card .card-body p {
  color: #6c4e2c;
  font-size: 0.95rem;
}

.footer {
  margin-top: 20px;
  font-family: "Outfit", sans-serif;
  background: #fff;
  color: #2c2c2c;
}
.footer .footer-top {
  background-color: #4a2b00;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.footer .footer-top .info-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.footer .footer-top .info-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.footer h6 {
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
}
.footer .footer-logo {
  max-width: 180px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.footer .social-icons {
  justify-content: center;
  flex-wrap: wrap;
}
.footer .social-icons .social-icon {
  width: 46px;
  height: 46px;
  background-color: #4a2b00;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  font-size: 22px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.footer .social-icons .social-icon:hover {
  background: linear-gradient(135deg, #f5d67b, #d4af37);
  color: #000;
  transform: scale(1.05);
}
.footer .footer-bottom {
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer .footer-top .row {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-top .row .col-md-4 {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer .footer-top .row .col-md-4 i {
    font-size: 2rem !important;
    margin-bottom: 0.5rem;
    margin-right: 0 !important;
  }
  .footer .footer-top .row .col-md-4 div h6 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  .footer .footer-top .row .col-md-4 div p {
    font-size: 0.875rem;
  }
  .footer .footer-top .row .col-md-4:not(:last-child) {
    margin-bottom: 2rem;
  }
  .footer .footer-middle {
    padding: 2rem 1rem;
  }
  .footer .footer-middle .footer-logo {
    max-width: 160px;
    height: auto;
  }
  .footer .footer-middle p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  .footer .footer-middle h6 {
    font-size: 1rem;
    margin-top: 2rem;
  }
  .footer .footer-middle .social-icons {
    gap: 1.2rem;
  }
  .footer .footer-middle .social-icons a {
    font-size: 1.3rem;
  }
  .footer .footer-bottom p {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=about.css.map */