/* Main CSS file for Mature Guide Website Template */

:root {
  /* Color Palette */
  --primary-color: #4a6d7c;
  --secondary-color: #c09f80;
  --accent-color: #db6400;
  --neutral-color: #76323f;
  --background-color: #f7f7f7;
  
  /* Shades */
  --primary-light: #6a8d9c;
  --primary-dark: #2a4d5c;
  --secondary-light: #e0bfa0;
  --secondary-dark: #a07f60;
  --accent-light: #fb8420;
  --accent-dark: #bb4400;
  --neutral-light: #96525f;
  --neutral-dark: #56121f;
}

/* Base Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-color);
  color: white;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../FAM_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About Section */
.about-feature {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Services Section */
.services-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.services-item-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.services-item-content {
  padding: 2rem;
}

.services-item-price {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-item-features {
  list-style: none;
  padding: 0;
}

.services-item-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.services-item-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Features Section */
.features-item {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.features-item i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-item {
  text-align: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 3rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.priceplan-item-name {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.priceplan-item-price {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 2rem;
}

.priceplan-item-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.priceplan-item-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.priceplan-item-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  position: relative;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--accent-color);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--secondary-light);
  position: relative;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 1rem;
}

.review-item-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-item-author {
  font-weight: 700;
  color: var(--primary-color);
}

/* Core Info Section */
.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Contact Form Section */
.contact {
  background-color: var(--primary-light);
  color: white;
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

/* Blog Section */
.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-item-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-item-content {
  padding: 2rem;
}

.blog-item-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-item-excerpt {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-accordion .accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background-color: var(--primary-light);
  color: white;
  font-weight: 500;
  padding: 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 5rem 0 2rem;
}
footer h4 {

  color: white;

}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.footer-policies ul {
  list-style: none;
  padding: 0;
}

.footer-policies ul li {
  margin-bottom: 0.5rem;
}

.footer-policies ul li a {
  color: rgba(255,255,255,0.7);
}

.footer-policies ul li a:hover {
  color: white;
}

#site-copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled .navbar-brand,
.header.scrolled .nav-link {
  color: var(--primary-dark);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
}

.nav-link {
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-light);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #fff;
  transition: all 300ms linear;
}

.navbar-toggler-icon:after, 
.navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #fff;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-toggler-icon:after {
  top: 8px;
}

.header.scrolled .navbar-toggler-icon,
.header.scrolled .navbar-toggler-icon:after,
.header.scrolled .navbar-toggler-icon:before {
  background-color: var(--primary-dark);
}

/* Shape Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: rgba(192, 159, 128, 0.2);
  border-radius: 50%;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: rgba(74, 109, 124, 0.2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background-color: rgba(219, 100, 0, 0.1);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* Additional Page Styles */
.breadcrumb-section {
  background-color: var(--primary-light);
  padding: 2rem 0;
  margin-top: 76px;
}

.breadcrumb-section img {
  max-height: 30px;
}

.breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
}

.breadcrumb-item a {
  color: white;
}

.breadcrumb-item.active {
  color: rgba(255,255,255,0.7);
} 