/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

a { text-decoration: none; color: inherit; }

/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  background: #f5f5f5;
  padding: 5px 15px;
  font-size: 14px;
}

.social-icons a { margin-left: 10px; color: #333; }

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.logo { display: flex; align-items: center; }
.logo img { height: 40px; margin-right: 10px; }

.nav a {
  margin: 0 8px;
  font-weight: bold;
  transition: color 0.3s;
}
.nav a:hover { color: #8B4513; }

/* Desktop Menu */
.desktop-menu { display: flex; }
.desktop-menu a { margin-left: 15px; }

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.3);
  transition: left 0.3s ease;
  z-index: 9999;
  padding: 15px;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  color: #333;
  font-weight: bold;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-menu { display: none; }
  .menu-toggle { display: block; }
}

/* Hero */
.hero {
  text-align: center;
  padding: 20px;
}
.hero h1 { color: #8B4513; }

/* ==========================
   Updated Image Scroll Section
   ========================== */
.image-scroll {
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  height: 400px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Buttons */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(139, 69, 19, 0.8);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: background 0.3s;
}

.slide-btn:hover {
  background: rgba(139, 69, 19, 1);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.tamil-text {
  margin-top: 10px;
  font-weight: bold;
  color: #8B4513;
}

/* Heritage Section - Split Layout */
.heritage.split-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  align-items: flex-start;
}
.heritage-text { flex: 1 1 50%; }
.heritage-text h2 { color: #8B4513; margin-bottom: 15px; }
.heritage-text p { margin-bottom: 15px; line-height: 1.6; }
blockquote { font-style: italic; color: #8B4513; margin: 15px 0; }

.heritage-images-vertical {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.heritage-images-vertical img {
  width: 50%;
  border-radius: 10px;
}

/* Buttons */
.quick-links { margin-top: 20px; }
.btn {
  display: inline-block;
  margin: 5px;
  padding: 10px 20px;
  border: 1px solid #8B4513;
  border-radius: 20px;
  color: #8B4513;
  transition: background 0.3s, color 0.3s;
}
.btn:hover { background: #8B4513; color: white; }

/* Footer */
.footer {
  background: #8B4513; /* Samiyar Brown */
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.footer-col h3 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin: 6px 0;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 10px;
  font-size: 13px;
}
