/* Base Styles */
:root {
  --primary-color: #1a1818;
  --accent-color: #990f3d;
  --text-color: #333333;
  --text-light: #555555;
  --background-light: #fff1e5;
  --white: #fff;
  --border-color: #ccc1b7;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --transition: 0.3s ease;
  --radius: 0px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Georgia', serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-light);
}

h1, h2, h3 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'Georgia', serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background-color: #7d0731;
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.btn-outline:hover {
  background-color: rgba(153, 15, 61, 0.1);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-light);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent-color);
}

.nav-desktop {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-family: 'Georgia', serif;
  font-weight: 500;
  transition: var(--transition);
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  background-color: var(--background-light);
  border-bottom: 1px solid var(--border-color);
}

.nav-mobile .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  margin: 0 1rem;
}

/* Hero Section */
.hero {
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: none;
  border: 1px solid var(--border-color);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Social Links Section */
.social {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.social h2 {
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.social h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--accent-color);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(153, 15, 61, 0.1);
  border-color: var(--accent-color);
}

.social-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.social-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.social-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.card-link {
  color: var(--accent-color);
  font-weight: 1000;
  display: flex;
  align-items: center;
}

.card-link i {
  margin-left: 0.5rem;
  font-size: 0.875rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--background-light);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.contact h2 {
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--accent-color);
}

.contact-intro {
  max-width: 600px;
  margin: 3rem auto;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-card {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(153, 15, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  font-family: 'Georgia', serif;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer a {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #7d0731;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .profile-image {
    width: 150px;
    height: 150px;
  }
  
  .footer-content {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
  
  .footer-info {
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* For mobile menu toggle functionality - handled by JavaScript */
.nav-mobile.active {
  display: flex;
}

/* Places Page Styles */
.places-header {
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--background-light);
}

.places-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.places-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.places-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 1px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 120px;
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  display: flex;
}

.timeline-date {
  width: 120px;
  flex-shrink: 0;
  padding-right: 20px;
  text-align: right;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--accent-color);
}

.timeline-content {
  padding-left: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  flex-grow: 1;
}

.timeline-content::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  left: 114px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 5px;
}

.timeline-content h3 {
  margin-bottom: 0.3rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.timeline-location {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.timeline-content p {
  line-height: 1.5;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: var(--background-light);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  
}

.map-section h2 {
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  /*margin-bottom: 3rem;*/
  text-align: center; 
  margin-bottom: 1em;
}

.map-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--accent-color);
}

.map-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  line-height: 1.5;
}

.map-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Adjustments for Places Page */
@media (max-width: 768px) {
  .timeline::before {
    left: 22px;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-date {
    width: 100%;
    text-align: left;
    padding-left: 40px;
    margin-bottom: 0.5rem;
  }
  
  .timeline-content {
    padding-left: 40px;
  }
  
  .timeline-content::before {
    left: 16px;
  }
  
  .places-header h1 {
    font-size: 2rem;
  }
}

/* Projects Page Styles */
.projects-header {
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--background-light);
}

.projects-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.projects-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.projects-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Section */
.filter-section {
  padding: 2rem 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.25rem;
  font-family: 'Georgia', serif;
  color: var(--text-dark);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: var(--background-light);
}

.filter-btn.active {
  background-color: var(--accent-color);
  color: var(--white);
  border-color: var(--accent-color);
}

/* Projects Grid Section */
.projects-grid-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  border: 1px solid var(--border-color);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.project-image {
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.project-tag {
  background-color: var(--background-light);
  color: var(--accent-color);
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}

.project-content h3 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.project-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
}

.project-link i {
  transition: transform 0.3s ease;
}

.project-card:hover .project-link i {
  transform: translateX(5px);
}

