/* Base styles */
body {
  font-family: 'Dosis', sans-serif;
  color: #404142;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover,
a:focus {
  color: #dd5138;
  text-decoration: none;
}

/* Buttons */
.btn {
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
}
.btn-lg {
  padding: 15px 40px;
  font-size: 16px;
}
.btn-red {
  background-color: #dd5138;
  color: #fff;
}
.btn-red:hover {
  background-color: #c7442d;
}
.btn-yellow {
  background-color: #fcd93b;
  color: #2a2a2a;
  opacity: 0.9;
}
.btn-yellow:hover {
  opacity: 1;
}

/* Header / Hero Section */
.hero-header {
  background: #2e004d;
  color: #fff;
  padding: 5em 2em;
  min-height: 600px;
}
.hero-header h1 {
  margin-bottom: 0.5em;
}
.hero-header h3,
.hero-header h4 {
  font-weight: 300;
  opacity: 0.9;
}
.hero-header .btn {
  margin-top: 2em;
}
.hero-header .rocket {
  max-width: 100%;
}

/* Section Base */
.me-row {
  padding: 60px 0;
}
.content-ct {
  text-align: center;
}
.row-title {
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #d63333;
}

/* Features / Info Cards */
.feature {
  padding: 20px;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.feature span {
  font-size: 4em;
  color: #016cc7;
}
.feature h3 {
  margin: 20px 0 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

/* About Section */
#about-campaign {
  background: #f9f9f9;
  padding: 40px 20px;
  border-radius: 8px;
  margin-bottom: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
#about-campaign h3 {
  color: #b02a2a;
  margin-top: 30px;
  font-weight: 600;
}
#about-campaign p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.how-it-works .col-sm-4 {
  font-weight: 600;
  color: #a72b2b;
}

/* Stories Section */
.speaker .feature {
  border: 3px solid #f6f6f6;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.speaker .feature:hover {
  box-shadow: 3px 3px 12px rgba(0,0,0,0.1);
  transform: translateY(-8px);
}
.speaker-img {
  max-width: 100%;
  border: 4px solid #efefef;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Workshop */
#workshop img {
  max-width: 100%;
  border-radius: 8px;
}

/* Tickets Section */
.tickets {
  background-color: #fcd93b;
  padding: 60px 20px;
  text-align: center;
}
.tickets .price {
  font-size: 3rem;
  color: #dd5138;
  font-weight: 300;
}
.tickets h3 {
  font-weight: 600;
}

/* How You Can Help */
#how-help ul.help-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#how-help ul.help-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: #2a2a2a;
  color: #fff;
  margin-top: 60px;
  padding-top: 40px;
}
.contact-form {
  padding: 40px 20px;
}
.contact-form h3 {
  margin-bottom: 30px;
}
.form-control {
  padding: 15px;
  border: 2px solid #ddd;
  background-color: #f9f9f9;
  box-shadow: none;
}
.footer-credit {
  padding: 40px 20px;
  border-top: 1px solid #444;
}
.footer-menu {
  list-style: none;
  text-align: right;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  display: inline-block;
  margin-left: 15px;
}
.footer-menu a {
  font-size: 14px;
  color: #fcd93b;
}
.footer-menu a:hover {
  color: #dd5138;
}

/* Bounce Animation */
.animated {
  animation-duration: 5s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}
.bounce {
  animation-name: bounce;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-header {
    padding: 3em 1em;
    text-align: center;
  }
  .speaker .feature {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-menu {
    text-align: center;
    margin-top: 20px;
  }
  .footer-credit {
    text-align: center;
  }
  .contact-form {
    padding: 20px;
  }
}
