/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #218838 0%, #1cb386 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* Header Styles */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  /* Improve rendering performance */
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo h1 {
  color: #667eea;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.logo p {
  color: #764ba2;
  font-size: 0.9rem;
}

.nav ul {
  display: flex;
  list-style: none;
}

.nav ul li {
  margin-left: 25px;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: #667eea;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  user-select: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

/* Wave Effect Animation - only active when hero-animated class is present */
.hero.hero-animated {
  animation: gentleFloatEffect 8s ease-in-out infinite;
}

/* Gentle Float Effect Animation */
@keyframes gentleFloatEffect {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-single,
.hero-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-single img,
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0.7) contrast(1.1); /* Balanced brightness with slight contrast enhancement */
  transition: filter 0.3s ease;
  /* Floating/Wave/Pulse Animation - only active when hero-animated class is present */
}

.hero.hero-animated .hero-single img,
.hero.hero-animated .carousel-slide img {
  animation: floatAnimation 6s ease-in-out infinite;
  /* Improve rendering performance */
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Floating/Wave/Pulse Animation */
@keyframes floatAnimation {
  0% {
    transform: scale(1) translateY(0px);
  }
  50% {
    transform: scale(1.02) translateY(-15px);
  }
  100% {
    transform: scale(1) translateY(0px);
  }
}

.hero-single:hover img,
.carousel-slide:hover img {
  filter: brightness(0.8) contrast(1.05); /* Subtle hover effect */
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

/* Floating Text Animation - only active when hero-animated class is present */
.hero.hero-animated .hero-content {
  animation: fadeInUp 1s ease-out, floatTextAnimation 8s ease-in-out infinite;
  /* Improve rendering performance */
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Floating Text Animation */
@keyframes floatTextAnimation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: white;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  color: #f8f8f8;
  line-height: 1.7;
}

.hero-content .btn {
  margin: 0 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Pulse Animation - only active when hero-animated class is present */
.hero.hero-animated .hero-content .btn {
  animation: pulse 2s infinite;
  /* Improve rendering performance */
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Fallback hero section styling */
.hero-content.fallback {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  padding: 60px 40px;
}

/* Carousel Styles */
.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide.prev {
  transform: translateX(-100%);
}

.carousel-slide.next {
  transform: translateX(100%);
}

.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(0.8);
}

.carousel-indicator.active,
.carousel-indicator:hover {
  background: white;
  transform: scale(1.2);
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 15px auto;
  border-radius: 2px;
}

/* Events Section */
.events {
  padding: 100px 0;
  background-color: white;
}

.events-container {
  position: relative;
}

.events-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-nav-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  position: absolute;
}

.carousel-nav-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.carousel-nav-button:active {
  transform: scale(0.95);
}

.carousel-nav-button:disabled {
  background: rgba(102, 126, 234, 0.3);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.prev-button {
  left: -20px;
}

.next-button {
  right: -20px;
}

.events-carousel-container {
  position: relative;
  flex: 1;
  overflow: hidden;
}

/* Gradient fade edges */
.events-carousel-container::before,
.events-carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 5;
  pointer-events: none;
}

.events-carousel-container::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.events-carousel-container::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa, transparent);
}

.events-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  cursor: grab;
  user-select: none;
}

.events-carousel:active {
  cursor: grabbing;
}

.events-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.event-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  flex: 0 0 320px;
  width: 320px;
  min-width: 320px;
  max-width: 320px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Event Status Badge for Cards */
.event-status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.75rem;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.event-status-badge.open {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}

.event-status-badge.closing_soon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  animation: pulse 2s infinite;
}

.event-status-badge.coming_soon {
  background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
  color: white;
}

