/* ---------------- Reset + Base ---------------- */
body {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* ---------------- Homepage Background Images ---------------- */
body.home {
  background-color: #f8f9fa;

  background-image: 
    url('images/2.png'),
    url('images/4.png'),
    url('images/bed.png');

  background-position: 10% 15%, 85% 70%, 15% 95%;
  background-repeat: no-repeat, no-repeat,no-repeat;
  background-size: 300px 300px, 400px 280px, 500px 300px;
}

body.bus-index {
  background-image: 
    url('../images/9.png');
  background-repeat: no-repeat;
  background-position: center; 
  background-size: 550px 450px;
}

body.about {
  background-image: 
    url('../images/taschen\ coke\ ad.png'),
    url('../images/fish in hand.png');
  background-repeat: no-repeat, no-repeat;
  background-position:bottom center,top left; 
  background-size: 400px 250px, 400px 250px;
}


/* ---------------- Container ---------------- */
.container {
  text-align: center;
  max-width: 900px;
}

/* ---------------- Header / Logo ---------------- */
header .logo {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

header {
  margin-bottom: 2rem;
}

/* ---------------- Button Layout ---------------- */
.button-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  justify-items: center;
  margin-top: 2rem;
}

/* ---------------- Main Page Buttons ---------------- */
.main-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 60px;

  background: white;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;

  border: 1px solid grey;
  border-radius: 0;

  transition: border 0.2s, transform 0.2s, color 0.2s;
}

.main-button:hover {
  border: 3px solid red;
  color: red;
  transform: scale(1.05);
}

/* ---------------- Date Buttons (Bus Project) ---------------- */
.date-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;

  background: white;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;

  border: 1px solid grey;
  border-radius: 0;

  transition: border 0.2s, transform 0.2s, color 0.2s;
}

.date-button:hover {
  border: 3px solid rgb(225, 65, 65),;
  color: rgb(255, 0, 0);
  transform: scale(1.05);
}


/* ---------------- 2025 Page ---------------- */
body.d2025-09-23 {
  background-image: 
  url('../images/bus 1.png'),
  url('../images/bus 2.png');  /* only added line */
  background-repeat: no-repeat, no-repeat;
  background-position: 2px, 200px;
  background-size: 300px 550px, 300px 400px;
}

/* ---------------- 2025 Page Text Alignment ---------------- */
body.d2025-09-23 .container {
  margin-left: auto;   /* pushes container to the right */
  margin-right: 2rem;  /* small gap from right edge */
  text-align: left;    /* keep text readable */
  max-width: 600px;    /* optional: narrower text box */
}
