/* ============================================
   Get Started page — layout only (typography: All.css)
   ============================================ */

/* Navigation Bar Fix for Get Started Page */
.navigation {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  left: auto;
  padding: 0;
}

.navigation .nav ul {
  flex-wrap: nowrap;
  width: 100%;
}

.navigation .nav ul li {
  margin-left: 0.5rem;
  white-space: nowrap;
}

.navigation .nav ul li a {
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
}

/* Responsive Navigation for Get Started Page */
@media (max-width: 1024px) {
  .navigation {
    width: 100%;
    max-width: 100%;
    margin: 0;
    left: auto;
    padding: 0;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .navigation {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    left: auto;
  }
}

@media (min-width: 1441px) {
  .navigation {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    left: auto;
  }
}

/* Courses List */
.courses-list {
  text-align: center;
  padding: 30px;
}

.courses-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.courses-coming-soon .coming-soon-panel {
  justify-content: center;
  width: 100%;
}

.coming-soon-card {
  background: white;
  padding: 2.5rem 2rem;
  max-width: 520px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 74, 173, 0.15);
  border: 2px solid rgba(0, 74, 173, 0.2);
  text-align: center;
}

.coming-soon-card .coming-soon-icon {
  font-size: 3.5rem;
  color: var(--primary-color, #004aad);
  margin-bottom: 1rem;
  display: block;
}

.coming-soon-card h3 {
  color: var(--primary-color, #004aad);
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.coming-soon-card p {
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.course-card {
  background: white;
  padding: 20px;
  width: 330px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Scoped buttons (avoid global button overrides) */
.courses-list button,
#enroll-form button,
#courseForm button {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
}

.courses-list button:hover,
#enroll-form button:hover,
#courseForm button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 74, 173, 0.3);
}

.hidden {
  display: none;
}

.course-card button {
  margin-top: auto;
}

/* Enrollment Form Popup */
#enroll-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  background: white;
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 1100;
}

#enroll-form h2 {
  text-align: center;
}

#enroll-form .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
  color: var(--text-color);
  transition: var(--transition);
}

#enroll-form .close-btn:hover {
  color: var(--error-color);
}

/* Dark Background Overlay for Form Only */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}

#courseForm {
  display: flex;
  flex-direction: column;
  padding: 5px;
}

#courseForm label {
  margin: 5px 5px 5px 0px;
}

#courseForm input {
  height: 35px;
}

#courseForm button {
  margin: 20px 10px 10px 0px;
}

/* Response Modal */
#responseModal {
  display: none;
  position: fixed;
  z-index: 1000;
}

#responseMessage {
  position: relative;
  top: 15px;
}

#responseModal .modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 32%;
  text-align: center;
  height: 90px;
  border-radius: 8px;
}

#responseModal .close {
  position: relative;
  bottom: 20px;
}
