/* ====================================== Navbar Section ===================================== */
.navbar-light .navbar-nav .nav-link {
  color: #000 !important;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #86363f !important; /* American Flag Red */
}

/* ====================================== Hero Section ===================================== */
h1 {
  font-weight: 700;
}

.hero-video-section video {
  object-fit: cover;
  width: 100%;
  height: 100vh; 
}
section.bg-light {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  position: relative;
  z-index: 1;
}

section.bg-light::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 140px;
  height: 140px;
  background: url("images/waada-logo.png") no-repeat center/contain;
  opacity: 0.05;
  z-index: 0;
}

section.bg-light .container {
  position: relative;
  z-index: 2;
}

/* Buttons inside introduction */
.btn-waada {
  border: 2px solid #86363f;
  color: #86363f;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-waada:hover {
  background-color: #86363f;
  color: #fff;
}

.btn-outline-secondary {
  border: 2px solid #666;
  color: #333;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: #666;
  color: #fff;
}

/* ===================== Home Page Events Card Hover ===================== */
.event-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
  padding-bottom: 1.5rem; 
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.event-card .event-img {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.event-card:hover .event-img {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.event-card h5 {
  color: #f7d084; /* theme yellow accent for hover section titles */
  transition: color 0.3s ease;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.event-card p {
  margin-bottom: 1.25rem; 
  color: #f8f8f8;
  font-size: 1rem;
}

.event-card:hover h5 {
  color: #fff;
}

/* =========== Gallery Page albums card hover effect =========== */
.gallery-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: none;
  cursor: pointer;
}

.gallery-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  background-color: #fff8f0;
}

.gallery-section .card:hover .card-title {
  color: #86363f;
}

/* =========== Team Page Hover Effect =========== */
.team-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: none;
}

.team-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  background-color: #fff8f0;
}

.team-section .card:hover .btn-waada {
  background-color: #86363f;
  color: white;
  border-color: #86363f;
}

/* =========== Theme Red: #86363f ============= */
.btn-waada {
  color: #86363f;
  border: 2px solid #86363f;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-waada:hover,
.btn-waada:focus {
  background-color: #86363f;
  color: white;
  border-color: #86363f;
}

/* ====================================== Footer Section ===================================== */
.footer-section {
/*------- background-color: #393b6b;  American Flag Blue */
  background-color: #86363f; /* American Flag Red */
  color: white;
  padding: 3rem 0 1rem;
  font-size: 0.9rem;
}

/* Duan Studio footer link */
.designer-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.duan-brand {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid white;
  padding-bottom: 2px;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.duan-brand:hover {
  color: gold; 
  border-color: gold;
}

/* Social media icons using <img> and flex gap layout */
.footer-section .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-section .social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1); 
  transition: transform 0.6s ease;
}

.footer-section .social-icons img:hover {
  transform: scale(1.15); 
}

/* ============================================
  Responsible Interface
   ============================================ */
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll !important;
  }
  section.bg-light::before {
    display: none;
  }
  .btn-waada, .btn-outline-secondary {
    width: 100%;
  }
}
