/* Main CSS for Veteran Benefits Concierge */

:root {
  /* Color Variables */
  --primary-color: #3a5a78; /* Navy blue */
  --secondary-color: #d1ae6d; /* Gold */
  --accent-color: #a8423f; /* Deep red */
  --neutral-color: #edeae1; /* Off-white */
  --dark-color: #2a3541; /* Dark navy */
  
  /* Shades */
  --primary-light: #5078a0;
  --primary-dark: #294155;
  --secondary-light: #e9d2a6;
  --secondary-dark: #b08b44;
  --accent-light: #c76965;
  --accent-dark: #7a2e2c;
  --neutral-light: #f7f5f0;
  --neutral-dark: #c5c1b7;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--dark-color);
  background-color: var(--neutral-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  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: var(--dark-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.section-padding {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  color: var(--dark-color);
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 80%;
}

/* Hero Section */
#hero {
  height: 100vh;
  min-height: 600px;
  background-color: var(--primary-color);
  color: white;
  position: relative;
  overflow: hidden;
}

#hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(42, 53, 65, 0.8), rgba(58, 90, 120, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

/* About Section */
#about {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.about-feature {
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

/* Services Section */
#services {
  background-color: white;
  position: relative;
}

.service-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--neutral-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.service-item-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-dark);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
#features {
  background-color: var(--primary-color);
  color: white;
  position: relative;
}

#features .section-title,
#features .section-subtitle {
  color: white;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--neutral-light);
}

.price-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  text-align: center;
}

.price-header h3 {
  margin-bottom: 0;
  color: white;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.price-body {
  padding: 2rem;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-dark);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
#team {
  background-color: white;
}

.team-member {
  margin-bottom: 2rem;
  text-align: center;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--primary-light);
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
}

/* Reviews Section */
#reviews {
  background-color: var(--neutral-light);
  position: relative;
}

.review-item {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem 0;
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.review-text:before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--secondary-light);
  position: absolute;
  left: -1rem;
  top: -2rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color);
}

/* Core Info Section */
#coreinfo {
  background-color: white;
}

.core-info-item {
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--neutral-light);
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.core-info-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

/* Contact Section */
#contact {
  background-color: var(--primary-color);
  color: white;
  position: relative;
}

#contact .section-title,
#contact .section-subtitle {
  color: white;
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid var(--neutral-dark);
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Blog Section */
#blog {
  background-color: var(--neutral-light);
}

.blog-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  height: 100%;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-item-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-item-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
}

/* FAQ Section */
#faq {
  background-color: white;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Gallery Section */
#gallery {
  background-color: var(--neutral-light);
  padding: 6rem 0;
}

.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

footer p {
  color: var(--neutral-light);
}

#site-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  color: var(--neutral-dark);
}

.footer-link {
  color: var(--neutral-light);
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: var(--secondary-color);
}

/* Decorative Elements */
.shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.blob {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.blob-1 {
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background-color: var(--secondary-color);
  border-radius: 38% 62% 70% 30% / 30% 30% 70% 70%;
  animation: blob-animation 20s linear infinite;
}

.blob-2 {
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background-color: var(--accent-color);
  border-radius: 38% 62% 43% 57% / 48% 68% 32% 52%;
  animation: blob-animation 25s linear infinite reverse;
}

@keyframes blob-animation {
  0% {
    border-radius: 38% 62% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 40% 60% / 50% 60% 40% 50%;
  }
  50% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }
  75% {
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  }
  100% {
    border-radius: 38% 62% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  padding: 1rem 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item {
  display: flex;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: var(--neutral-dark);
  content: "/";
}

.breadcrumb-item.active {
  color: var(--primary-dark);
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
  }
  
  .fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }
  
  .fade-in-left {
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
  }
  
  .fade-in-right {
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
} 