/* ------------------------
   Basic Global Styles
------------------------ */
body {
  font-family: 'poppins', sans-serif;
  background-color: #f4f6f8; /* Slightly adjusted light background for a clean look */
  color: #343a40; /* Darker gray for general text, good contrast */
  line-height: 1.6;
}

h2, h3 {
  font-weight: bold;
  color: #658CBB; /* Auth page primary blue for headings */
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
h3 {
  font-size: 24px;
  margin-top: 10px;
}

p {
  font-size: 16px;
  color: #495057; /* Slightly softer dark gray for paragraphs */
}

/* ------------------------
   Navbar Styles
------------------------ */
.navbar {
  /* display: flex; justify-content: space-between; align-items: center; */ /* This is duplicated later, keep one */
  padding: 10px 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #658CBB; /* Auth blue accent */
  margin-bottom: 0; /* Resetting from potential old value */
  border-radius: 0; /* Resetting from potential old value */
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 !important;
  height: 60px;
  line-height: 60px;
}

.navbar-brand img {
  max-height: 45px;
  max-width: 45px;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar-brand span {
  font-weight: bold;
  white-space: nowrap;
  vertical-align: middle;
}

/* ------------------------
   Hero Section Styles
------------------------ */
.hero-section {
  position: relative;
  text-align: center;
  color: white;
}

.hero-section img {
  width: 100%;
  height: auto;
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-caption h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-caption p {
  font-size: 24px;
}

/* ------------------------
   Button Styles
------------------------ */
.btn-primary {
  background-color: #658CBB; /* Auth blue */
  border-color: #658CBB;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: bold;
  color: black; /* Matching auth button text color */
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #B86566; /* Auth mauve on hover */
  border-color: #B86566;
  color: black;
}

.btn-success {
  background-color: #B86566; /* Auth mauve */
  border-color: #B86566;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: bold;
  margin: 20px auto;
  display: inline-block;
  color: black; /* Matching auth button text color */
  transition: background-color 0.3s ease;
}

.btn-success:hover {
  background-color: #658CBB; /* Auth blue on hover */
  border-color: #658CBB;
  color: black;
}

/* ------------------------
   Testimonials Section
------------------------ */
.testimonials {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.testimonials img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  display: block;
}

.testimonials .img-circle-container {
  background-color: #ffffff;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  width: 120px;
  height: 120px;
}

/* Image Container Alignment */
.image-container {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ------------------------
   Blog Thumbnails
------------------------ */
.thumbnail {
  background: #fff;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.thumbnail.visible {
  opacity: 1;
}

.thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.thumbnail .caption {
  padding: 20px;
}

.thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ------------------------
   Social Media Icons
------------------------ */
.social-section {
  background-color: #3a506b; /* A darker shade related to #658CBB */
  padding: 40px 0;
}

.social-section h2 {
  color: #f5f5f5; /* Light text for dark background */
  margin-bottom: 20px;
}

.social-section a {
  color: #f5f5f5;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-section a:hover {
  color: #B86566; /* Auth mauve for hover */
}

.social-section i {
  font-size: 24px;
}

/* ------------------------
   Footer Styles
------------------------ */
.footer {
  background-color: #2b3e50; /* Darker, muted color */
  color: #f5f5f5; /* Light text */
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
}

/* ------------------------
   Responsive Map
------------------------ */
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

/* ------------------------
   Animations
------------------------ */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------
   Blog Post Section
------------------------ */
.blog-post {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

/* Main navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center; /* aligns everything vertically center */
  /* Styles moved to the earlier .navbar definition for consolidation */
}

/* Logo container styles */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 45px; /* adjust as needed */
  margin-right: 10px;
}

.logo-container span {
  font-size: 20px;
  font-weight: 600;
  color: #658CBB; /* Auth blue for logo text if not an image */
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #343a40; /* Dark text for links */
  font-weight: 500;
  padding: 8px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #B86566; /* Auth mauve for link hover */
}
