/* ===== HEADER STYLES ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-btn {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-right: 30px;
}

.payment-btn:hover {
  background: linear-gradient(135deg, #e083eb 0%, #e5475c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ===== MARQUEE STYLES ===== */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to right, #667eea, #764ba2);
  color: white;
  font-weight: bold;
  font-size: 25px;
  padding: 10px 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .committee-member {
    flex: 1 1 calc(33.333% - 25px);
  }
  .gallery-item {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
  }

  .header-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .committee-member {
    flex: 1 1 calc(50% - 25px);
  }

  .gallery-item {
    flex: 1 1 calc(50% - 20px);
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .caption {
    font-size: 0.9rem;
    padding: 12px 8px 8px;
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.7);
  }

  .header-left .text-start p {
    font-size: 1rem !important;
  }

  .header-left .text-start .h4 {
    font-size: 1.2rem !important;
  }

  .payment-btn {
    padding: 6px 10px;
    font-size: 1.1rem;
  }

  body {
    padding-top: 85px !important;
  }
}

@media (max-width: 576px) {
  /* Small devices - KEEP HORIZONTAL LAYOUT */
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }

  .header-left {
    flex: 1;
    align-items: center;
    gap: 10px;
  }

  .header-left .border {
    padding: 5px 10px !important;
  }

  .header-left img {
    height: 60px !important;
  }

  .header-left .text-start {
    text-align: left !important;
  }

  .header-left .text-start p {
    font-size: 0.9rem !important;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .header-left .text-start .h4 {
    font-size: 1rem !important;
    line-height: 1.2;
  }

  .header-right {
    flex: 0 0 auto;
  }

  .payment-btn {
    padding: 8px 12px;
    font-size: 1rem;
    white-space: nowrap;
    margin-right: 10px;
  }

  .committee-member {
    flex: 1 1 100%;
  }

  .gallery-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .marquee-container {
    font-size: 18px;
    padding: 8px 0;
  }

  body {
    padding-top: 85px !important;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .header-left img {
    height: 50px !important;
  }

  .header-left .text-start p {
    font-size: 0.85rem !important;
  }

  .header-left .text-start .h4 {
    font-size: 0.95rem !important;
  }

  .payment-btn {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .marquee-container {
    font-size: 16px;
    padding: 6px 0;
  }

  body {
    padding-top: 85px !important;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}
