/* assets/css/style.css */

body {
  background-color: rgb(97, 7, 25);
  font-family: Arial, sans-serif;
  color: #faf8f8;
}

/* Navbar */
.custom-navbar {
  background: linear-gradient(45deg, #6a0dad, #c70365);
}

.navbar-brand strong {
  font-size: 1.25rem;
  
}

.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f9b7d8;
}


/* Hero section */
.hero-section {
  background-image: url('/overcoming_lamb_assembly/assets/images/gallery/bg4.fw.png');
  color: #fff;
  padding: 100px 30px;
  background-size: cover;
  text-align: center;
  transition: background 0.5s ease;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-cta {
  background-color: #6f07b5;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  transition: background 0.3s ease;

}

.btn-cta:hover {
  background-color: #f29a1f;
}

/* Footer */
.custom-footer {
  background: linear-gradient(45deg, #240110, #cb0371);
}

.social-icon {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #06d0f8;
}

/* Transitions */
a, .btn {
  transition: all 0.3s ease;
}

.text-purple {
  color: #6a0dad;
}
.modal-header {
  background: linear-gradient(45deg, #ff69b4, #1e90ff);
  color: #fff;
}
.modal-title {
  font-weight: bold;
}

/* About Page Team Cards */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(106, 13, 173, 0.2);
}

.team-card .card-img-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 280px;
  object-fit: cover;
}

.text-purple {
  color: #6a0dad;
}

.text-primary {
  color: #1e90ff;
}

/* Gallery Thumbnails */
.gallery-thumb {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
}

.ratio iframe {
  border-radius: 12px;
}

.event-card {
  border-left: 5px solid #6a0dad;
  transition: transform 0.3s ease;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(106, 13, 173, 0.1);
}

.container py-5{
  background-color: black;
}

/* Gallery Design */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
}
.close {
  position: absolute;
  top: 30px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.modal-body {
  background: none !important;
}

.gallery-thumb {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-thumb:hover {
  transform: scale(1.05);
}


/* Enquiry Form*/
form input, form textarea {
  border: none;
  outline: none;
  padding: 10px 15px;
}

form input:focus, form textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.4);
}

form label {
  font-weight: 500;
}
