/* PATIENT RIGHTS ADVOCACY TEMPLATE - MAIN STYLES */

:root {
  /* Color Palette - Pastel */
  --primary-1: #e0f0ea; /* Light Mint - Background */
  --primary-2: #f8c3ba; /* Soft Coral - Accents */
  --primary-3: #aed9e0; /* Soft Blue - Secondary */
  --primary-4: #fde2c4; /* Warm Sand - Highlights */
  --primary-5: #b5b3c7; /* Lavender Gray - Text Accents */
  
  /* Shades */
  --primary-1-dark: #b2d6ca;
  --primary-2-dark: #e5a69d;
  --primary-3-dark: #8cbcc3;
  --primary-4-dark: #e9c9a7;
  --primary-5-dark: #9290a3;
  
  --primary-1-light: #f0faf7;
  --primary-2-light: #fce0db;
  --primary-3-light: #d0e9ed;
  --primary-4-light: #fef2e5;
  --primary-5-light: #d5d4df;
  
  /* Text Colors */
  --text-dark: #3a3c4a;
  --text-muted: #62646e;
  --text-light: #f9f9fb;
  
  /* Structure */
  --section-padding: 5rem 0;
  --border-radius: 10px;
}

/* BASE STYLES */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title:after {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--primary-2);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.btn-primary {
  background-color: var(--primary-3-dark);
  border-color: var(--primary-3-dark);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-3);
  border-color: var(--primary-3);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* SHAPE ELEMENTS */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-divider .shape-fill {
  fill: var(--primary-1-light);
}

/* HEADER STYLES */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

header.scrolled {
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  color: var(--text-dark);
}

.nav-link {
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-3-dark);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background-color: var(--primary-1-light);
}

.hero .swiper {
  width: 100%;
  height: 100%;
}

.hero .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--text-light);
  max-width: 650px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.hero-desc {
  margin-bottom: 2rem;
}

/* ABOUT SECTION */
.about {
  background-color: white;
  position: relative;
}

.about-feature {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-3-dark);
}

/* SERVICES SECTION */
.services {
  background-color: var(--primary-1-light);
  position: relative;
}

.service-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-desc {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.service-price {
  font-weight: 700;
  color: var(--primary-3-dark);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--primary-3-dark);
  font-size: 0.9rem;
}

/* FEATURES SECTION */
.features {
  background-color: white;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.feature-item .icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-3-dark);
}

.feature-name {
  font-weight: 700;
  margin-bottom: 1rem;
}

/* PRICE PLAN SECTION */
.price-plan {
  background-color: var(--primary-1-light);
  position: relative;
}

.price-item {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  margin-bottom: 30px;
  border: 2px solid transparent;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-3-light);
}

.price-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-3-dark);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-bottom: 1.5rem;
}

.price-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary-3-dark);
}

/* TEAM SECTION */
.team {
  background-color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.team-name {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--primary-3-dark);
  font-size: 0.9rem;
}

/* REVIEWS SECTION */
.reviews {
  background-color: var(--primary-1-light);
  position: relative;
}

.review-item {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-top: 30px;
}

.review-text:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-2-light);
  font-size: 1rem;
}

.review-author {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

/* CORE INFO SECTION */
.core-info {
  background-color: white;
}

.info-item {
  background: var(--primary-1-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-title {
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 35px;
}

.info-title:before {
  content: "\f05a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-3-dark);
  font-size: 1.3rem;
}

/* CONTACT SECTION */
.contact {
  background-color: var(--primary-1-light);
  position: relative;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid #eaeaea;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-3);
}

.contact-info {
  background: var(--primary-5-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  height: 100%;
  color: var(--text-dark);
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
}

.contact-info-item i {
  margin-right: 15px;
  font-size: 1.3rem;
  color: var(--primary-3-dark);
}

/* BLOG SECTION */
.blog {
  background-color: white;
}

.blog-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.blog-link {
  font-weight: 600;
  color: var(--primary-3-dark);
  text-decoration: none;
  position: relative;
}

.blog-link:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.blog-link:hover:after {
  transform: translateX(5px);
}

/* FOOTER */
footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
}

.footer-heading {
  color: var(--primary-2);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-menu {
  list-style: none;
  padding-left: 0;
}

.footer-menu li {
  margin-bottom: 0.8rem;
}

.footer-menu a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: var(--primary-2);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
}

.social-icons {
  list-style: none;
  padding-left: 0;
  display: flex;
}

.social-icons li {
  margin-right: 1rem;
}

.social-icons a {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-2);
}

/* ADDITIONAL PAGES */
.page-header {
  height: 40vh;
  background-color: var(--primary-1);
  display: flex;
  align-items: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-title {
  color: white;
  position: relative;
  z-index: 2;
}

/* SPACE PAGE */
#space {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-1-light);
}

/* ANIMATIONS */
.fadeInUp {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.zoomIn {
  animation: zoomIn 0.8s ease both;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

/* MEDIA QUERIES */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 1rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-padding: 2.5rem 0;
  }
  
  .hero {
    height: 90vh;
  }
  
  .hero-title {
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
} 