/* ============================================
   Raymond Ansah Passion Man Limited
   Custom Styles — Emerald Green, Gold, White
   ============================================ */

:root {
  --emerald: #047857;
  --emerald-dark: #065f46;
  --emerald-light: #10b981;
  --gold: #d4a017;
  --gold-light: #f0c946;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --dark: #1a1a2e;
  --muted: #6c757d;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Navbar */
.navbar-custom {
  transition: background-color 0.3s, box-shadow 0.3s;
}
.navbar-custom.scrolled {
  background-color: rgba(255,255,255,0.97) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-custom .nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--gold) !important;
}
.brand-logo {
  width: 40px;
  height: 40px;
  background: var(--emerald);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Hero Carousel */
.hero-carousel .carousel-item {
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(4,120,87,0.6));
}
.hero-carousel .carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
}
.hero-carousel .carousel-caption h1 {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-carousel .carousel-caption p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.hero-half .carousel-item {
  height: 50vh;
  min-height: 300px;
}

/* Accent Divider */
.accent-bar {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
}

/* Buttons */
.btn-emerald {
  background-color: var(--emerald);
  color: #fff;
  border: none;
}
.btn-emerald:hover {
  background-color: var(--emerald-dark);
  color: #fff;
}
.btn-gold {
  background-color: var(--gold);
  color: #fff;
  border: none;
}
.btn-gold:hover {
  background-color: #b8880e;
  color: #fff;
}
.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--emerald);
}

/* Service Card */
.service-card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.service-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* Testimonial */
.testimonial-card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}
.testimonial-card .stars {
  color: var(--gold);
}
.testimonial-card .quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.2;
}

/* Team */
.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.3s;
}
.team-member:hover .team-avatar {
  background: var(--gold);
}

/* Stat */
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--emerald);
}

/* Section bg */
.bg-light-custom {
  background-color: var(--off-white);
}
.bg-emerald {
  background-color: var(--emerald);
}
.text-gold {
  color: var(--gold) !important;
}

/* Contact Info Icon */
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(4,120,87,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i {
  color: var(--emerald);
}

/* Footer */
footer.main-footer {
  background: var(--dark);
  color: #fff;
}
footer .footer-heading {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--gold);
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.social-icon:hover {
  background: var(--gold);
}

/* Mission Cards */
.mission-card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  background: #fff;
}
.mission-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(4,120,87,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.mission-card .icon-circle i {
  font-size: 1.5rem;
  color: var(--emerald);
}

/* Benefit list */
.benefit-item i {
  color: var(--emerald);
}

/* Gallery */
.gallery-img {
  border-radius: 12px;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-carousel .carousel-caption h1 {
    font-size: 1.8rem;
  }
  .hero-carousel .carousel-item {
    height: 60vh;
    min-height: 350px;
  }
}
