/* --- PROSPERE MASTER BOUTIQUE STYLESHEET --- */

:root {
  --navy: #0a192f;
  --gold: #d4af37;
  /* Updated to match your image background color */
  --white: #f7f7f7;
  --light: #f8fafc;
  --text-main: #334155;
  --slate: #94a3b8;
  --transition-premium: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 1. RESET & CORE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

/* SPACING HELPERS */
.section {
  padding: 120px 0;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-80 {
  margin-bottom: 80px;
}
.p-50 {
  padding: 50px;
}
.p-60 {
  padding: 60px;
}
.gap-60 {
  gap: 60px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-80 {
  margin-top: 80px;
}
.pb-0 {
  padding-bottom: 0;
}
.text-center {
  text-align: center;
}
.text-white {
  color: white !important;
}
.text-gold {
  color: var(--gold) !important;
}
.bg-matched {
  background: var(--white) !important;
}
.bg-navy {
  background: var(--navy);
}
.shadow-gold {
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* 2. NAVIGATION */
.navbar {
  position: fixed;
  width: 100%;
  padding: 15px 0;
  background: rgba(247, 247, 247, 0.98);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  align-items: center;
}
.logo span {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-btn {
  background: var(--navy);
  color: white !important;
  padding: 10px 22px;
  border-radius: 4px;
}

/* 3. HERO */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)),
    url("./images/Prospere home image.png")
      center/cover;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(75deg, rgba(10, 25, 47, 0.85), transparent);
}
.hero-content {
  max-width: 800px;
  padding-left: 5%;
  z-index: 2;
}
.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: white;
}
.hero h1 span {
  color: var(--gold);
}
.lead-mission {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  transition: var(--transition-premium);
  cursor: pointer;
}
.primary-btn {
  background: var(--gold);
  color: var(--navy);
  margin-right: 15px;
}
.secondary-btn {
  border: 2px solid white;
  color: white;
}
.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: white;
  color: var(--navy);
}

/* 4. BRAND & VALUES */
.tag {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 1rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}
.section-title {
  font-size: 2.8rem;
  line-height: 1.2;
}
.line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 25px auto;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.items-center {
  align-items: center;
}

.styled-image-container {
  position: relative;
  padding: 10px;
}
.styled-image-container img {
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.styled-image-container::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-top: 5px solid var(--gold);
  border-right: 5px solid var(--gold);
}

.gold-title-small {
  color: var(--gold);
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

/* 5. CAROUSEL EXPLORER */
.carousel-section {
  padding: 100px 0;
  overflow: hidden;
}
.main-carousel {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
}
.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
}
.carousel-track {
  display: flex;
  transition: var(--transition-premium);
}
.carousel-slide {
  min-width: 33.333%;
  padding: 15px;
  flex-shrink: 0;
  cursor: pointer;
}
.explorer-card {
  height: 420px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 1s;
}
.card-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 25%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  color: white;
}
.card-info i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}
.explorer-card:hover .card-bg {
  transform: scale(1.1);
}

.carousel-nav-btn {
  background: var(--navy);
  color: var(--gold);
  border: none;
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.carousel-nav-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* 6. SERVICE CONTENT */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.product-card {
  height: 450px; /* Consistent boutique height */
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;

  /* 1. Base Shadow: Soft and expansive */
  box-shadow: 0 10px 30px -10px rgba(10, 25, 47, 0.2);

  /* 2. Transition: Smooth boutique timing */
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);

  /* 3. Subtle Border: Helps against light backgrounds */
  border: 1px solid rgba(10, 25, 47, 0.05);
}
.card-overlay {
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(10, 25, 47, 0.95));
  color: white;
  text-align: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
.luxury-card {
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
  text-align: center;
  border-top: 4px solid var(--gold);
  transition: 0.4s;
}
.luxury-card:hover {
  transform: translateY(-10px);
}
.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--gold);
  font-size: 1.5rem;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.benefit-panel {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.panel-title {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 25px;
}
.check-list-modern {
  list-style: none;
}
.check-list-modern li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-weight: 500;
  text-align: left;
}
.check-list-modern li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
}

