/* ============================================
   AMAUDARA COMMUNITY WEBSITE - MAIN STYLES
   ============================================ */

/* CSS Variables - Color Palette */
:root {
  --primary-orange: #F27C38;
  --secondary-brown: #8B5E3C;
  --cream: #FFF8F0;
  --muted-green: #6B8E23;
  --dark-brown: #4A3728;
  --light-orange: #FFB885;
  --white: #FFFFFF;
  --text-dark: #2D2D2D;
  --text-light: #666666;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-brown);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-brown) 100%);
  color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.logo-text h1 {
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
}

.logo-text span {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-link {
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: 5px;
  box-shadow: 0 5px 20px var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--primary-orange);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slider-container {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.slide-content {
  color: var(--white);
  max-width: 600px;
}

.slide-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--secondary-brown);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  border: 2px solid var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-orange);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-orange);
  transition: var(--transition);
  pointer-events: auto;
}

.slider-btn:hover {
  background: var(--white);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--dark-brown);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-orange);
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

.intro-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
}

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

/* ============================================
   VILLAGE CARDS
   ============================================ */

.villages-section {
  background: var(--cream);
}

.village-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.village-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

.village-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.village-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.village-card-content {
  padding: 1.5rem;
}

.village-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark-brown);
}

.village-card-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.village-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.9rem;
}

.village-card-link:hover {
  color: var(--secondary-brown);
  gap: 0.75rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--cream);
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--primary-orange);
  color: var(--white);
}

.feature-card:hover h3,
.feature-card:hover p {
  color: var(--white);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primary-orange);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: linear-gradient(135deg, var(--secondary-brown) 0%, var(--dark-brown) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--light-orange);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CONTENT PAGES
   ============================================ */

.content-section {
  background: var(--white);
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.main-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--dark-brown);
}

.main-content h2:first-child {
  margin-top: 0;
}

.main-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.main-content ul,
.main-content ol {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-light);
}

.main-content li {
  margin-bottom: 0.5rem;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--cream);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark-brown);
}

.sidebar-card ul {
  list-style: none;
}

.sidebar-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.sidebar-card li:last-child {
  border-bottom: none;
}

.sidebar-card a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-card a:hover {
  color: var(--primary-orange);
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-brown) 100%);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.info-box h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.info-box p,
.info-box li {
  color: rgba(255, 255, 255, 0.9);
}

.info-box ul {
  list-style: none;
  margin: 0;
}

.info-box li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.info-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
}

/* ============================================
   VILLAGE PAGE SPECIFIC
   ============================================ */

.village-hero {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.village-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.village-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 3rem;
  color: var(--white);
}

.village-hero-overlay h1 {
  font-size: 3rem;
  color: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.leader-card {
  background: var(--cream);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.leader-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 4px solid var(--primary-orange);
}

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

.leader-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.leader-card span {
  color: var(--primary-orange);
  font-size: 0.875rem;
}

/* ============================================
   GALLERY
   ============================================ */

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

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(242, 124, 56, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 5px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--secondary-brown);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--primary-orange);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ============================================
   EVENTS CALENDAR
   ============================================ */

.calendar-container {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  overflow: hidden;
}

.calendar-header {
  background: var(--primary-orange);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-header h3 {
  color: var(--white);
  margin: 0;
}

.calendar-nav {
  display: flex;
  gap: 0.5rem;
}

.calendar-nav button {
  width: 35px;
  height: 35px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.calendar-nav button:hover {
  background: var(--white);
  color: var(--primary-orange);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-day-header {
  padding: 1rem;
  background: var(--cream);
  font-weight: 600;
  color: var(--dark-brown);
}

.calendar-day {
  padding: 1rem;
  min-height: 80px;
  border: 1px solid #eee;
  position: relative;
}

.calendar-day.other-month {
  color: #ccc;
  background: #f9f9f9;
}

.calendar-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
}

.event-list {
  margin-top: 2rem;
}

.event-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.event-date {
  text-align: center;
  min-width: 70px;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  display: block;
}

.event-date .month {
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.event-content h4 {
  margin-bottom: 0.5rem;
}

.event-content p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.event-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* ============================================
   NEWS & ANNOUNCEMENTS
   ============================================ */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.news-content {
  padding: 1.5rem;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.news-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.news-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  color: var(--secondary-brown);
}

/* ============================================
   MAPS & DIRECTIONS
   ============================================ */

.map-container {
  background: var(--cream);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.map-placeholder {
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
  border-radius: 10px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.map-placeholder span {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.directions-list {
  list-style: none;
  margin: 2rem 0;
}

.directions-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.landmark-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 15px var(--shadow);
}

.landmark-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.landmark-card h4 span {
  font-size: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark-brown);
  color: var(--white);
  padding: 4rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-orange);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
  .intro-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
  
  .hero-slider {
    height: 400px;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--secondary-brown);
    flex-direction: column;
    padding: 2rem;
    transition: var(--transition);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.1);
    display: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .hero-slider {
    height: 350px;
  }
  
  .slide-overlay {
    padding: 1.5rem;
  }
  
  .slide-content h2 {
    font-size: 1.5rem;
  }
  
  .intro-stats {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .village-hero-overlay h1 {
    font-size: 2rem;
  }
  
  .calendar-day {
    min-height: 50px;
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .event-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-text h1 {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .village-cards,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}
