body {
  font-family: 'Georgia', serif;
  margin: 0;
  background: #f7f3ed;
  color: #4a3520;
}

header {
  background-image: url('Swami\ banner.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 360px 20px 100px;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

nav {
  background: #8a5f35;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}


.nav-links a {
  color: #f7f3ed;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

.logo {
  height: 60px;
}

section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

footer {
  background: #8a5f35;
  color: #f7f3ed;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}
/* Contact Table Styles */
    .contact-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 30px;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }

    .contact-table caption {
      text-align: center;
      font-weight: 700;
      font-size: 1.2rem;
      padding: 1rem;
      background-color: #8a5f35;
      color: #f7f3ed;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }

    .contact-table th,
    .contact-table td {
      padding: 0.8rem 1rem;
      border: 1px solid #e6e2df;
      text-align: left;
    }

    .contact-table thead th {
      background-color: #f5efe9;
      font-weight: 700;
    }

    .contact-table tbody tr:nth-child(even) {
      background-color: #faf7f4;
    }

    .contact-table a {
      color: inherit;
      text-decoration: none;
    }

    .contact-table a:hover {
      text-decoration: underline;
    }

    @media (max-width: 850px) {
      .center-container {
        width: 95%;
        padding: 20px;
      }
    }
    /* Two-column layout */
    .about-container {
      display: flex;
      flex-wrap: wrap; /* stack on small screens */
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
      margin: 30px auto;
      max-width: 1200px;
    }

    .about-text {
      flex: 1 1 400px; /* grow/shrink, min 400px */
      font-size: 1.1em;
      line-height: 1.6;
    }

    .slideshow-container {
      flex: 1 1 400px;
      max-width: 600px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .slide {
      display: none;
      width: 100%;
    }

    .fade {
      animation-name: fade;
      animation-duration: 1.5s;
    }

    @keyframes fade {
      from { opacity: 0.4; }
      to { opacity: 1; }
    }

    /* Make sure images are responsive */
    .slideshow-container img {
      width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 900px) {
      .about-container {
        flex-direction: column;
        align-items: center;
      }
    }
    /* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  color: #f7f3ed;
  font-weight: bold;
  text-decoration: none;
  margin: 0 12px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #8a5f35;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 8px;
}

.dropdown-content a {
  color: #f7f3ed;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: normal;
}

.dropdown-content a:hover {
  background-color: #a3744d;
}

.dropdown:hover .dropdown-content {
  display: block;
}
