/* styles.css */

/* General body styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color:#0D1A27 ;
}

/* Navbar brand logo spacing */
.navbar-brand img {
    margin-right: 10px;
}

/* Custom header section */
header {
    /* Update the path below to match the actual location of kids.png relative to this CSS file */
    background-image: url(/images/gray.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px; /* Adjust as needed */
    display: flex;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive heading */
header h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* Subheading */
header p {
    font-size: 1.25rem;
    margin-top: 10px;
}

/* Navbar hover effects */
.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffc107 !important;
}

.navbar {
    background-color: #0D1A27 !important;
}

#joinNowBtn {
    background-color: turquoise;
    color: white;
    border: none;
}

#joinNowBtn:hover {
    background-color: #ffc107;
    color: #0D1A27;
}
#underheader {
    background-color: #0D1A27 !important;
    color: white;
    padding: 20px;
}

#underheader .row {
    flex-direction: row;
}

#underheader img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

@media (max-width: 767.98px) {
    #underheader .row {
        flex-direction: column-reverse;
        text-align: center;
    }
    #underheader .col-md-6 {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    #underheader img {
        margin-bottom: 1.5rem;
        max-width: 80vw;
    }
}

.feature-card {
    background: #182c3a;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: 2px solid transparent;
}
.feature-card:hover, .feature-card:focus {
    background: #223b53;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: #ffc107;
    outline: none;
}
/* Auth form styling */
.auth-container {
  max-width: 400px;
  margin: 5rem auto;
  background-color: #182c3a;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-auth {
  background-color: turquoise;
  color: white;
  border: none;
}

.btn-auth:hover {
  background-color: #ffc107;
  color: #0D1A27;
}

.toggle-link {
  color: turquoise;
  cursor: pointer;
}

.toggle-link:hover {
  color: #ffc107;
  text-decoration: underline;
}

.form-control {
  background-color: #0D1A27;
  color: white;
  border: 1px solid #444;
}

.form-control:focus {
  border-color: turquoise;
  box-shadow: none;
}

label {
  margin-top: 1rem;
}
.auth-container {
  background-color: #182c3a;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.btn-auth {
  background-color: turquoise;
  color: white;
  border: none;
}

.btn-auth:hover {
  background-color: #ffc107;
  color: #0D1A27;
}

.toggle-link {
  color: turquoise;
  cursor: pointer;
}

.toggle-link:hover {
  color: #ffc107;
  text-decoration: underline;
}
 #learnMoreBtn {
    background-color: turquoise;
    color: white;
    border: none;
    transition: background 0.2s, color 0.2s;
}

#learnMoreBtn:hover {
    background-color: #ffc107;
    color: #0D1A27;
}

/* === MyStarLabs UI Enhancements (2025-08-18) === */
.gradient-text{
  background: linear-gradient(90deg, #7C3AED, #06B6D4, #10B981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.package-card{
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(124,58,237,0.06), rgba(6,182,212,0.06));
}
.package-card .card-title,
.package-card .card-price { font-weight: 700; }
.subscribe-btn{
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100%;
  margin-top: .75rem;
}
/* Improve contrast on payments page */
.payment-page, body.bg-light.text-dark .form-control, body.bg-light.text-dark .form-label, body.bg-light.text-dark .card, body.bg-light.text-dark .card *{
  color: #212529 !important;
}
.payment-page .text-muted{ color: #495057 !important; }

