/* Main CSS for Senior Living Document Assistance Desk */

:root {
  /* Primary color palette */
  --primary-1: #7D9D9C; /* Soft sage green */
  --primary-2: #E4D8B4; /* Warm beige */
  --primary-3: #C1A3A3; /* Dusty rose */
  --primary-4: #576F72; /* Deep teal */
  --primary-5: #D0B49F; /* Warm taupe */
  
  /* Light/dark shades */
  --primary-1-light: #A5C0BF;
  --primary-1-dark: #5A7A79;
  --primary-2-light: #F2EAD3;
  --primary-2-dark: #C5B996;
  --primary-3-light: #D9C4C4;
  --primary-3-dark: #A98383;
  --primary-4-light: #7A9295;
  --primary-4-dark: #3D4F51;
  --primary-5-light: #E5CEBF;
  --primary-5-dark: #B7967E;
  
  /* Neutrals */
  --neutral-100: #FFFFFF;
  --neutral-200: #F8F9FA;
  --neutral-300: #E9ECEF;
  --neutral-400: #DEE2E6;
  --neutral-500: #ADB5BD;
  --neutral-600: #6C757D;
  --neutral-700: #495057;
  --neutral-800: #343A40;
  --neutral-900: #212529;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-4);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-4-dark);
}

/* Header */
header {
  background-color: var(--neutral-100);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--primary-1);
}

.nav-link {
  color: var(--neutral-700);
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-1);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-1);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 180px 0 100px;
  background-color: var(--primary-1-light);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-blob {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 20%;
  right: -10%;
  background-color: var(--primary-2-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: var(--neutral-100);
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--neutral-200);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--primary-2-light);
  position: relative;
  overflow: hidden;
}

.service-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-4);
  margin: 1rem 0;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background-color: var(--neutral-100);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-5);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  padding: 100px 0;
  background-color: var(--neutral-200);
}

.price-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 3rem 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border-top: 5px solid var(--primary-3);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-3);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: var(--primary-1-light);
}

.team-member {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-4);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  padding: 100px 0;
  background-color: var(--neutral-100);
}

.review-item {
  background-color: var(--neutral-200);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem 0.5rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 4rem;
  font-family: 'Georgia', serif;
  color: var(--primary-2);
  position: absolute;
  top: -2rem;
  left: -1rem;
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  color: var(--primary-4);
}

/* Core Info Section */
.coreinfo-section {
  padding: 100px 0;
  background-color: var(--primary-4-light);
  color: var(--neutral-100);
}

.coreinfo-item {
  padding: 2rem;
  text-align: center;
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-2);
  margin-bottom: 1.5rem;
}

.coreinfo-title {
  color: var(--neutral-100);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--neutral-200);
}

.contact-form-container {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-control {
  border: 1px solid var(--neutral-400);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 5px;
}

.form-check {
  margin-bottom: 1.5rem;
}

.submit-btn {
  background-color: var(--primary-1);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--primary-1-dark);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background-color: var(--neutral-100);
}

.blog-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  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-size: 1.25rem;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--neutral-200);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-2-light);
  color: var(--primary-4-dark);
}

.accordion-button:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-2-rgb), 0.25);
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background-color: var(--primary-3-light);
}

.gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-4-dark);
  color: var(--neutral-300);
  padding: 70px 0 20px;
}

.footer-title {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--neutral-400);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--neutral-100);
}

#site-copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: var(--neutral-500);
}

/* Additional Pages Sections */
.page-banner {
  padding: 180px 0 100px;
  background-color: var(--primary-1-light);
  position: relative;
  overflow: hidden;
}

.section-alt {
  padding: 100px 0;
}

.section-alt:nth-child(odd) {
  background-color: var(--neutral-100);
}

.section-alt:nth-child(even) {
  background-color: var(--neutral-200);
}

/* Animation 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(--neutral-100);
}

/* Custom animation for elements */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

.fade-in.visible {
  opacity: 1;
} 