/* ========================================
   MAIN STYLES - Arise Band_KE
   Base styles and global configurations
   ======================================== */

/* === Import Modular CSS Files === */
@import url('components.css');
@import url('sections.css');
@import url('animations.css');
@import url('responsive.css');

/* === Global Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* === Utility Classes === */
.text-center {
    text-align: center;
}

/* === Section Spacing === */
section {
    position: relative;
}

#about {
    background-color: #f8f9fa;
    padding: 60px 0;
}

#media {
    padding: 60px 0;
}

/* === Logo Styles === */
.navbar-brand img,
img[alt*="Logo"] {
    height: 40px;
    border-radius: 50%;
}

/* === Smooth Scrolling === */
html {
    scroll-behavior: smooth;
}

/* === Utility Classes === */
.rotate-emoji {
    display: inline-block;
    transform: rotate(18deg);
    margin-right: 10px;
    font-size: 1.1em;
    line-height: 1;
}

.cta-subtext {
    font-size: 1.02rem;
    color: #fff9ef;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.small-secure-badge {
    font-size: 0.85rem;
}

.qr-placeholder {
    max-width: 160px;
}

.contact-email-link {
    color: var(--accent1);
}

.contact-info-text {
    color: #eaf9ff;
}

.hidden {
    display: none;
}

.feedback-text {
    color: var(--accent1);
}

/* Responsive styles */
@media (max-width: 768px) {
    header {
        padding: 50px 0;
    }

    .navbar {
        text-align: center;
    }
}
.carousel-container {
  box-shadow: 0 0.25rem 1.25rem rgba(0,0,0,0.15);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  width: 250px !important;
  height: 250px !important;
  min-width: 250px;
  min-height: 250px;
  max-width: 250px;
  max-height: 250px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 767px) {
  .carousel-container {
    width: 180px !important;
    height: 180px !important;
    min-width: 180px;
    min-height: 180px;
    max-width: 180px;
    max-height: 180px;
  }
}@keyframes zoomInOut {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.carousel-container {
  /* ...existing code... */
  animation: zoomInOut 4s ease-in-out infinite;
}.notification-alert {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1050;
  min-width: 320px;
  max-width: 100vw;
  box-shadow: 0 -0.5rem 1.5rem rgba(0,0,0,0.15);
  border-radius: 0;
  animation: slideLeftContinuous 12s linear infinite;
  text-align: center;
  font-size: 1.1rem;
  background: #17a2b8;
  color: #fff;
  border: none;
}

@keyframes slideLeftContinuous {
  0% {
    transform: translateX(100vw);
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(-100vw);
    opacity: 1;
  }
}#social-feed {
  display: none;
}:root {
  --bs-primary: #6a1b9a;   /* Deep Purple */
  --bs-secondary: #fbc02d; /* Gold */
  --bs-light: #ffffff;     /* White */
}

/* Optional: custom button hover */
.btn-primary:hover {
  background-color: #4a148c; /* darker purple */
  border-color: #4a148c;
}

.btn-secondary:hover {
  background-color: #f9a825; /* deeper gold */
  border-color: #f9a825;
}/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Form feedback */
.form-feedback {
  margin-top: 10px;
  font-weight: bold;
}

/* === Additional Utility Classes === */
.secure-badge {
  font-size: 0.85rem;
}

.qr-image {
  max-width: 160px;
}

.contact-info {
  color: #eaf9ff;
}

.ministry-logo {
  height: 40px;
  width: 40px;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 50%;
}

.carousel-container {
  width: 400px;
  height: 250px;
}