/* ====== Global Styles ====== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  background: linear-gradient(to bottom, #0b0c2a, #1a1e3d);
  color: #eaeaff;
  line-height: 1.6;
}

a {
  color: #a5d7ff;
  text-decoration: none;
}
a:hover {
  color: #ffffff;
}

/* ====== Layout Containers ====== */
.card-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  background-color: #1e1e3f;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.card-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

/* ====== Opportunities Section ====== */
.opportunities-section {
  padding: 100px 20px;
}

.opportunities-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.opportunities-content {
  flex: 1;
}

.offerings-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  flex: 2;
  min-width: 0;
}

.offering-card {
  background-color: #ffffff;
  color: #1a1e3d;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  text-align: left;
}

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

.offering-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.offering-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.register-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to right, #f9d976, #f39f28);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
}

.register-button:hover {
  background: linear-gradient(to right, #ffeda0, #ffbb52);
  color: #1a1e3d;
}

.opportunities-image {
  flex: 1;
  max-width: 400px;
  display: flex;
  align-self: stretch;
  justify-content: center;
}

.opportunities-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}


/* Responsive Fix for Mobile */
@media (max-width: 1024px) {
  .opportunities-inner {
    flex-direction: column;
    align-items: center;
  }

  .offerings-cards {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .opportunities-image {
    max-width: 100%;
    margin-top: 2rem;
  }

  .opportunities-image img {
    width: 100%;
    height: auto;
  }
}

/* ====== Navigation Bar ====== */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(11, 12, 42, 0.95);
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.nav-menu a {
  color: #eaeaff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.75rem 1rem;
  position: relative;
  font-family: 'Inter', sans-serif;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #6ec6ff;
  transition: width 0.3s ease;
}
.nav-menu a:hover {
  color: #6ec6ff;
}
.nav-menu a:hover::after {
  width: 100%;
}

/* ====== Call-to-Action Section (Meditation) ====== */
.meditation-cta {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  background: #eaf6ff;
  color: #1a1e3d;
  max-width: 100%;
}

.meditation-inner {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.meditation-image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.meditation-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: none;
  background: transparent;
}

.meditation-content {
  flex: 1;
  max-width: 500px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meditation-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1e3d;
}

.meditation-content .handwriting {
  font-family: 'Pacifico', cursive;
  font-size: 2.25rem;
  color: #3070a0;
}

.meditation-content p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.signup-form input {
  width: 100%;
  padding: 12px;
  margin: 6px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.signup-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #f5c64f, #d8a031);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.signup-form button:hover {
  background: linear-gradient(to right, #f9da85, #e1b351);
}

.form-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #555;
}

/* Below form spacing fix */
.pain-points-section {
  margin-top: 120px;
  position: relative;
  z-index: 1;
}

/* ====== Footer ====== */
.footer-socials {
  background: none !important;
  margin: 2rem 0 1rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 0;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, #f9d976, #f39f28);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.custom-footer {
  background: linear-gradient(to bottom, #0b0c2a, #1a1e3d);
  color: #f3c648;
  text-align: center;
  padding: 2.5rem 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  border-top: 1px solid #222;
}

.custom-footer a {
  background: linear-gradient(90deg, #f9d976 0%, #f39f28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.custom-footer a:hover {
  -webkit-text-fill-color: #ffffff;
}

.footer-nav {
  margin: 1.5rem 0;
}

.footer-legal {
  font-size: 0.85rem;
  color: #d6d6d6;
  margin-top: 1.2rem;
}

/* ====== Responsive Adjustments ====== */
@media (max-width: 1024px) {
  .opportunities-inner {
    flex-direction: column;
  }
  .offerings-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .about-section {
    padding: 60px 20px;
  }
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu a {
    display: block;
    width: 100%;
  }
  .meditation-inner {
    flex-direction: column;
    text-align: center;
  }
  .meditation-image,
  .meditation-content {
    max-width: 100%;
  }
  .meditation-image img {
    width: 80%;
  }
}
/* ====== About Section ====== */
.about-section {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.about-portrait {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px 5px rgba(0, 255, 255, 0.5); /* glowing effect */
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0.5rem 0;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 12px 24px;
  background: linear-gradient(to right, #66e1ff, #4fa1f3);
  color: #000000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(to right, #88faff, #6dbaff);
  color: #1a1e3d;
}

/* ====== Contact Page Section ====== */
.contact-section {
    display: flex;
    min-height: 100vh;
    font-family: 'Helvetica Neue', sans-serif;
    color: #1a1e3d;
  }

.contact-image {
    flex: 1;
    background: url('https://lightofdreamwalker.com/wp-content/uploads/2025/08/IMG_1622.jpeg') center center / cover no-repeat;
  }

.contact-form-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: #b8860b;
  }

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1e3d;
  }

.contact-form-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

.contact-form-row {
    display: flex;
    gap: 1rem;
  }

.contact-form input,
.contact-form textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9f9f9;
    color: #1a1e3d;
  }

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
  }

.submit-button {
    padding: 12px;
    background: linear-gradient(to right, #f9d976, #f39f28);
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

.submit-button:hover {
    background: linear-gradient(to right, #ffeda0, #ffbb52);
  }

@media (max-width: 900px) {
.contact-section {
      flex-direction: column;
    }

.contact-image {
      height: 300px;
    }

.contact-form-container {
      padding: 40px 20px;
    }

.contact-form-row {
      flex-direction: column;
    }
  }