body{
  background-color: #3b1f47;
}

body {
  position: relative;
  min-height: 100vh;
  /* Regular background image properties */
  background-image: url('/images/bodyimg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Overlay for transparency */
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 30, 60, 0.55); /* Adjust color & opacity */
  z-index: 0;
  pointer-events: none;
}
body > * {
  position: relative;
  z-index: 1;
}



/* banner */


.big-banner {
  position: relative;
  width: 100%;
  height: 600px; /* large height for big banner */
  background-image: url('/images/astrology-banner.webp'); /* replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* text at the left */
  padding-left: 6%;
  color: #ffd700;  /* golden color for astrology theme */
  font-family: 'Montserrat', Arial, sans-serif;
}

.big-banner .content {
  max-width: 540px;
  background: rgba(24, 24, 24, 0.6); /* semi-transparent dark overlay for readability */
  padding: 3rem 2rem;
  border-radius: 14px;
}

.big-banner h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.big-banner p {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.btn-primary {
  background: #bf9b30;
  color: #02142f;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: #ffd700;
  color: #181818;
}

@media (max-width: 768px) {
  .big-banner {
    height: 400px;
    padding-left: 3%;
  }
  .big-banner .content {
    max-width: 90%;
    padding: 2rem 1rem;
  }
  .big-banner h1 {
    font-size: 2rem;
  }
  .big-banner p {
    font-size: 1rem;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}


/* fade image border */
.your-fade-image {
  -webkit-mask-image: radial-gradient(circle, white 80%, transparent 100%);
  mask-image: radial-gradient(circle, white 80%, transparent 100%);
}

/* area button */
/* State button base styles */
.state-btn {
  /* Tailwind equivalent styles */
  display: block;
  background-color: #eab308; /* bg-yellow-500 */
  color: white;
  padding: 0.5rem 1rem; /* px-4 py-2 */
  border-radius: 0.375rem; /* rounded-md */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  font-weight: 500; /* font-medium */
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  
  /* Additional enhancements */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  
  /* Prevent text selection on touch */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Hover effects */
.state-btn:hover {
  background-color: #ca8a04; /* hover:bg-yellow-600 */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
  text-decoration: none;
}

/* Active/Press effect */
.state-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(234, 179, 8, 0.2);
  background-color: #a16207; /* Darker yellow */
}

/* Focus styles for accessibility */
.state-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.5); /* focus:ring-4 focus:ring-yellow-300 */
  background-color: #ca8a04;
}

/* Remove default link styles */
.state-btn:link,
.state-btn:visited {
  color: white;
  text-decoration: none;
}

/* Enhanced button animation */
.state-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.state-btn:hover::before {
  left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .state-btn {
    padding: 0.75rem 0.5rem; /* More padding on mobile */
    font-size: 0.875rem; /* Smaller text on mobile */
  }
}

@media (max-width: 640px) {
  .state-btn {
    padding: 0.625rem 0.5rem;
    font-size: 0.8125rem;
  }
}

/* Print styles */
@media print {
  .state-btn {
    background-color: #000 !important;
    color: #fff !important;
    text-decoration: underline;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .state-btn {
    border: 2px solid #000;
    background-color: #000;
    color: #fff;
  }
  
  .state-btn:hover,
  .state-btn:focus {
    background-color: #fff;
    color: #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .state-btn {
    transition: none;
  }
  
  .state-btn::before {
    display: none;
  }
  
  .state-btn:hover {
    transform: none;
  }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
  .state-btn {
    background-color: #d97706; /* Darker yellow for dark mode */
  }
  
  .state-btn:hover {
    background-color: #b45309;
  }
}