/* Collaboration Section */
.collaboration-section {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.collaboration-section h2 {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.collaboration-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Responsive Adjustments for Projects Page
@media (max-width: 768px) {
  .projects-header h1 {
    font-size: 2rem;
  }
  
  .filter-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .filter-btn {
    width: 80%;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  */

  /*New CSS to replace projects toggle*/
  .category-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
  }
  .category-section:nth-child(even) {
    background-color: var(--white);
  }
  .category-section h2 {
    margin-bottom: 2rem;
    position: relative;
  }
  .category-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
  }
  .filter-section {
    padding: 20px 0 40px;
    text-align: center;
  }
  .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .filter-section .filter-btn {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px; /* Moderate rounding - not too square, not too round */
    background-color: var(--white);
    color: var(--text-color);
    font-family: 'Georgia', serif;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .filter-section .filter-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(153, 15, 61, 0.1);
  }
  .filter-section .filter-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(153, 15, 61, 0.05);
  }

  /* Content Page Styles */
.content-header {
  padding: 120px 0 40px;
  background-color: var(--background-light);
  border-bottom: 1px solid var(--border-color);
}
.content-header-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--text-light);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--accent-color);
}
.content-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}
.meta-item {
  display: flex;
  align-items: center;
}
.meta-item i {
  margin-right: 0.5rem;
}
.content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.content-tag {
  padding: 0.25rem 0.75rem;
  background-color: rgba(153, 15, 61, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.75rem;
}
/* Feature Image */
.feature-image {
  padding: 40px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}
.feature-image img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}
.image-caption {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* Content Navigation */
.content-navigation {
  padding: 30px 0;
  background-color: var(--background-light);
  border-bottom: 1px solid var(--border-color);
}
.toc-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.toc-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.toc-list {
  list-style: none;
  padding: 0;
}
.toc-list li {
  margin-bottom: 0.5rem;
}
.toc-list a {
  color: var(--text-color);
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-left: 1rem;
}
.toc-list a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}
.toc-list a:hover {
  color: var(--accent-color);
  padding-left: 1.5rem;
}
.toc-list a:hover::before {
  opacity: 1;
}
/* Content Body */
.content-body {
  padding: 60px 0;
  background-color: var(--white);
}
.content-section {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.content-section:last-child {
  margin-bottom: 0;
}
.content-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--accent-color);
}
.content-section h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}
.content-section h4 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}
.content-section p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.content-section p:last-child {
  margin-bottom: 0;
}
/* Blockquote / Pull Quote */
.pull-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--accent-color);
  position: relative;
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--accent-color);
  background-color: rgba(153, 15, 61, 0.05);
}
/* Content Images */
.content-image {
  margin: 2rem 0;
}
.content-image img {
  width: 100%;
  display: block;
}
.content-image figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}
/* Two Column Images */
.image-grid {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}
.content-image.half {
  margin: 0;
  flex: 1;
}
/* Lists */
.bullet-list, .numbered-list {
  margin: 1rem 0 1.5rem 1.5rem;
}
.bullet-list li, .numbered-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
/* Star Rating */
.star-rating {
  margin-bottom: 1.5rem;
  color: #FFD700;
  font-size: 1.25rem;
}
.star-rating .rating-text {
  margin-left: 0.5rem;
  color: var(--text-color);
  font-size: 1rem;
}
/* Pros & Cons */
.pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
.pros, .cons {
  flex: 1;
  min-width: 250px;
}
.pros h4 {
  color: #2e7d32;
}
.cons h4 {
  color: #c62828;
}
.pros ul, .cons ul {
  margin-left: 1.5rem;
}
.pros li, .cons li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
/* Map Section */
.map-section {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 3rem auto;
}
.map-container {
  margin: 1.5rem 0;
}
.map-placeholder {
  background-color: var(--border-color);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border-radius: var(--radius);
}
.map-description {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center; 
  margin-top: 1em; 
  font-style: italic; 
  color: #555;
}
/* Related Content */
.related-content {
  padding: 60px 0;
  background-color: var(--background-light);
  border-top: 1px solid var(--border-color);
}
.related-content h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.related-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--accent-color);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.related-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-color);
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.related-image {
  height: 200px;
  overflow: hidden;
}
.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.related-card:hover .related-image img {
  transform: scale(1.05);
}
.related-info {
  padding: 1.5rem;
}
.related-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.related-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}
/* CTA Section */
.cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}
.cta-section h2 {
  margin-bottom: 1rem;
}
.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .content-header h1 {
    font-size: 2rem;
  }
  
  .content-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .image-grid {
    flex-direction: column;
  }
  
  .pros-cons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .pull-quote {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
}

/* Video Section */
.video-section {
  padding: 40px 0; /* Add some padding around the video section */
  background-color: var(--white); /* Match section background */
  border-bottom: 1px solid var(--border-color); /* Keep consistent borders */
}

.video-container {
  position: relative; /* Needed for aspect ratio trick */
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio for responsiveness (9 / 16 * 100) */
  height: 0;
  overflow: hidden; /* Prevent overflow from iframe */
  border-radius: 8px; /* Slightly rounded corners - adjust to your preference */
  margin-bottom: 1rem; /* Add some space below the video */
}

.video-container iframe {
  position: absolute; /* Take iframe out of normal flow */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Content Section Images */
.content-section-image {
  display: block; /* Make it a block-level element to respect width */
  max-width: 100%; /* Ensure it doesn't exceed the container width */
  height: auto;    /* Maintain aspect ratio */
  margin: 1.5rem 0; /* Add vertical spacing around the image */
  margin-left: auto;  /* Center the image horizontally within content-section */
  margin-right: auto; /* Center the image horizontally within content-section */
}

.content-link {
  color: var(--accent-color);
  text-decoration: none; 
}

.content-link:hover {
  color: #7d0731;  /* Optional:  Change the color on hover */
}

.map-container {
  /* Ensures the iframe doesn't overflow if using % width */
  max-width: 100%;
  overflow: hidden; /* Hides any potential scrollbars on the container */
   /* You might want a border or specific background */
   border: 1px solid #ccc;
}

.map-container iframe {
  display: block; /* Prevents extra space below the iframe */
  width: 100%;   /* Makes iframe fill the container width */
  /* Height is usually controlled by the height attribute in the iframe tag,
     but you could set it here too: height: 450px; */
  border: none;  /* Overrides the inline style="border:0;" if needed */
}
