/* Global */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f2f2f2;
  color: #333;
  line-height: 1.6;
}

h2 {
  margin-top: 0;
  color: #444;
  font-size: 1.8rem;
}

/* Logo / Header Section */
.logo-container {
  background: #ffffff;
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.logo-container img {
  width: 70%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Navigation Tabs */
nav {
  background: #000;
  border-radius: 0;
  padding: 1rem;
  max-width: 100%;
  margin: 0 auto 2rem auto;
  text-align: center;
}
nav a {
  color: #fff;
  margin: 0 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #ccc;
}

/* Section Cards */
section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Speaker Cards */
.speaker-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.speaker-photo {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  object-fit: cover;
  background: #ddd;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.speaker-item div {
  flex: 1;
}

.speaker-name {
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.25rem;
}

.speaker-church {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* Mobile Speaker Cards */
@media (max-width: 768px) {
  .speaker-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .speaker-photo {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    margin-bottom: 1rem;
  }

  .speaker-name {
    font-size: 1.3rem;
  }

  .speaker-church {
    font-size: 1rem;
  }
}

/* Button */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #333;
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 2rem;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: 4rem;
  font-size: 0.95rem;
}

/* Schedule Table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.schedule-table th {
  background: #000;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.schedule-table tr:nth-child(even) {
  background: #fafafa;
}

.schedule-table tr.break-row td {
  background: #f0f0f0;
  font-style: italic;
  color: #555;
}

/* Mobile Responsive Table */
@media (max-width: 600px) {
  .schedule-table thead {
    display: none;
  }
  .schedule-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }
  .schedule-table td {
    display: block;
    text-align: right;
    padding: 0.5rem;
    position: relative;
  }
  .schedule-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    font-weight: bold;
    text-align: left;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f9f9f9, #ececec);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-logo {
  display: block;
  margin: 0 auto 1rem auto;
  width: 200px;
  max-width: 80%;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Layout with sidebars */
.with-sidebars {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.sidebar {
  flex: 1;
  background: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sidebar.left {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}

.sidebar.right {
  font-style: italic;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

/* Main card */
.with-sidebars .card {
  flex: 2;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Mobile: stack content */
@media (max-width: 900px) {
  .with-sidebars {
    flex-direction: column;
  }
  .sidebar {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}
