/* Google Fonts Variables */
:root {
    --heading-font: 'Marcellus', serif;
    --body-font: 'Mulish', sans-serif;
}

 .social-link:nth-child(2) {
    display:none !important;
  }
  
   .social-link:nth-child(3) {
    display:none !important;
  }
  

body {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.6;
    
}

/* Apply heading font to all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.3;
}

/* Specific heading styles */
h1 {
    font-weight: 400;
    font-size: 2.5rem;
}

h2 {
    font-weight: 400;
    font-size: 2rem;
}

h3 {
    font-weight: 400;
    font-size: 1.5rem;
}

h4 {
    font-weight: 400;
    font-size: 1.25rem;
}

h5 {
    font-weight: 400;
    font-size: 1.1rem;
}

h6 {
    font-weight: 400;
    font-size: 1rem;
}

.offerBanner{
    font-size:1.15rem;letter-spacing:0.5px; margin-top: 82px !important;
}

.card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.form-control, .form-select { 
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: none;
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8a2be2;
}
.astrology-benefits {
    margin-top: 3rem; 
}
.benefit-card {
    transition: transform 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
}
.zodiac-signs {
    margin-top: 3rem;
}
.zodiac-card {
    text-align: center;
    padding: 1rem;
}
.zodiac-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
/* FAQ Accordion Theme for Astro Nirnay */
#faqAccordion {
    background: rgba(15,12,41,0.7);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
}
.accordion-item {
    background: transparent;
    border: none;
}
.accordion-button {
    background: linear-gradient(90deg, #8a2be2 0%, #302b63 100%);
    color: #fff;
    font-weight: 400;
    font-size: 1.1rem;
    font-family: var(--heading-font);
    border-radius: 12px 12px 0 0;
    border: none;
    box-shadow: none;
    transition: background 0.3s, color 0.3s;
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #ffd700 0%, #8a2be2 100%);
    color: #302b63;
    box-shadow: 0 2px 8px rgba(255,215,0,0.08);
}
.accordion-button:focus {
    box-shadow: 0 0 0 2px #ffd70044;
    border-color: #ffd700;
}
.accordion-body {
    background: rgba(48,43,99,0.85);
    color: #fffbe6;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid #ffd70033;
    font-size: 1.05rem;
    font-family: var(--body-font);
}
.accordion-button::after {
    filter: brightness(1.5) sepia(1) hue-rotate(40deg) saturate(2);
    color: #ffd700;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(50px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--heading-font);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    display: flex;
    align-items: center;
}

.nav-brand img {
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.nav-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}

/* Logo animation */
@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3)) drop-shadow(0 0 4px rgba(138, 43, 226, 0.2));
    }
    50% { 
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 8px rgba(138, 43, 226, 0.4));
    }
}

@keyframes eyePulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3)) drop-shadow(0 0 4px rgba(138, 43, 226, 0.2));
    }
    50% { 
        transform: scale(1.02);
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 8px rgba(138, 43, 226, 0.4));
    }
}

.nav-brand img {
    animation: eyePulse 4s ease-in-out infinite;
}

.nav-brand a:hover {
    color: #ffd700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-family: var(--body-font);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-family: var(--body-font);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.nav-dropdown-btn:hover {
    color: #ffd700;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    border-radius: 4px;
    padding: 0.5rem 0;
    display: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(50px);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-dropdown-content .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

/* Main Content Padding */
.main-content {
    padding-top: 20px;
    position: relative;
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(50px);
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #fff;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(50px);
}

.about-section {
    margin-bottom: 2rem;
}

.about-section h2 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-section p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info, .contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(50px);
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-item i {
    margin-right: 1rem;
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffd700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.btn {
    background: #ffd700;
    color: #000;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-family: var(--body-font);
    transition: background 0.3s ease;
}

.btn:hover {
    background: #ffc107;
}

/* Admin Styles */
.admin-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(50px);
}

.admin-actions {
    margin-bottom: 2rem;
    text-align: right;
}

.questions-list {
    margin-top: 2rem;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.question-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(50px);
}

.question-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.question-card p {
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: var(--body-font);
}

.answer-form {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--body-font);
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Question Form Styles */
.question-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(50px);
} 

/* Thank You Page Styles */
body.thank-you-page {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}
.container.thank-you-page {
    padding-top: 100px;
    position: relative;
    z-index: 1;
}
.card.thank-you-page {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #8a2be2;
}
.question-reference {
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #8a2be2;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin: 10px 0;
}
.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.payment-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}
.payment-details p {
    margin-bottom: 8px;
}
.payment-details p:last-child {
    margin-bottom: 0;
}

/* Header Styles */
body {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}
.card {
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(50px);
}

