/* ===== Global Styles ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafaff;
}

/* ===== Banner Background ===== */
.banner {
  width: 100%;
  height: 100vh;
  background: url('../img/man.jpeg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ===== Container Box ===== */
.container {
  width: 600px;
  max-width: 90%;
  background: rgba(244, 243, 245, 0.96);
  padding: 30px;
  margin-left: 60px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

/* ===== Form Elements ===== */
h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-top: 15px;
  color: black;
}

input,
select {
  width: 90%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 50px; /* pill shape */
  border: none;
  font-size: 15px;
  background-color: #f92b72; /* pink background */
  color: white;
}

input::placeholder,
select {
  color: white;
}

select option {
  color: black;
}

/* ===== Button Styling ===== */
button {
  width: 100%;
  background-color: black;
  color: white;
  text-align: center;
  padding: 12px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #f92b72;
}

/* ===== Success Message ===== */
.success {
  text-align: center;
  color: green;
  margin-top: 20px;
}

/* ===== Class Preview Images ===== */
.class-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: space-between;
}

.class-preview img {
  width: 48%;
  border-radius: 10px;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.class-preview img:hover {
  transform: scale(1.05);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .class-preview img {
    width: 100%;
  }
}
/* Back Arrow */
.back-arrow {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 28px;
  text-decoration: none;
  color: #ff007f;
  background-color: white;
  border-radius: 50%;
  padding: 8px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: 0.3s ease;
  z-index: 999;
}

.back-arrow:hover {
  background-color: #ff007f;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-container {
    flex-direction: column;
  }

  .booking-form, .booking-image {
    width: 100%;
    height: auto;
  }

  .class-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }

  .back-arrow {
    top: 10px;
    left: 10px;
    font-size: 22px;
  }
}