/* Pennsylvania Railroad Stations Homepage Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background-color: #FFFFFF;
}

a {
  color: #FF0000;
  text-decoration: none;
}

a:visited {
  color: #0000C6;
}

a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 30px;
}

header img {
  max-width: 100%;
  height: auto;
}

/* Main Layout Wrapper */
.main-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Sidebar Navigation */
.sidebar {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0;
}

.sidebar a {
  display: block;
}

.nav-button {
  width: 100%;
  height: auto;
  transition: opacity 0.2s ease;
}

.nav-button:hover {
  opacity: 0.8;
}

.paypal-widget {
  margin-top: 20px;
}

/* Main Content */
.content {
  flex: 1;
  min-width: 0;
  line-height: 1.6;
}

/* Welcome Section */
.welcome {
  margin-bottom: 40px;
}

.intro-text {
  font-size: 1rem;
  margin-bottom: 15px;
}

.first-letter {
  font-size: 2.5rem;
  font-weight: bold;
}

/* Donation Box */
.donation-box {
  border: 1px solid #000000;
  padding: 20px;
  margin-bottom: 30px;
}

.donation-box h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.donation-box ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

.donation-box li {
  margin-bottom: 8px;
}

.paypal-button {
  display: block;
  margin: 20px auto;
  cursor: pointer;
  border: 0;
}

.station-photo {
  text-align: center;
  margin-top: 20px;
}

.station-photo img {
  max-width: 100%;
  height: auto;
  border: 1px solid #000000;
}

/* Footer */
.site-footer {
  display: flex;
  gap: 30px;
  border-top: 1px solid #000000;
  padding-top: 20px;
  margin-top: 30px;
}

.footer-left {
  flex: 1;
}

.footer-right {
  flex: 1;
}

.footer-right p {
  text-align: center;
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.site-links {
  list-style: none;
  text-align: center;
  font-size: 0.875rem;
}

.site-links li {
  margin-bottom: 8px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .main-wrapper {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .site-footer {
    flex-direction: column;
  }

  .first-letter {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 10px;
  }

  header img {
    width: 100%;
  }

  .donation-box {
    padding: 15px;
  }

  .intro-text {
    font-size: 0.95rem;
  }

  .first-letter {
    font-size: 1.75rem;
  }

  .site-footer {
    font-size: 0.85rem;
  }
}