.mgmt-cta-box {
  background: var(--navy);
  border-radius: 12px;
}
.cta-heading {
  font-size: 1.8rem;
}

/* 7. FOOTER */
.footer {
  background: #050c18;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* 8. RESPONSIVE */
@media (max-width: 768px) {
  .carousel-slide {
    min-width: 100%;
  }
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .nav-links {
    display: none;
  }
  .gap-60 {
    gap: 30px;
  }
  .p-50 {
    padding: 30px;
  }
}
/* 1. INCREASE CARD BREATHING ROOM */
.px-50 {
  padding-left: 60px !important; /* Increased from 50 to 60 for more space */
  padding-right: 60px !important;
}

/* 2. FIX TICK POSITIONING */
.check-list-modern {
  padding-left: 10px; /* This pushes the entire list (including ticks) inward */
  margin-top: 20px;
}

.check-list-modern li {
  list-style: none;
  position: relative;
  padding-left: 40px; /* Space between the tick and the text */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  color: var(--slate);
}

/* Ensure the gold tick doesn't hit the left padding of the card */
.check-list-modern li::before {
  content: "\f058"; /* FontAwesome Check Circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0; /* Positioned at the start of the li's padding */
  color: var(--gold);
  font-size: 1.2rem;
}

/* 3. ENSURE NAVY CARD VISIBILITY */
/* If the navy card isn't showing, it's often a height or display issue */
.bg-navy {
  background-color: #0a192f !important;
  display: flex !important; /* Forces visibility */
  flex-direction: column;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch; /* Ensures all cards are the same height */
}
/* 1. GENEROUS CARD PADDING */
.px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* 2. FIX TICK/ICON POSITIONING */
.check-list-modern {
  padding-left: 5px; /* Subtle offset to keep ticks away from the card edge */
}

.check-list-modern li {
  list-style: none;
  position: relative;
  padding-left: 35px; /* Internal gap between tick and text */
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.check-list-modern li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

/* 3. SYNCED SEPARATOR */
.border-top-slate {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  width: 100%;
}

/* 4. TEXT REFINEMENT */
.text-xxs {
  font-size: 1rem;
}
.mb-35 {
  margin-bottom: 35px;
}
/* This controls the logo size */
.logo-img {
  margin-left: 22px;
  height: 90px; /* Base height */
  width: 80%;
  display: block;

  /* 2. Apply the animation on load */
   animation: logoEntrance 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards; 

  /* Keep the hover effect for additional interaction */
   transition: transform 0.3s ease; 
}

.logo-img:hover {
  transform: scale(
    3.2
  ); /* Slightly larger than the load scale so it still reacts */
}

/* Optional: Subtle hover effect for a premium feel */
@keyframes logoEntrance {
  0% {
    transform: scale(1); /* Starting size */
  }
  100% {
    transform: scale(3.05); /* Final size on load */
  }
}

/* Ensures the nav bar items stay centered with the larger logo */
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
}
@font-face {
  font-family: "ProspereBrand";
  src: url("fonts/Bembo Book MT Std Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* 2. Specific class for the Brand text */
.brand-font {
  font-family: "ProspereBrand", serif !important;
  /* Optional: adjustments for this specific serif font */
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* --- PORTFOLIO MODAL --- */
.portfolio-modal {
  display: none;
  position: fixed;
  z-index: 10001; /* Higher than navbar */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 47, 0.98);
  backdrop-filter: blur(15px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  text-align: center;
}

.modal-slides-container img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  border: 1px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: 40px;
  right: 40px;
  color: var(--gold);
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 40px;
  padding: 20px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

.modal-prev {
  left: -80px;
}
.modal-next {
  right: -80px;
}

.modal-counter {
  margin-top: 20px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .modal-prev {
    left: 0;
  }
  .modal-next {
    right: 0;
  }
}
/* --- ENHANCED PORTFOLIO MODAL --- */
.portfolio-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* Transparent Background with Blur */
  background-color: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
  /* Smooth Entrance */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-modal.active .modal-content {
  transform: scale(1);
}

.modal-slides-container img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  /* Image Transition Effect */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease;
}

/* Close Button Enhancement */
.close-modal {
  position: absolute;
  top: -70px;
  right: 0;
  color: var(--gold);
  font-size: 50px;
  cursor: pointer;
  transition: 0.3s ease;
}

.close-modal:hover {
  transform: rotate(90deg);
  color: white;
}

/* Smooth Navigation Arrows */
.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 50px;
  padding: 30px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: 0;
}
/* --- FIXED CLOSE BUTTON --- */
.close-modal {
  position: absolute;
  /* Positioned inside the modal relative to the top-right */
  top: 20px;
  right: 20px;

  /* Circle background for visibility */
  width: 45px;
  height: 45px;
  background: rgba(10, 25, 47, 0.8);
  border: 1px solid var(--gold);
  border-radius: 50%;

  /* Icon Styling */
  color: var(--gold);
  font-size: 30px;
  line-height: 42px; /* Centers the X vertically */
  text-align: center;

  cursor: pointer;
  z-index: 100001; /* Ensure it stays above everything */
  transition: all 0.3s ease;
}

/* --- BOUTIQUE LUXURY CLOSE BUTTON --- */
.close-modal {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: rgba(10, 25, 47, 0.4); /* Transparent Navy */
  backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 175, 55, 0.5); /* Semi-transparent Gold */
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100002;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
}

/* The "X" Icon Styling */
.close-modal i {
  font-size: 20px;
  transition: transform 0.5s ease;
}

/* Hover Effects */
.close-modal:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4),
    0 0 0 10px rgba(212, 175, 55, 0.1);
}

