body {
  font-family: 'Open Sans','Source Sans Pro',Arial,sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, #0a0a0a);
  color: #eaeaea;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

h1, h2 {
  text-align: center;
  color: #b71c1c;
}
.divider::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(to right, #ffb300, transparent);
}
.center.divider::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 12px auto 0; /* left aligned */
  background: linear-gradient(to right, transparent, #ffb300, transparent);
  opacity: 0.8;
}
.logo:hover .divider::after {
  width: 180px;
  opacity: 1;
}
.section:hover .divider::after {
  width: 180px;
  opacity: 1;
}

.highlight {
  color: #ffc107;
  font-weight: bold;
}

.section {
  margin-top: 80px;
}

.button {
  display: block;
  text-align: center;
  margin: 40px auto;
  padding: 15px;
  max-width: 320px;
  border-radius: 40px;
  text-decoration: none;
  background: #1a1a1a;
  color: #ffb300;
  border: 1px solid #b71c1c;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  box-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.button:hover {
  transform: translateY(-2px);
  color: #ffd54f;
  border-color: #ffb300;
  background: #1f1f1f;
  box-shadow: 
    0 6px 20px rgba(0,0,0,0.8),
    0 0 12px rgba(255, 179, 0, 0.25),
    inset 0 0 10px rgba(255, 179, 0, 0.2);
}

/* GRID PROGRAMŮ */
.programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.card {
  padding: 25px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #ffb300;
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.6),
    inset 0 0 8px rgba(255, 179, 0, 0.15);
}

.card h3 {
  color: #b71c1c;
  margin-bottom: 10px;
}

.meta {
  font-size: 0.9em;
  color: #bbb;
  margin-bottom: 6px;
}

.price {
  margin-top: 12px;
  color: #ffc107;
  font-weight: bold;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .programs {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 500px) {
  .programs {
    grid-template-columns: 1fr;
  }
}

.center {
  text-align: center;
}
.justify {
  text-align: justify;
}
.narrow {
  max-width: 600px;
  margin: 20px auto;
}
.text-indent {
  margin-left: 20px;   /* adjust as needed */
}

.small {
  color: #aaa;
  font-size: 0.9em;
}
/* Profile section layout */
.profile {
  display: flex;          /* row layout */
  align-items: flex-start; /* top-align image and text */
  gap: 20px;               /* space between image and text */
  margin-bottom: 30px;
}

.profile img {
  border-radius: 10px;     /* optional rounded corners */
  flex-shrink: 0;          /* prevents image from shrinking */
}

.profile-text {
  flex: 1;                 /* text takes remaining space */
}

.profile-text ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
}

.profile-text p {
  margin: 0 0 8px 0;
}