.event-status-badge.closed {
  background: #95a5a6;
  color: white;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(102, 126, 234, 0.6);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 24px;
  border-radius: 4px;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.event-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.event-date {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-date i {
  margin-right: 3px;
}

.event-quota {
  color: #666;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-quota i {
  color: #667eea;
}

/* Urgency mode for carousel cards */
.event-card .event-quota.urgency-mode {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.8rem;
  animation: pulse-urgency 2s ease-in-out infinite;
  margin-bottom: 10px;
  width: fit-content;
}

.event-card .event-quota.urgency-mode i {
  color: #fff;
  animation: fire-flicker 1.5s ease-in-out infinite;
}

.event-description {
  margin-bottom: 14px;
  color: #666;
  flex-grow: 1;
  line-height: 1.4;
  overflow: hidden;
  font-size: 0.9rem;
}

.event-actions {
  margin-top: auto;
  padding-top: 6px;
}

.event-actions .btn {
  width: 100%;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #667eea;
  transform: scale(1.2);
}

/* Weekly Run Section */
.weekly-run {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.run-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.run-content {
  display: flex;
  gap: 40px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.run-map {
  flex: 1;
  min-width: 300px;
}

.run-map iframe {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.run-details {
  flex: 1;
}

.run-details h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
}

/* Styling untuk heading h4 - membuat lebih besar dan berwarna berbeda */
.run-details h4 {
  font-size: 1.4rem;
  /* margin-bottom: 5px; */
  color: #e33535;
  font-weight: 700;
  border-bottom: 2px solid #667eea;
  padding-bottom: 5px;
}

.run-details p {
  /* margin-bottom: 15px; */
  font-size: 1.1rem;
  line-height: 1.6;
}

.run-details strong {
  color: #667eea;
}

/* .detail-group {
    margin-bottom: 20px;
} */

.detail-group:last-child {
  margin-bottom: 0;
}

.flyer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.flyer-links .btn {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }

  .run-content {
    flex-direction: column;
  }

  .flyer-links {
    flex-direction: column;
  }

  .flyer-links .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header .container {
    padding: 15px 0;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav ul {
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }

  .nav ul li {
    margin: 0;
    text-align: center;
  }

  .nav ul li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }

  .nav ul li:last-child a {
    border-bottom: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Mobile Navigation Active State */
  .nav.mobile-active {
    display: block !important;
  }

  .hero {
    margin-top: 70px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .events-carousel {
    gap: 20px;
  }

  .event-card {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
  }

  .event-card img {
    height: 180px;
  }

  .event-content {
    padding: 16px;
  }

  .carousel-nav-button {
    width: 36px;
    height: 36px;
  }

  .prev-button {
    left: -18px;
  }

  .next-button {
    right: -18px;
  }

  .event-content {
    padding: 12px;
  }

  .event-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .event-date {
    margin-bottom: 5px;
    font-size: 0.8rem;
  }

  .event-description {
    margin-bottom: 12px;
    font-size: 0.85rem;
  }

  .event-actions .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .carousel-nav-button {
    width: 28px;
    height: 28px;
  }

  .prev-button {
    margin-right: 5px;
  }

  .next-button {
    margin-left: 5px;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .info-icon {
    width: 100%;
    height: 50px;
    border-radius: 0;
  }

  .run-details h3 {
    font-size: 1.3rem;
  }

  .run-content {
    padding: 20px;
    gap: 20px;
  }

  .run-map iframe {
    min-height: 300px;
  }

  .run-details h4 {
    font-size: 1.3rem;
  }

  .run-details p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex: 0 0 260px;
    width: 260px;
    min-width: 260px;
    max-width: 260px;
  }

  .event-card img {
    height: 160px;
  }

  .event-content {
    padding: 14px;
  }

  .carousel-nav-button {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .prev-button {
    left: 5px;
  }

  .next-button {
    right: 5px;
  }

  .events-carousel-container::before,
  .events-carousel-container::after {
    width: 40px;
  }

  .carousel-dots {
    gap: 6px;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }

  .carousel-dot.active {
    width: 18px;
  }

  .run-content {
    padding: 15px;
    gap: 15px;
  }

  .run-map iframe {
    min-height: 250px;
  }

  .run-details h4 {
    font-size: 1.2rem;
  }

  .flyer-links {
    gap: 10px;
  }

  .flyer-links .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background-color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.gallery-item-actions {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid #eee;
}

.gallery-item-actions .btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.9rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.pagination .btn {
  padding: 10px 20px;
}

.page-info {
  font-weight: 500;
  color: #333;
}

/* Image Modal */
.image-modal-content {
  max-width: 90%;
  max-height: 90vh;
}

.image-modal-content img {
  max-height: 70vh;
  object-fit: contain;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 180px;
  }

  .pagination {
    flex-direction: column;
    gap: 10px;
  }
}

/* Important Information Section */
.important-info {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.info-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-start;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content {
  padding: 20px;
  flex: 1;
}

.info-content h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.3rem;
}

.info-content p {
  margin-bottom: 10px;
  color: #666;
  line-height: 1.6;
}

.info-content ul {
  padding-left: 20px;
  margin: 10px 0;
}

.info-content li {
  margin-bottom: 8px;
  color: #666;
  line-height: 1.5;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 70px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: white;
  margin: 10px 0;
}

.footer-section p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.hero-single img {
  animation: pulse 8s infinite ease-in-out;
}
