/* 
 * Retiree Rights Legal Café - Main Stylesheet
 * Created: April 2025
 */

/* Color Variables */
:root {
  /* Primary colors */
  --primary-1: #e8c5a9; /* Warm cream */
  --primary-2: #b07d62; /* Coffee brown */
  --primary-3: #6d9887; /* Sage green */
  --primary-4: #d8a0a6; /* Dusty rose */
  --primary-5: #94768e; /* Lavender gray */
  
  /* Light/dark shades */
  --primary-1-light: #f5e4d3;
  --primary-1-dark: #c9a68a;
  --primary-2-light: #d0a990;
  --primary-2-dark: #8c614b;
  --primary-3-light: #8dbeac;
  --primary-3-dark: #4a7566;
  --primary-4-light: #f3c4c8;
  --primary-4-dark: #b47980;
  --primary-5-light: #b498ae;
  --primary-5-dark: #6d5668;
  
  /* Neutral colors */
  --neutral-100: #ffffff;
  --neutral-200: #f8f8f8;
  --neutral-300: #f0f0f0;
  --neutral-400: #e0e0e0;
  --neutral-500: #c0c0c0;
  --neutral-600: #a0a0a0;
  --neutral-700: #707070;
  --neutral-800: #505050;
  --neutral-900: #303030;
  --neutral-1000: #101010;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-2);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-2-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-2);
  color: var(--neutral-100);
}

.btn-primary:hover {
  background-color: var(--primary-2-dark);
  color: var(--neutral-100);
}

.btn-secondary {
  background-color: var(--primary-3);
  color: var(--neutral-100);
}

.btn-secondary:hover {
  background-color: var(--primary-3-dark);
  color: var(--neutral-100);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-2);
  color: var(--primary-2);
}

.btn-outline:hover {
  background-color: var(--primary-2);
  color: var(--neutral-100);
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--primary-2-dark);
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--primary-5);
  font-weight: 500;
}

.section-desc {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: var(--neutral-100);
}

.section-bg-accent {
  background-color: var(--primary-1-light);
}

/* Decorative Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider .shape-fill {
  fill: var(--neutral-100);
}

/* Header & Navigation */
header {
  background-color: var(--neutral-100);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-2);
}

.navbar-nav {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2rem;
}

.navbar-collapse {
  display: none;
}

.navbar-collapse.show {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  background: white;
  width: 80%;
  height: 100%;
  z-index: 1000;
  padding: 2rem;
}

.overlay {
  display: none;
}

.overlay.show {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  z-index: 900;
}

@media (min-width: 768px) {
  .navbar-toggle,
  .navbar-close,
  .overlay {
    display: none !important;
  }

  .navbar-collapse {
    display: flex !important;
    position: static;
    height: auto;
    background: none;
    width: auto;
    padding: 0;
  }

  .navbar-nav {
    display: flex;
    gap: 1rem;
  }
}


.nav-link {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-2);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--primary-2);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background-color: var(--primary-1-light);
  overflow: hidden;
  margin-top: 80px;
}

.hero-slider {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  color: var(--neutral-100);
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--neutral-100);
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--neutral-200);
}

.hero-desc {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* About Section */
.about {
  position: relative;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  display: block;
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-3);
  top: -15px;
  left: -15px;
  z-index: -1;
  border-radius: 10px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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: 1rem;
}

.about-feature-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-2-dark);
}

/* Services Section */
.services {
  background-color: var(--neutral-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--neutral-200);
  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;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-name {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-2-dark);
}

.service-desc {
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-3);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-3);
}

/* Features Section */
.features {
  position: relative;
  background-color: var(--primary-1-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--neutral-100);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
}

.feature-name {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-2-dark);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--neutral-100);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.priceplan-card {
  background-color: var(--neutral-200);
  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;
  position: relative;
}

.priceplan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.priceplan-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-4);
  color: var(--neutral-100);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.priceplan-header {
  background-color: var(--primary-2);
  color: var(--neutral-100);
  padding: 2rem;
  text-align: center;
}

