/* Color Palette */
:root {
  --purple: #4a144b;
  --purple-dark: #350b36;
  --gold: #e0b94d;
  --gold-hover: #c9a43e;
  --light-yellow: #fdf8e4;
}

body {
  font-family: "Roboto", sans-serif;
  /* Updated outer background to dark purple */
  background-color: #2a0a2b;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand {
  font-family: "Roboto", serif;
}

/* --- WRAPPER (Limits width to 1280px) --- */
.website-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Utilities */
.bg-purple {
  background-color: var(--purple) !important;
}
.bg-gold {
  background-color: var(--gold) !important;
}
.bg-light-yellow {
  background-color: var(--light-yellow);
}

.text-purple {
  color: var(--purple) !important;
}
.text-gold {
  color: var(--gold) !important;
}

/* Buttons */
.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  transition: all 0.3s;
}
.btn-gold:hover {
  background-color: var(--gold-hover);
  color: white !important;
}

.btn-outline-gold {
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--purple);
}

.btn-purple {
  background-color: var(--purple);
  color: white;
  border: 1px solid var(--purple);
}
.btn-purple:hover {
  background-color: var(--purple-dark);
  color: white;
}

/* Navbar */
.navbar {
  border-bottom: 3px solid var(--gold);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Logo size control */
.navbar-brand img {
  height: 75px;
  width: auto;
}

/* Navigation Links Base Style */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 5px;
}

/* The Line (Hidden by default) */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s ease-in-out;
}

/* Hover & Active States */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

/* Expand the line on Hover or Active */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Trusted Badge */
.badge-trusted {
  background: linear-gradient(180deg, var(--purple) 0%, #2a0a2b 100%);
  border: 2px solid var(--gold);
  border-top: none;
  padding: 10px 15px;
  border-radius: 0 0 10px 10px;
  margin-top: -10px;
  position: relative;
  z-index: 1050;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* --- CAROUSEL HERO SECTION --- */

#heroCarousel {
  margin-top: 0;
}

/* Individual Slide Styling */
.hero-slide {
  height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* ADDED: Smoother Fade Transition Speed */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 1.5s !important; /* Forces a 1.5s fade instead of 0.6s */
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(74, 20, 75, 0.95) 0%, rgba(74, 20, 75, 0.6) 50%, rgba(74, 20, 75, 0) 100%);
  z-index: 1;
}

/* --- CUSTOM DOT INDICATORS --- */
.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: white !important;
  border: 2px solid transparent;
  opacity: 0.5;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  opacity: 1;
  background-color: var(--gold) !important;
  transform: scale(1.2);
}

/* Section Titles Separator */
.separator {
  width: 60px;
  height: 3px;
  margin-top: 10px;
}

/* Diamond Card Logic */
.package-card {
  position: relative;
  margin-top: 60px;
}

.diamond-img {
  width: 120px;
  height: 120px;
  transform: rotate(45deg);
  overflow: hidden;
  margin: 0 auto -60px;
  position: relative;
  z-index: 10;
  border: 4px solid;
  background: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.diamond-img.border-gold {
  border-color: var(--gold);
}
.diamond-img.border-purple {
  border-color: var(--purple);
}

.diamond-img img {
  width: 190%;
  height: 140%;
  transform: rotate(-45deg) translate(-20%, -32%);
  object-fit: cover;
}

/* Services Icons */
.icon-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  transition: transform 0.2s;
}
.icon-circle:hover {
  transform: scale(1.1);
}

/* Small Diamond Feature */
.diamond-sm {
  width: 100px;
  height: 100px;
  transform: rotate(45deg);
  overflow: hidden;
  border: 3px solid var(--gold);
  margin: 20px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
.diamond-sm img {
  width: 145%;
  height: 145%;
  transform: rotate(-45deg) translate(-0%, -20%);
  object-fit: cover;
}

/* --- INNER PAGE HEADERS --- */
.page-header {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Re-use the overlay we already made */
.page-header .hero-overlay {
  opacity: 0.8; /* Make it slightly darker for readability */
}

/* --- FOOTER LINKS HOVER EFFECT --- */
footer a {
  transition: color 0.3s ease;
}
footer a:hover {
  color: var(--gold) !important;
  padding-left: 5px; /* Subtle movement effect */
}
