body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
  color: #333;
}

/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 5px 15px;
  font-size: 14px;
  background: #f5f5f5;
}

.social-icons a { 
  margin-left: 10px; 
  color: #8B4513; /* Brown icons */
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  background: white;
}

.logo img { height: 40px; margin-right: 8px; }
.nav a { margin: 0 10px; font-weight: bold; }
.nav a.active { color: #8B4513; }

/* Mobile menu */
.menu-toggle { display: none; font-size: 22px; cursor: pointer; color: #8B4513; }
.mobile-menu {
  position: fixed;
  top: 0; left: -100%; height: 100%; width: 250px;
  background: white; box-shadow: 2px 0 8px rgba(0,0,0,0.3);
  transition: left 0.3s; z-index: 9999; padding: 15px;
}
.mobile-header { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav { display: flex; flex-direction: column; margin-top: 20px; }
.mobile-nav a { padding: 10px 0; border-bottom: 1px solid #ddd; }
.close-btn { background: none; border: none; font-size: 20px; cursor: pointer; }

/* Breadcrumb */
.breadcrumb {
  padding: 10px 20px;
  font-size: 14px;
  color: #555;
}
.breadcrumb a {
  color: #8B4513;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* About Page Layout */
.about-page {
  display: flex;
  padding: 20px;
}

.sidebar {
  width: 200px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
}

.sidebar button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border: none;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  background: #eee;
  border-radius: 6px;
  color: #333;
}

.sidebar button.active {
  background: #8B4513;
  color: #fff;
}

.content {
  flex: 1;
  padding: 0 20px;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-content img {
  max-width: 250px;
  float: left;
  margin-right: 15px;
  border-radius: 8px;
}

/* ====== Guru / About person layout ====== */
.guru-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 24px 0 40px;
  padding: 6px 2px;
}

/* Left photo column */
.guru-photo {
  flex: 0 0 260px;            /* fixed width photo column */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.guru-img {
  width: 100%;
  max-width: 260px;
  height: 340px;              /* tall portrait */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* Right text column */
.guru-content {
  flex: 1 1 auto;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}
.guru-title {
  margin: 0 0 10px;
  color: #8B4513;             /* same brown as your theme */
  font-size: 22px;
  font-weight: 700;
}

/* Optional separator between persons */
.guru-sep {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 18px 0;
  border-radius: 2px;
}

/* Center a heading quickly */
.center-text {
  text-align: center;
}

/* Responsive: stack vertically on narrow screens */
@media (max-width: 880px) {
  .guru-item {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .guru-photo {
    width: 100%;
    max-width: 420px;
  }
  .guru-img {
    height: auto;
    max-height: 420px;
    width: 100%;
  }
  .guru-content {
    width: 100%;
    margin-top: 12px;
  }
  .guru-title { text-align: left; }
}

/* Navigation Links */
.nav a, 
.mobile-nav a {
  color: #333;                /* Normal color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav a:hover,
.mobile-nav a:hover {
  color: #8B4513;             /* Samiyar Brown on hover */
}

.nav a.active,
.mobile-nav a.active {
  color: #8B4513;             /* Active page stays brown */
}

/* Footer */
.footer { background: #8B4513; 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; border-bottom: 2px solid #fff; display: inline-block; }
.footer-col ul { list-style: none; padding: 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; }

/* Responsive */
@media(max-width: 768px){
  .about-page { flex-direction: column; }
  .sidebar { width: 100%; margin-bottom: 15px; }
  .menu-toggle { display: block; }
  .desktop-menu { display: none; }
}
