:root {
  --primary-color: #1b5e20;
  --primary-light: #4c8c4a;
  --primary-dark: #003300;
  --text-on-primary: #ffffff;
  --secondary-color: #e8f5e9;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #757575;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background-color: var(--primary-dark);
  color: var(--text-on-primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

.logo a {
  color: var(--text-on-primary);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  color: var(--text-on-primary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-menu a:hover {
  background-color: var(--primary-light);
  border-radius: 4px;
}

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

/* Banner */
.banner {
  background-color: var(--primary-light);
  color: var(--text-on-primary);
  padding: 3rem 0;
  text-align: center;
}

.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.banner p {
  font-size: 1.2rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-dark);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.card {
  flex: 1 1 300px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  font-family: 'Playfair Display', serif;
}

.card-date {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.card-text {
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--primary-light);
}

/* About Section */
.about-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-image {
  flex: 1;
  max-width: 400px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.about-content {
  flex: 2;
}

.about-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-caption h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.25rem;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pagination a {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  text-decoration: none;
  color: var(--primary-dark);
  transition: background-color 0.3s;
}

.pagination a:hover,
.pagination a.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-on-primary);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  flex: 1 1 300px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-on-primary);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section with Carousel */
.hero-section {
  position: relative;
  height: 85vh;
  overflow: hidden;
  background-color: var(--primary-light);
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(27, 94, 32, 0.7), rgba(27, 94, 32, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 2rem;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin-bottom: 2rem;
}

.logo-container img {
  height: 100px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.explore-btn {
  background-color: #f8f8f8;
  color: var(--primary-dark);
  border: none;
  padding: 0.75rem 2rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu a {
    display: block;
    padding: 0.75rem 0;
  }
  
  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .about-section {
    flex-direction: column;
  }
  
  .about-image {
    max-width: 100%;
  }
  
  .hero-section {
    height: 100vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .logo-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .logo-container img {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .banner h1 {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-container img {
    height: 60px;
  }
}

/* About Page Styling - Modern Version */
.about-container {
  background-color: #fcfcfc;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-container::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(27, 94, 32, 0.05);
  z-index: 0;
}

.about-container::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(27, 94, 32, 0.05);
  z-index: 0;
}

.about-title {
  color: var(--primary-color);
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  position: relative;
}

.about-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  color: var(--dark-gray);
  font-size: 1.1rem;
  position: relative;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.about-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-card-inner {
  display: flex;
  flex-wrap: wrap;
}

.about-card-content {
  flex: 1;
  min-width: 300px;
  padding: 3rem;
}

.about-card-media {
  flex: 1;
  min-width: 300px;
  position: relative;
  background-color: var(--primary-light);
  min-height: 400px;
  overflow: hidden;
}

.about-card-accent {
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
}

.accent-1 {
  top: -50px;
  left: -50px;
}

.accent-2 {
  bottom: -50px;
  right: -50px;
}

.about-image-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.about-image {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-image-primary {
  width: 75%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.about-image-secondary {
  width: 50%;
  height: auto;
  top: 20%;
  right: 10%;
  z-index: 3;
  transform: rotate(5deg);
}

.about-card:hover .about-image-secondary {
  transform: rotate(0deg) translateY(-10px);
}

.about-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.about-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.about-card-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.about-card-text {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
}

.highlight {
  color: var(--primary-color);
  font-weight: 500;
}

.about-btn {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.about-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(27, 94, 32, 0.2);
}

/* Culture card specific styling */
.about-card.culture-card .about-card-media {
  order: -1;
}

.about-card.culture-card .about-image-secondary {
  left: 10%;
  right: auto;
  transform: rotate(-5deg);
}

.about-card.culture-card:hover .about-image-secondary {
  transform: rotate(0deg) translateY(-10px);
}

@media (max-width: 992px) {
  .about-card-content {
    padding: 2rem;
  }
  
  .about-card-title {
    font-size: 1.8rem;
  }
  
  .about-image-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .about-card-media {
    min-height: 300px;
  }
  
  .about-card.culture-card .about-card-media {
    order: 0;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
  }
}

/* Geography and Demographics Section Styling */
.geo-demo-container {
  background-color: #f9f7e8;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.geo-demo-container::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(27, 94, 32, 0.05);
  z-index: 0;
}

.geo-demo-container::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(27, 94, 32, 0.05);
  z-index: 0;
}

.geo-demo-title {
  color: var(--primary-color);
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  position: relative;
}

.geo-demo-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--dark-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

.geo-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 3rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.geo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.geo-card-inner {
  display: flex;
  flex-wrap: wrap;
}

.geo-card-content {
  flex: 1.5;
  min-width: 300px;
  padding: 3rem;
}

.geo-card-media {
  flex: 1;
  min-width: 300px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.geo-card.right-image .geo-card-media {
  order: 2;
}

.geo-card.left-image .geo-card-media {
  order: -1;
}

.geo-card-accent {
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
}

.accent-top-left {
  top: -50px;
  left: -50px;
}

.accent-bottom-right {
  bottom: -50px;
  right: -50px;
}

.geo-map {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.geo-card:hover .geo-map {
  transform: scale(1.02);
}

.geo-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.geo-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.geo-text {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
}

.geo-highlight {
  color: var(--primary-color);
  font-weight: 500;
}

.geo-btn {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 1rem;
}

.geo-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(27, 94, 32, 0.2);
}

@media (max-width: 992px) {
  .geo-card-content {
    padding: 2rem;
  }
  
  .geo-card.right-image .geo-card-media,
  .geo-card.left-image .geo-card-media {
    order: 0;
  }
}

@media (max-width: 768px) {
  .geo-demo-title {
    font-size: 2.5rem;
  }
  
  .geo-demo-subtitle {
    font-size: 1rem;
  }
  
  .geo-title {
    font-size: 1.8rem;
  }
  
  .geo-card-media {
    min-height: 300px;
  }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .header-content {
    position: relative;
  }
  
  .logo {
    flex: 0 0 auto;
  }
  
  .logo a {
    font-size: 1.75rem;
    padding-right: 0;
  }
  
  .mobile-menu-button,
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .hamburger-icon {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
  }
  
  .hamburger-icon span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  
  .hamburger-icon span:nth-child(1) {
    top: 0px;
  }
  
  .hamburger-icon span:nth-child(2),
  .hamburger-icon span:nth-child(3) {
    top: 10px;
  }
  
  .hamburger-icon span:nth-child(4) {
    top: 20px;
  }
  
  .mobile-menu-button.active .hamburger-icon span:nth-child(1),
  .mobile-menu-button.active .hamburger-icon span:nth-child(4) {
    opacity: 0;
  }
  
  .mobile-menu-button.active .hamburger-icon span:nth-child(2) {
    transform: rotate(45deg);
  }
  
  .mobile-menu-button.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -280px;
    height: 100vh;
    width: 280px;
    background-color: var(--primary-dark);
    flex-direction: column;
    gap: 0;
    padding: 80px 0 0;
    transition: right 0.3s ease;
    z-index: 999;
    align-items: flex-start;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu a, 
  .dropdown-toggle {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0;
    text-align: left;
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    transform: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  
  .dropdown-menu a {
    padding-left: 2.5rem;
  }
  
  /* Overlay for mobile menu */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  body.menu-open {
    overflow: hidden;
  }
}