/* General Styling */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: linear-gradient(to bottom, #0b0c2a 0%, #3a2d80 60%, #6a82fb 100%);
  color: #fff;
  overflow-x: hidden;
}

header {
  position: relative;
  background: linear-gradient(to bottom, #0b0c2a 0%, #3a2d80 60%, #6a82fb 100%);
  color: white;
  padding: 100px 20px 150px;
  text-align: center;
  overflow: hidden;
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
}
section h2, section h3 {
  text-align: center;
}

header p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background: white;
  color: #6a82fb;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.buttons a:hover {
  background: #eee;
}
.buttons {
  text-align: center;
  margin-top: 20px;
}


section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

audio {
  width: 100%;
  margin-top: 10px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9em;
  color: #aaa;
}
.logo-image {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.logo-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Scroll down arrow */
.scroll-down {
  width: 24px;
  height: 24px;
  margin: 40px auto 0;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(10px); }
}

.meditation-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.trial-highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.trial-highlight h2 {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 15px;
}
.trial-highlight p {
  font-size: 1.2em;
  color: #e0e0ff;
}
.coming-soon-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.coming-soon-banner {
  background: rgba(255, 215, 0, 0.9);
  color: #000;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.footer-links {
  margin-top: 15px;
}

.footer-links a {
  color: #8ab4f8;   /* matches your accent color */
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