.close-modal:hover i {
  transform: scale(1.2);
}

/* Add a label that appears on hover */
.close-modal::after {
  content: "CLOSE";
  position: absolute;
  right: 70px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.close-modal:hover::after {
  opacity: 1;
  right: 80px;
}

/* Ensure arrows are also high-end */
.modal-prev,
.modal-next {
  background: rgba(255, 255, 255, 0.05);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Ensure the modal content container doesn't hide the button */
.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.boutique-hover:hover {
  /* Lift Effect */
  transform: translateY(-15px) scale(1.02);

  /* Interactive Shadow: Deep and pronounced */
  box-shadow: 0 30px 60px -12px rgba(10, 25, 47, 0.35),
    0 18px 36px -18px rgba(10, 25, 47, 0.4);

  /* Glow effect around the edges */
  border-color: rgba(212, 175, 55, 0.3);
}

/* --- OVERLAY INTERACTION --- */

.card-overlay-boutique {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 25, 47, 0.9) 10%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: all 0.5s ease;
}

/* Slide up the text and darken the overlay on hover */
.boutique-hover:hover .card-overlay-boutique {
  background: linear-gradient(
    to top,
    rgba(10, 25, 47, 0.95) 20%,
    rgba(10, 25, 47, 0.2) 100%
  );
  padding-bottom: 50px;
}

/* The small gold line expands on hover */
.line-small {
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-top: 15px;
  transition: width 0.5s ease;
}

.boutique-hover:hover .line-small {
  width: 100px;
}
/* --- BOUTIQUE UNORDERED LIST --- */
.list-alignment-wrapper {
  text-align: left !important;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 30px;
}

.boutique-bullet-list {
  list-style: none; /* Removes default bullets */
  padding-left: 0;
  margin: 0;
  text-align: left;
}

.boutique-bullet-list li {
  position: relative;
  padding-left: 30px; /* Space for the custom bullet */
  margin-bottom: 18px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-main);
}

/* Creating the Custom Gold Bullet */
.boutique-bullet-list li::before {
  content: "•"; /* Using a clean bullet point */
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--gold);
  font-size: 1.8rem; /* Larger gold bullet for impact */
  line-height: 1;
}
.banner-container {
  width: 100%;
  max-width: 1200px; /* Matches your master container width */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px; /* Matches your interactive card corners */
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.1);
}

.section-banner {
  width: 100%; /* Spans the full width of the container */
  height: 400px; /* Professional banner height */
  object-fit: cover; /* Ensures the photo isn't stretched/distorted */
  display: block;
  transition: transform 0.8s ease;
}

/* Optional: Subtle zoom effect when the section is viewed */
.banner-container:hover .section-banner {
  transform: scale(1.03);
}
