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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Hero Section */
header {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://picsum.photos/id/1015/1600/600') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e65c00;
}

/* Sections */
section {
  padding: 0 20px;
  max-width: 800px;
  margin: 60px auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.schedule ul {
  list-style: none;
  padding-left: 0;
}

.schedule li {
  margin-bottom: 10px;
}

.btn {
  margin-top: 15px;
}

p {
  margin-bottom: 15px;
}

/* Footer */
footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  .header h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
  }

  section {
    padding: 0 15px;
    margin: 40px auto;
  }
}

.moved {
  text-decoration-line: line-through;
  font-size: 0.8rem;
}