body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
}

.sidebar {
  width: 220px;
  background: #222;
  color: #fff;
  height: 100vh;
  position: fixed;
}

.sidebar h2 {
  text-align: center;
  padding: 1rem 0;
  margin: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
  background: #444;
}

.content {
  margin-left: 220px;
  padding: 20px;
  flex: 1;
}

.video-placeholder {
  background: #ccc;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background: #0066cc;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.button:hover {
  background: #004999;
}

.sermon {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.sermon h2 {
  margin-top: 0;
}

.transcript-placeholder {
  background: #f9f9f9;
  padding: 10px;
  font-style: italic;
}

.course {
  margin-bottom: 30px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #0066cc;
}

.course h2 {
  margin-top: 0;
}

.event {
  margin-bottom: 30px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #0066cc;
}

.event h2 {
  margin-top: 0;
}

.event-desc {
  margin-top: 10px;
  font-style: italic;
}

.calendar-placeholder {
  background: #eaeaea;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.news-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.news-item h2 {
  margin-top: 0;
}

.news-item .date {
  font-size: 0.9em;
  color: #666;
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  color: #0066cc;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.resource {
  margin-bottom: 30px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #0066cc;
}

.resource h2 {
  margin-top: 0;
}

.donation-options {
  margin-bottom: 30px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #0066cc;
}

.donation-options h2 {
  margin-top: 0;
}

.community-section {
  margin-bottom: 30px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #0066cc;
}

.community-section h2 {
  margin-top: 0;
}

.contact-section {
  margin-bottom: 30px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #0066cc;
}

.contact-section h2 {
  margin-top: 0;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button.button {
  border: none;
  cursor: pointer;
}

.home-logo {
  text-align: center;
  padding: 20px 0;
}

.home-logo img {
  max-width: 320px; /* Adjust size as needed */
  height: auto;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }

  .sidebar h2 {
    display: inline-block;
    margin-left: 10px;
  }

  .sidebar ul {
    display: none; /* hidden until toggled */
    flex-direction: column;
    background: #222;
  }

  .sidebar ul.show {
    display: flex;
  }

  .sidebar ul li a {
    border-top: 1px solid #333;
  }

  .menu-toggle {
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    color: #fff;
    background: #444;
    float: right;
    margin: 10px;
  }

  .content {
    margin-left: 0;
  }
}


.site-footer {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  padding: 15px 0;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}