.priceplan-name {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-100);
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.priceplan-content {
  padding: 2rem;
}

.priceplan-desc {
  margin-bottom: 1.5rem;
  text-align: center;
}

.priceplan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.priceplan-features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.priceplan-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-3);
}

.priceplan-action {
  text-align: center;
}

/* Team Section */
.team {
  background-color: var(--primary-1-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.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-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-2-dark);
}

.team-role {
  color: var(--primary-5);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background-color: var(--neutral-100);
}

.reviews-slider {
  padding: 2rem 0;
}

.review-card {
  background-color: var(--neutral-200);
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1.5rem;
}

.review-text::before, .review-text::after {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3rem;
  position: absolute;
  color: var(--primary-3-light);
  opacity: 0.5;
}

.review-text::before {
  left: -1rem;
  top: -1rem;
}

.review-text::after {
  content: '\201D';
  right: -1rem;
  bottom: -2rem;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.review-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-name {
  font-weight: 600;
  color: var(--primary-2-dark);
}

/* Core Info Section */
.coreinfo {
  background-color: var(--primary-1-light);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.coreinfo-item {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item-icon {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 1rem;
}

.coreinfo-item-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-2-dark);
}

/* Contact Section */
.contact {
  background-color: var(--neutral-100);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
}

.contact-info-wrapper {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background-color: var(--neutral-200);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-400);
  border-radius: 5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-3);
  box-shadow: 0 0 0 3px var(--primary-3-light);
  outline: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--primary-2);
}

.contact-info-content h4 {
  margin-bottom: 0.3rem;
  color: var(--primary-2-dark);
}

/* Blog Section */
.blog {
  background-color: var(--primary-1-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.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;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--primary-5);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-2-dark);
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-3);
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.blog-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-3-dark);
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* Footer */
footer {
  background-color: var(--neutral-900);
  color: var(--neutral-300);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-100);
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 1.3rem;
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-3);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--neutral-400);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-3);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom small {
  font-size: 0.9rem;
  color: var(--neutral-500);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

/* Space Page */
#space {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-200);
}

/* Additional Pages Styles */

/* Page Banner */
.page-banner {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.page-banner-content {
  position: relative;
  z-index: 2;
  color: var(--neutral-100);
}

.page-banner-content h1 {
  font-size: 3rem;
  color: var(--neutral-100);
  margin-bottom: 0.5rem;
}

.page-banner-content p {
  font-size: 1.2rem;
  color: var(--neutral-200);
}

/* Service Elements for Additional Page 1 */
.service-element {
  padding: 2rem;
  background-color: var(--neutral-200);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-element:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  color: var(--primary-2);
}

.pension-service h3, 
.healthcare-card h3,
.estate-service-item h3,
.workshop-item h3,
.printed-item h3 {
  color: var(--primary-2-dark);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.healthcare-card {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.healthcare-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.healthcare-icon {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 1rem;
}

/* Café Experience Styles for Additional Page 2 */
.cafe-feature {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  background-color: var(--primary-1-light);
  border-radius: 30px;
  margin-bottom: 1rem;
}

.cafe-feature i {
  font-size: 1.2rem;
  color: var(--primary-2);
  margin-right: 0.8rem;
}

.office-hours-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.office-hours-card .card-header {
  background-color: var(--primary-2);
  color: var(--neutral-100);
  padding: 1rem 1.5rem;
}

.office-hours-card .card-header h3 {
  margin-bottom: 0;
  color: var(--neutral-100);
  font-size: 1.3rem;
}

.office-hours-card .card-body {
  padding: 1.5rem;
}

.community-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;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.community-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.community-card .card-body {
  padding: 1.5rem;
}

.community-card h3 {
  color: var(--primary-2-dark);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

/* Contact Page Additions */
.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-responsive {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.map-responsive img {
  width: 100%;
  display: block;
} 