.booking-form {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f5f5f5;
  direction: rtl;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
  font-weight: bold;
}

.booking-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.booking-form label {
  display: block;
  margin: 10px 0 5px;
  
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.booking-form button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background-color: #5a2ca0;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.booking-form button:hover {
  background-color: #421e78;
}
h1{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 100px;
    background-color: #5a2ca0df;
}
option, label{
    font-weight: bold;
}
button{
    font-size: 20px
}
.programe{
  display:block;
  text-align: right;
  justify-items: right;
  font-size: larger;
  font-weight: bold;

}
.action{
  display:block;
  text-align: left;
  justify-items: left;
  font-size: larger;
  font-weight: bold;
}

.links {
  display: flex;
  justify-content: space-between; /* puts one link left, one right */
  align-items: center;            /* optional: vertical alignment */
  padding: 0 20px;                /* optional: horizontal spacing */
}
button{
  background-color: rgb(71, 1, 73);}
.links a {
  text-decoration: none;
  font-weight: bold;
  color: #fdfdfc; /* or your preferred color */
}
body{
  background-image: url(ORAN.jpg);
  background-repeat: no-repeat;  /* don’t repeat */
  background-size: cover;        /* fill whole area */
  background-position: center;   /* center the image */
  background-attachment: fixed;
}

/* ===== Footer Styles ===== */
.site-footer {
  background: #5a2ca0; /* Violet background */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer .contact-info p {
  margin: 5px 0;
}

.site-footer .social-links {
  margin-top: 20px;
}

.site-footer .social-links a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  font-size: 18px;
}

.site-footer .social-links a i {
  margin-right: 8px; /* Space between icon & text */
}

.site-footer .social-links a:hover {
  color: #ffd700; /* Gold on hover */
}

.site-footer p {
  margin: 15px 0 0;
}

@media (min-width: 600px) {
  .site-footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }

  .site-footer .contact-info,
  .site-footer .social-links {
    flex: 1;
  }
}