/* Footer FAQ Styles */
#faqAccordionFooter {
  background: rgba(15,12,41,0.7);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.accordion-item {
  background: transparent;
  border: none;
}
.accordion-button {
  background: linear-gradient(90deg, #8a2be2 0%, #302b63 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px 12px 0 0;
  border: none;
  box-shadow: none;
  transition: background 0.3s, color 0.3s;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #ffd700 0%, #8a2be2 100%);
  color: #302b63;
  box-shadow: 0 2px 8px rgba(255,215,0,0.08);
}
.accordion-button:focus {
  box-shadow: 0 0 0 2px #ffd70044;
  border-color: #ffd700;
}
.accordion-body {
  background: rgba(48,43,99,0.85);
  color: #fffbe6;
  border-radius: 0 0 12px 12px;
  border-top: 1px solid #ffd70033;
  font-size: 1.05rem;
}
.accordion-button::after {
  filter: brightness(1.5) sepia(1) hue-rotate(40deg) saturate(2);
  color: #ffd700;
}

/* Ask Question & Index Page Styles (add more as needed) */
/* ... (add more from ask-question.ejs and index.ejs as needed) ... */ 

/* --- CSP: Classes for moved inline styles from EJS templates --- */

/* Navbar brand font size and spacing */
.astro-navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* Footer background */
.astro-footer-bg {
  background: rgba(0,0,0,0.2);
}

/* Footer copyright font size */
.astro-footer-copyright {
  font-size: 0.95em;
}

/* Card glassmorphism for legal pages */
.astro-glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* Gold heading for legal pages */
.astro-gold-heading {
  color: #ffd700;
}

/* Payment page font sizes and colors */
.astro-payment-alert {
  font-size: 1.1rem;
}
.astro-payment-alert-lg {
  font-size: 1.3rem;
}
.astro-payment-strike {
  text-decoration: line-through;
  color: #aaa;
  font-size: 1.2rem;
}
.astro-payment-amount {
  color: #28a745;
  font-size: 1.7rem;
}
.astro-payment-offer {
  color: #28a745;
  font-size: 1.5rem;
}
.astro-payment-btn {
  font-size: 1.3rem;
}
.astro-payment-logo-lg {
  height: 40px;
  margin-bottom: 10px;
}
.astro-payment-logo-sm {
  height: 24px;
  vertical-align: middle;
  margin-right: 10px;
}
.astro-payment-check {
  color: #28a745;
}
.astro-payment-info {
  max-width: 600px;
  margin: auto;
}

/* Ask Question gender icons */
.astro-gender-icon {
  font-size: 1.2em;
  vertical-align: middle;
}

/* Admin dashboard answer form always visible */
.astro-admin-answer-form {
  display: block !important;
} 

.success-message {
  display: none;
}

/* Enhanced Contact Form Styles */
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffd700;
  font-weight: 500;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--body-font);
  transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #ffd700 0%, #ffc107 100%);
  color: #302b63;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form .btn:hover {
  background: linear-gradient(135deg, #ffc107 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Message styles */
.message {
  padding: 15px 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-weight: 500;
  text-align: center;
  animation: slideIn 0.3s ease-out;
}

.message.success {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.5);
  color: #28a745;
}

.message.error {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.5);
  color: #dc3545;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
} 

/* Astrology Blog Table Theme */
.astro-table {
  width: 100%;
  background: rgba(255,255,255,0.13);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  color: #fff;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 2rem;
}
.astro-table th {
  background: #8a2be2;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 0.75em 0.5em;
  border-bottom: 2px solid #8a2be2;
}
.astro-table td {
  background: rgba(48,43,99,0.85);
  color: #fffbe6;
  text-align: center;
  padding: 0.65em 0.5em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1em;
  position: relative;
}
.astro-table tr:last-child td {
  border-bottom: none;
}
.astro-table tbody tr:hover {
  background: linear-gradient(90deg, #8a2be2 0%, #302b63 100%);
  color: #ffd700;
}
.astro-table th:first-child, .astro-table td:first-child {
  border-left: none;
}
.astro-table th, .astro-table td {
  border-right: none;
}
.astro-table thead {
  border-radius: 14px 14px 0 0;
}
.astro-table tfoot {
  border-radius: 0 0 14px 14px;
}
/* Tooltip for table cells */
.has-tooltip {
  position: relative;
  cursor: help;
}
.has-tooltip:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  background: #302b63;
  color: #ffd700;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: pre-line;
  font-size: 0.95em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  z-index: 10;
  opacity: 1;
  pointer-events: none;
}
.has-tooltip:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #302b63 transparent transparent transparent;
  z-index: 11;
} 