/* Main CSS File - High-Net-Worth Market Insights Template */

:root {
  /* Color Palette */
  --primary-color: #2a3b4c;       /* Deep navy blue */
  --secondary-color: #c89e5f;     /* Gold accent */
  --tertiary-color: #e9e3d5;      /* Cream white */
  --accent-color: #a35638;        /* Burnt sienna */
  --neutral-color: #f5f5f5;       /* Light gray */
  
  /* Shades and Tints */
  --primary-light: #3d516a;
  --primary-dark: #1a2836;
  --secondary-light: #d9b97f;
  --secondary-dark: #a67d3e;
  --accent-light: #c0765a;
  --accent-dark: #824328;
  
  /* Typography */
  --heading-font: 'Cormorant Garamond', serif;
  --body-font: 'Mulish', sans-serif;
  
  /* Spacing */
  --section-spacing: 6rem;
  --element-spacing: 1.5rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: var(--body-font);
  color: var(--primary-dark);
  line-height: 1.6;
  background-color: var(--neutral-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Section Styles */
section {
  padding: var(--section-spacing) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Header */
header {
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.header-scrolled {
  padding: 1rem 0;
  background-color: white;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(42, 59, 76, 0.8), rgba(42, 59, 76, 0.8)), url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 0;
  position: relative;
}

.hero-content {
  color: white;
  padding: 6rem 0;
}

.hero-title-1 {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--tertiary-color);
  margin-bottom: 2rem;
}

.hero-desc-1 {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-img {
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.about-shape {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  z-index: 0;
}

.about-feature {
  padding: 2rem;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: var(--tertiary-color);
  position: relative;
}

.service-card {
  background-color: white;
  border-radius: 5px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.service-price {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.5rem 0;
}

.service-price span {
  font-size: 1rem;
  color: #777;
  font-weight: 400;
}

.service-features {
  padding-left: 0;
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.service-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

/* Features Section */
.features {
  position: relative;
  overflow: hidden;
}

.feature-item {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 2rem;
  background-color: var(--tertiary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--secondary-color);
  color: white;
  transform: rotateY(180deg);
}

/* Price Plan Section */
.price-plan {
  background-color: #f9f9f9;
}

.price-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.price-card-header {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  text-align: center;
}

.price-card-popular .price-card-header {
  background-color: var(--secondary-color);
}

.price-card-body {
overflow-x: hidden;
  padding: 2rem;
}

.price-card-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.price-card-price span {
  font-size: 1rem;
  color: #777;
  font-weight: 400;
}

.price-card-features {
  padding-left: 0;
  list-style: none;
  margin-bottom: 2rem;
}

.price-card-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.price-card-features li:last-child {
  border-bottom: none;
}

.price-card-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--secondary-color);
  margin-right: 0.75rem;
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.team-member-img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
  background-color: white;
}

.team-member-name {
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--secondary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* Reviews Section */
.reviews {
  background-color: var(--tertiary-color);
  position: relative;
  overflow: hidden;
}

.review-item {
  background-color: white;
  padding: 2.5rem;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  margin: 2rem 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 5rem;
  font-family: serif;
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  color: var(--tertiary-color);
  opacity: 0.5;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.review-author-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.review-author-title {
  font-size: 0.9rem;
  color: #777;
}

/* Core Info Section */
.core-info {
  position: relative;
}

.core-info-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control {
  height: 50px;
  border: 1px solid #eee;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: none;
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

.form-check-label {
  font-size: 0.9rem;
  color: #777;
}

/* Blog Section */
.blog {
  background-color: white;
}

.blog-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
  background-color: #f9f9f9;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px !important;
  overflow: hidden;
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  background-color: white;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,0.125);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a3b4c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
overflow-x: hidden;
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery {
  background-color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 250px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0 0;
}

.footer-top {
  margin-bottom: 3rem;
}

.footer-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.copyright {
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.disclaimer {
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

/* Breadcrumb */
.breadcrumb-img {
  max-width: 20px;
  height: auto;
  margin-right: 5px;
}

/* Space Page */
#space {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shape Elements */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--tertiary-color);
  opacity: 0.5;
}

.shape-dots {
  width: 300px;
  height: 300px;
  background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
  background-size: 20px 20px;
}

.shape-wave {
  width: 100%;
  height: 100px;
  background: url('../images/wave-shape.webp') repeat-x;
  background-size: contain;
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .animate-float {
    animation: none;
  }
} 