/* Main stylesheet for Guardianship Application Assistance Office */

:root {
  /* Primary color palette */
  --primary-1: #7B8CDE; /* Soft blue-purple */
  --primary-2: #C3A6E1; /* Lavender */
  --primary-3: #F5A8A8; /* Salmon pink */
  --primary-4: #90BE6D; /* Soft green */
  --primary-5: #F9C784; /* Muted yellow */
  
  /* Shades */
  --primary-1-light: #A3B0EB;
  --primary-1-dark: #5969AB;
  --primary-2-light: #D8C6EB;
  --primary-2-dark: #9F7BC9;
  --primary-3-light: #FAC6C6;
  --primary-3-dark: #E77E7E;
  --primary-4-light: #ADCF95;
  --primary-4-dark: #6D9A4D;
  --primary-5-light: #FBDCAC;
  --primary-5-dark: #E5A54A;
  
  /* Neutrals */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #ced4da;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-outline-primary {
  color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-outline-primary:hover {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

/* Section styling */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  margin-bottom: 2rem;
  color: var(--neutral-600);
}

/* Header styling */
header {
  background-color: var(--neutral-100);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
}

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-1-light) 0%, var(--primary-2-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 40%;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 15%;
  right: -10%;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 25%;
  height: 40%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 10%;
  left: -5%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Services section */
.service-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
  color: var(--primary-1);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-3);
  margin: 1rem 0;
}

.service-features {
  margin-top: 1rem;
}

/* Features section */
.feature-item {
  margin-bottom: 2rem;
}

.feature-icon {
  color: var(--primary-4);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Price Plan section */
.price-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 2.5rem 2rem;
  border-top: 5px solid var(--primary-2);
  height: 100%;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-2);
  margin: 1.5rem 0;
}

.price-features {
  margin: 1.5rem 0;
}

/* Team section */
.team-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.team-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-role {
  color: var(--primary-3);
  font-weight: 600;
}

/* Reviews section */
.review-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 1rem 0;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* Core Info section */
.core-info-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--neutral-100);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.core-info-icon {
  color: var(--primary-5);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Contact form */
.contact-form {
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control {
  border: 1px solid var(--neutral-300);
  padding: 0.8rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.25rem rgba(123, 140, 222, 0.25);
}

/* Blog section */
.blog-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px 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;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* FAQ section */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--neutral-900);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

/* Gallery Section */
.gallery-container {
  margin-top: 2rem;
}

.gallery-item {
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer styling */
footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 3rem 0 1.5rem;
}

footer a {
  color: var(--neutral-300);
}

footer a:hover {
  color: var(--neutral-100);
}

small#site-copyright {
  display: block;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-700);
  color: var(--neutral-500);
  text-align: center;
}

/* Breadcrumb styling */
.breadcrumb {
  padding: 0.5rem 0;
}

.breadcrumb img {
  height: 16px;
  width: auto;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Space page */
.space-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
  }
  
  .service-card:hover,
  .price-card:hover,
  .team-card:hover,
  .core-info-item:hover,
  .blog-card:hover,
  .gallery-item:hover img {
    transform: none;
  }
} 