:root {
    --primary-color: #F1B043;
    --primary-color-hovered: #bf8a2f;
    --secondary-color: #4BA5A6;
    --bg-primary-color: #232D2D;
    --bg-secondary-color: #1E2727;
    --text-primary-color: #F1B043;
    --text-secondary-color: #BDBDBD;
    --new-banner-color: #AE7A42;
    --field-bg-color: #5B4C32;
    --field-text-color: #BFAC8D;
}

body {
    background-color: var(--bg-primary-color);
}

.white-text {
    color: white !important;
}

.clean-link {
    text-decoration: none !important;
    color: white;
    text-align: center;
}

.clean-link:hover {
    text-decoration: none !important;
    color: grey;
}

.primary-text {
    text-decoration: none !important;
    color: var(--text-primary-color);
}

.hero-secondary-text{
    font-size: 16pt;
    color: #A9A9A9;
}

.primary-btn {
    background-color: var(--primary-color) !important;
    border-radius: 10px;
    font-weight: bold;  
}

.primary-btn:hover {
    background-color: var(--primary-color-hovered) !important;
    border-radius: 10px;
    font-weight: bold;
}

.hero-sec {
    margin-top: 30px;
    margin-bottom: 60px;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-title {
    font-size: 36pt;
}

.flipped-img {
    transform: scaleX(-1);
}

.event_card {
    height: 500px;
    background-color: var(--bg-secondary-color);
    border-radius: 10px;
}

.event-img {
    height: 80%;
    border-radius: 10px 10px 0px 0px;
    background-color: #1C2424;
    background-image: url("/images/play_stage.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.new-banner {
    background-color: var(--new-banner-color);
    color: white;
    border-radius: 0px 10px 0px 0px;
    font-weight: bold;
    width: 90px;
}

.actor-avatar {
    height: 70px;
    width: 70px;
    overflow: hidden;
    background-color: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px !important;
}

.actor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details {
    height: 20%;
}

.secondary-btn {
    background-color: #325354 !important;
    border-radius: 10px;
    font-weight: bold;
    border: none;
}

.secondary-btn:hover {
    background-color: #243c3d !important;
    border-radius: 10px;
    color: #BDBDBD;
}

.book-btn {
    background-color: var(--secondary-color) !important;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    border: none;
}

.book-btn:hover {
    background-color: #243c3d !important;
    border-radius: 10px;
    color: #BDBDBD;
}

.price-text {
    color: #CCCCCC;
}

#contact-sec {
    margin-bottom: 60px;
}

/* .contact-form-container {
    border-radius: 10px;
    background-color: var(--bg-secondary-color);
} */

#contact-sec .form-control {
    border-radius: 10px;
    background-color: #2f3a3a;
    color: white;
    border: none;
}

#contact-sec .form-control::placeholder {
    color: #BDBDBD;
}

#contact-sec .form-label {
    font-weight: bold;
}




/* Footer */

.footer-section {
  background-color: var(--bg-secondary-color);
  font-size: 0.9rem;
}

.footer-section a.clean-link {
  color: var(--text-secondary-color);
}

.footer-section a.clean-link:hover {
  color: var(--primary-color);
}


/* Deatils page */
.details-sec {
    margin-top: 30px;
}

/* .event-images {
    height: 500px;
} */

.event-images img {
    max-width: 400px;
    height: auto;
}


/* Booking page */
.booking-sec {
    margin-top: 30px;
    padding: 0px 300px;
}


.booking-form {
    background-color: var(--bg-secondary-color);
    border-radius: 10px;
}

.primary-field {
    background-color: var(--field-bg-color);
    color: var(--field-text-color);
    border-radius: 5px;
    border: none;
}

.date-btn {
    background-color: var(--field-bg-color);
    color: var(--field-text-color);
    border-radius: 5px;
    border: none;
}

.date-btn-active {
    background-color: #95753d;
    color: #dac4a2
}

.rial_icon{
    height: 23px;
}

@media (max-width: 1300px) {
  .booking-sec {
    padding: 0 100px; /* إلغاء البادينق */
  }
}

@media (max-width: 767px) {
  .booking-sec {
    padding: 0; /* إلغاء البادينق */
  }
}