@import url('../components/variables.php');


/* Events Hero Section */
.events-hero-section img {
    width: 100%;
    height: auto;
    display: block;
}
/* .events-hero-section {
  position: relative;
  height: 90vh;
  background-image: url('../images/event-banne.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.events-hero-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.705);  
}

.events-hero-section .container {
  position: relative;
  z-index: 2;
} */

/* Event Cards */
.event-card {
  transition: all 0.3s ease;
  border-radius: 12px;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Alert */
.alert {
  border-radius: 0.75rem;
  font-size: 1rem;
  background: #f1f5f9;
  border: none;
}

/* Event Registration Form */
.event-registration form {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.event-registration .form-control,
.event-registration .form-select {
  border-radius: 8px;
  padding: 10px 12px;
}

.event-registration .btn {
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 8px;
}

.event-registration .btn-primary {
  background-color: var(--main-blue);
  border: none;
}

.event-registration .btn-primary:hover {
  background-color: var(--hover-blue);
}

/* CTA Section */
.cta-section {
  background-color: var(--main-blue);
  color: var(--white);
  border-radius: 0px;
}

.cta-section .cta-buttons a {
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 10px;
  transition: background-color 0.3s, transform 0.3s;
}

.cta-section .cta-buttons .btn-light {
  background-color: var(--white);
  color: var(--main-blue);
  border: none;
}

.cta-section .cta-buttons .btn-light:hover {
  background-color: var(--light-blue-bg);
  color: var(--white);
}

.cta-section .cta-buttons .btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-section .cta-buttons .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--main-blue);
}

.cta-buttons {
  display: inline-flex;
  gap: 15px;
}

/* Headings and Text Colors */
h2, h3, h4 {
  font-weight: 600;
  color: var(--main-blue);
}

.text-primary {
  color: var(--main-blue) !important;
}

.text-secondary {
  color: var(--hover-blue) !important;
}
