@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #181c1f;
  color: #f3f3f3;
}

section {
  border-radius: 1rem;
  margin-bottom: 2.5rem;
  padding: 2.5rem 1.5rem;
  background: #23272b;
  color: #f3f3f3;
}

section.text-center {
  background: #23272b;
}

section.mb-5, section.newsletter-section {
  background: linear-gradient(180deg, #23272b 0%, #2d3136 100%);
  box-shadow: 0 2px 16px rgba(0,0,0,0.24);
}

input[type="email"] {
  border-radius: 2rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid #43e97b;
  font-size: 1rem;
  background: #181c1f;
  color: #f3f3f3;
}

input[type="email"]::placeholder {
  color: #b2dfdb;
  opacity: 0.7;
}

button.btn-success {
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  border: none;
  color: #181c1f;
}

.btn-success, .btn-outline-success {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%) !important;
  color: #181c1f !important;
  border: none !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(56,249,215,0.12);
  transition: background 0.2s, color 0.2s;
}
.btn-success:hover, .btn-outline-success:hover {
  background: linear-gradient(90deg, #38f9d7 0%, #43e97b 100%) !important;
  color: #181c1f !important;
}

footer {
  background: #111;
  color: #fff;
}
footer * {
  color: #fff !important;
}
footer a { color: #43e97b !important; }
footer a:hover { color: #38f9d7 !important; }

.social-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.25rem;
  fill: #43e97b;
  transition: fill 0.2s;
}
.social-icon:hover {
  fill: #38f9d7;
}

.navbar {
  background: #181c1f !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.24);
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1050;
}
.navbar .navbar-brand span,
.navbar .nav-link {
  color: #f3f3f3 !important;
  font-weight: 600;
}
.navbar .nav-link.active {
  color: #43e97b !important;
}
.navbar .navbar-toggler {
  border-color: #43e97b;
}
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(67,233,123,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .container-fluid,
.navbar .container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-nav .nav-link {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-nav .nav-link svg {
  margin-top: -2px;
}

.badge {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%) !important;
  color: #181c1f !important;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 4px rgba(56,249,215,0.08);
}

.first-section-bg {
  min-height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.first-section-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/intro-bg.jpeg') center center/cover no-repeat !important;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  animation: bg-3d-rotate 24s linear infinite;
}

@keyframes bg-3d-rotate {
  0% {
    transform: perspective(800px) rotate3d(0.5, 1, 0, 0deg) scale(2);
    filter: blur(10px);
  }
  25% {
    transform: perspective(800px) rotate3d(0.5, 1, 0, 10deg) scale(2);
    filter: blur(4px);
  }
  50% {
    transform: perspective(800px) rotate3d(0.5, 1, 0, 20deg) scale(2);
    filter: none;
  }
  75% {
    transform: perspective(800px) rotate3d(0.5, 1, 0, 10deg) scale(2);
    filter: blur(4px);
  }
  100% {
    transform: perspective(800px) rotate3d(0.5, 1, 0, 0deg) scale(2);
    filter: blur(10px);
  }
}

.first-section-bg > * {
  position: relative;
  z-index: 2;
}
.first-section-bg > *:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .first-section-bg {
    min-height: 70vh;
    padding: 2rem 0;
    margin-top: 70px;
  }
} 

a {
  color: #43e97b;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #38f9d7;
} 

.no-pb p {
  margin-bottom: 0 !important;
} 

.align-top-sections {
  align-items: flex-start !important;
} 

.btn-success {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media (min-width: 576px) {
  .btn-success {
    width: auto;
    min-width: 180px;
  }
} 