body {
  background-color: #111;
  color: #f0f0f0;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #111;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #444;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

header h1 {
  font-size: 1.8rem;
  color: #0f0;
  margin: 0;
}

nav a {
  margin: 0 1rem;
  color: #aaa;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #0f0;
}

/* Hero sekce */
.hero {
  background: url('falloutbg.jpg') center/cover no-repeat;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: white;
  border-bottom: 3px solid #0f0;
}

.hero h2 {
  font-size: 2rem;
  color: #0f0;
  margin-bottom: 0.5rem;
}

.hero p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero button {
  background-color: #0f0;
  color: #111;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.hero button.pulsate {
  animation: pulsate 1s ease-in-out infinite;
}

@keyframes pulsate {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.courses {
  padding: 2rem;
  background-color: #1e1e1e;
}

.courses h2 {
  color: #0f0;
  text-align: center;
  margin-bottom: 1.5rem;
}

.course-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.course-item {
  background-color: #2a2a2a;
  border-left: 5px solid #0f0;
  padding: 1rem;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 0 10px #0f0a;
  transition: box-shadow 0.3s ease;
}

.course-item:hover {
  box-shadow: 0 0 15px #0f0;
}

.course-item h3 {
  color: #0f0;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.course-item p {
  margin-top: 0.6rem;
  font-size: 1rem;
  color: #ccc;
}

.course-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.course-button:hover {
  background-color: #3e8e41;
}

.about {
  background-color: #1a1a1a;
  padding: 2rem;
  color: #ccc;
  text-align: center;
  border-top: 2px solid #0f0;
  border-bottom: 2px solid #0f0;
}

.info-section h2 {
  color: #0f0;
  margin-bottom: 1rem;
}

.info-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.gallery-section {
  background-color: #111;
  padding: 2rem;
  text-align: center;
  border-top: 2px solid #0f0;
  border-bottom: 2px solid #0f0;
}

.gallery-section h2 {
  color: #0f0;
  margin-bottom: 1.5rem;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border: 3px solid #0f0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,255,0,0.3);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border: 3px solid #0f0;
  border-radius: 8px;
}

.features {
  display: flex;
  justify-content: space-around;
  background-color: #111;
  padding: 2rem;
  flex-wrap: wrap;
}

.feature {
  background-color: #222;
  border-left: 5px solid #0f0;
  padding: 1rem;
  margin: 0.5rem;
  flex: 1 1 250px;
  border-radius: 8px;
}

.feature h3 {
  color: #0f0;
  margin-top: 0;
}

.feature p {
  color: #ccc;
}

.broadcast {
  background-color: #1a1a1a;
  padding: 2rem;
  color: #0f0;
}

.broadcast ul {
  list-style-type: square;
  padding-left: 1.5rem;
}

.testimonials {
  background-color: #222;
  padding: 2rem;
}

.testimonials h2 {
  text-align: center;
  color: #0f0;
  margin-bottom: 1rem;
}

.testimonial {
  background-color: #333;
  padding: 1rem;
  margin: 1rem 0;
  border-left: 5px solid #f90;
  border-radius: 6px;
  color: #ddd;
  font-style: italic;
}

.clock-section {
  text-align: center;
  padding: 2rem;
  background-color: #111;
  font-size: 2rem;
  color: #0f0;
}

footer {
  background-color: #111;
  color: #666;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 2px solid #444;
}

footer a {
  color: #aaa;
  margin: 0 0.5rem;
  text-decoration: none;
}

footer a:hover {
  color: #0f0;
}

@media (max-width: 768px) {
  .course-list {
    flex-direction: column;
    align-items: center;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .gallery img {
    width: 90%;
    height: auto;
  }

  .info-section p {
    padding: 0 1rem;
  }
}
