:root {
  --muqi-teqsti: #655449;
  --header: #69473c;
  --gia-teqsti: #c0b3ac;
  --kanis-feri: #fff6ed;
}

body {
  background-color: var(--kanis-feri);
  color: var(--muqi-teqsti);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.coursewrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 1em;
}


#stimg {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 5em;
    box-shadow: 0 5px 20px 10px rgba(0, 0, 0, 0.16);
}
.course-content {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

/* კურსის სექცია */
.course-section {
  background: #ffffff;
  border-left: 5px solid var(--header);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 5em;
  box-shadow: 0 5px 20px 10px rgba(0, 0, 0, 0.16);
}

.course-section.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.course-section h2 {
  color: var(--header);
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.course-section .description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muqi-teqsti);
  margin-bottom: 1.5rem;
}

/* რეგისტრაციის ფორმა */
.register-form {
  background: var(--kanis-feri);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--gia-teqsti);
}

.register-form h3 {
  margin-top: 0;
  color: var(--header);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.register-form input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--gia-teqsti);
  border-radius: 8px;
  outline: none;
}

.register-form button {
  width: 100%;
  background-color: var(--header);
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.register-form button:hover {
  background-color: #5a3d34;
}
