/* FAMILY EVENT SIGNING CARAVANS - MAIN STYLES */

:root {
  /* Main Color Palette */
  --primary-color: #e8a87c;  /* Warm peach */
  --secondary-color: #85cdca; /* Soft teal */
  --accent-color: #c38d9e;   /* Dusty rose */
  --neutral-color: #f7f9fb;  /* Off white */
  --dark-color: #41525b;     /* Deep slate */
  
  /* Shades */
  --primary-light: #ffe0cc;
  --primary-dark: #d18c60;
  --secondary-light: #b7e0de;
  --secondary-dark: #5ca5a2;
  --accent-light: #e7c1cb;
  --accent-dark: #a66d82;
  --neutral-dark: #e5e9ed;
  --dark-light: #6a8393;

  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: var(--body-font);
  color: var(--dark-color);
  line-height: 1.6;
  background-color: var(--neutral-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--dark-color);
}

a {
  color: var(--secondary-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

.btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

/* Section Spacing */
section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Header Styles */
header {
  padding: 20px 0;
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 10px;
  padding: 8px 0;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--neutral-light);
  margin-top: 76px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(65, 82, 91, 0.3), rgba(65, 82, 91, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
}

/* About Section */
.about {
  background-color: white;
}

.about-feature {
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--neutral-color);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Services Section */
.services {
  background-color: var(--neutral-color);
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.service-name {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 15px 0;
}

.service-features {
  margin: 20px 0;
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 8px;
  position: relative;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: -20px;
  color: var(--secondary-color);
}

/* Features Section */
.features {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.feature-item {
  margin-bottom: 30px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--neutral-color);
}

.price-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.price-features {
  margin: 30px 0;
  padding-left: 0;
  list-style: none;
}

.price-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 5px solid var(--neutral-color);
  transition: all 0.3s ease;
}

.team-member:hover img {
  border-color: var(--primary-light);
  transform: scale(1.05);
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* Reviews Section */
.reviews {
  background-color: var(--neutral-color);
  position: relative;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.review-text:before,
.review-text:after {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 50px;
  color: var(--primary-light);
  position: absolute;
}

.review-text:before {
  left: -10px;
  top: -20px;
}

.review-text:after {
  content: '\201D';
  right: -10px;
  bottom: -40px;
}

.review-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-color);
}

/* Core Info Section */
.coreinfo {
  background-color: white;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 30px;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Contact Form Section */
.contact {
  background-color: var(--neutral-color);
  position: relative;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid var(--neutral-dark);
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.form-check {
  margin-bottom: 20px;
}

/* Blog Section */
.blog {
  background-color: white;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
  background-color: white;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-excerpt {
  margin-bottom: 20px;
  color: var(--dark-light);
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
}

/* FAQ Section */
.faq {
  background-color: var(--neutral-color);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
}

.accordion-button {
  background-color: white;
  border-radius: 8px !important;
  font-weight: 600;
  padding: 20px;
  color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-light);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8A87C'%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: 20px;
  background-color: white;
  border-radius: 0 0 8px 8px;
}

/* Gallery Section */
.gallery {
  background-color: white;
  padding-bottom: 50px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 30px;
}

footer h5 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

#site-copyright {
  text-align: center;
  display: block;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Breadcrumb */
.breadcrumb-wrapper {
  padding: 15px 0;
  background-color: var(--neutral-color);
  margin-top: 76px;
}

.breadcrumb-image {
  max-height: 30px;
}

/* Decorative Elements */
.shape-blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.3;
}

.shape-blob-1 {
  width: 400px;
  height: 400px;
  background-color: var(--primary-light);
  top: -200px;
  right: -200px;
}

.shape-blob-2 {
  width: 300px;
  height: 300px;
  background-color: var(--secondary-light);
  bottom: -150px;
  left: -150px;
} 