/*
Theme Name: Numerology Demo Theme
Theme URI: https://example.com
Author: Sumit
Description: Custom WordPress theme converted from static Numerology demo landing page.
Version: 1.0
*/


:root {
      --bg-dark: #1a0f0f;
      --bg-deep: #2b1510;
      --accent-saffron: #f4a11a;
      --accent-gold: #ffd369;
      --accent-red: #b13a2c;
      --text-light: #f9f5e9;
      --text-muted: #d3c7ad;
      --card-bg: #301916;
      --border-soft: rgba(255, 211, 105, 0.3);
      --shadow-soft: 0 18px 45px rgba(0,0,0,0.55);
      --radius-xl: 22px;
      --transition-fast: 0.25s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      margin: 0;
      font-family: "Mukta", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text-light);
      background: radial-gradient(circle at top, #3a2130 0, #10070a 45%, #050308 100%);
      background-attachment: fixed;
      min-height: 100vh;
      line-height: 1.6;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        radial-gradient(circle at 10% 10%, rgba(255, 204, 128, 0.06) 0, transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(255, 138, 101, 0.08) 0, transparent 55%),
        radial-gradient(circle at 15% 90%, rgba(255, 213, 79, 0.08) 0, transparent 55%);
      pointer-events: none;
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .wrapper {
      max-width: 1180px;
      margin: 0 auto;
      padding: 18px 18px 100px;
    }

    /* Top bar */
    .top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      margin-bottom: 18px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(47,21,15,0.95), rgba(72,30,18,0.92));
      border: 1px solid rgba(255, 211, 105, 0.25);
      box-shadow: 0 12px 28px rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 10px;
      z-index: 10;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-symbol {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 2px solid var(--accent-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--accent-gold);
      background: radial-gradient(circle at 30% 0, rgba(255,211,105,0.18), rgba(0,0,0,0.7));
    }

    .brand-text-main {
      font-family: "Playfair Display", serif;
      font-size: 18px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .brand-text-sub {
      font-size: 11px;
      text-transform: uppercase;
      color: var(--text-muted);
      letter-spacing: 0.18em;
    }

    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
    }

    .lang-switcher button {
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 211, 105, 0.5);
      background: transparent;
      color: var(--text-light);
      cursor: pointer;
      font-size: 12px;
      transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .lang-switcher button.active {
      background: linear-gradient(135deg, var(--accent-saffron), var(--accent-red));
      color: #170b05;
      box-shadow: 0 0 14px rgba(255, 177, 66, 0.7);
      transform: translateY(-1px);
    }

    /* Hero */
    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
      gap: 28px;
      margin-top: 22px;
      margin-bottom: 36px;
      align-items: center;
    }

    @media (max-width: 880px) {
      .hero {
        grid-template-columns: 1fr;
      }
    }

    .hero-text {
      padding: 26px 26px 24px;
      border-radius: var(--radius-xl);
      background: radial-gradient(circle at 0 0, rgba(255, 213, 79, 0.12), transparent 55%),
                  linear-gradient(145deg, rgba(34,17,15,0.96), rgba(17,7,10,0.98));
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-text::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 80% 0, rgba(255, 204, 128, 0.18), transparent 55%);
      mix-blend-mode: screen;
      opacity: 0.8;
      pointer-events: none;
    }

    .hero-kicker {
      font-size: 13px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent-gold);
      margin-bottom: 6px;
    }

    .hero-title {
      font-family: "Playfair Display", serif;
      font-size: 32px;
      line-height: 1.22;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .hero-title span.highlight {
      background: linear-gradient(90deg, var(--accent-saffron), var(--accent-gold));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .hero-subtitle strong {
      color: var(--accent-gold);
      font-weight: 500;
    }

    .hero-bullets {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 10px;
      margin-bottom: 18px;
      font-size: 13px;
    }

    .hero-badge {
      padding: 8px 9px;
      border-radius: 999px;
      border: 1px solid rgba(255, 211, 105, 0.4);
      background: rgba(32, 16, 14, 0.9);
      display: flex;
      align-items: center;
      gap: 7px;
      color: var(--text-muted);
    }

    .hero-badge-icon {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1px solid rgba(255, 211, 105, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--accent-gold);
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-top: 4px;
    }

    .btn-primary {
      padding: 11px 22px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accent-saffron), var(--accent-red));
      border: none;
      color: #170b05;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      box-shadow: 0 14px 35px rgba(0,0,0,0.7), 0 0 24px rgba(255, 193, 94, 0.85);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.8), 0 0 30px rgba(255, 204, 102, 0.9);
    }

    .btn-secondary {
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 211, 105, 0.4);
      background: rgba(18, 10, 10, 0.9);
      color: var(--text-light);
      font-size: 13px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background var(--transition-fast), border-color var(--transition-fast);
    }

    .btn-secondary:hover {
      background: rgba(47, 23, 23, 0.95);
      border-color: rgba(255, 211, 105, 0.7);
    }

    .hero-note {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 8px;
    }

    .hero-note span {
      color: var(--accent-gold);
    }

    /* Hero media */
    .hero-media {
      position: relative;
    }

    .hero-card {
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      background: radial-gradient(circle at 50% 0, rgba(255, 224, 130, 0.2), rgba(9, 5, 10, 0.98));
    }

    .hero-card img {
      display: block;
      width: 100%;
      max-height: 380px;
      object-fit: cover;
    }

    .hero-media-caption {
      padding: 10px 14px 11px;
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(90deg, rgba(26,13,12,0.95), rgba(48,25,20,0.96));
    }

    .hero-media-caption span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-media-caption .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #6fffb0;
      box-shadow: 0 0 8px rgba(133, 255, 188, 0.9);
    }

    /* Sections */
    section {
      margin-bottom: 40px;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 22px;
    }

    .section-title {
      font-family: "Playfair Display", serif;
      font-size: 24px;
      margin-bottom: 4px;
    }

    .section-sub {
      font-size: 13px;
      color: var(--text-muted);
    }

    .pill {
      display: inline-block;
      padding: 3px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 211, 105, 0.5);
      font-size: 11px;
      color: var(--accent-gold);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    /* Features grid */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    @media (max-width: 920px) {
      .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .grid-3 {
        grid-template-columns: 1fr;
      }
    }

    .card {
      background: radial-gradient(circle at 0 0, rgba(255, 213, 79, 0.08), transparent 55%),
                  linear-gradient(145deg, rgba(32,16,14,0.98), rgba(13,6,9,0.98));
      border-radius: var(--radius-xl);
      padding: 16px 16px 14px;
      border: 1px solid rgba(255, 211, 105, 0.3);
      box-shadow: 0 10px 25px rgba(0,0,0,0.7);
      position: relative;
      overflow: hidden;
    }

    .card-title {
      font-size: 16px;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .card-sub {
      font-size: 12px;
      color: var(--accent-gold);
      margin-bottom: 4px;
    }

    .card-text {
      font-size: 13px;
      color: var(--text-muted);
    }

    .card-icon {
      width: 28px;
      height: 28px;
      border-radius: 12px;
      border: 1px solid rgba(255, 211, 105, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      margin-bottom: 8px;
      background: radial-gradient(circle at 30% 0, rgba(255, 224, 130, 0.3), rgba(23, 10, 9, 0.9));
    }

    /* Video section */
    .video-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 20px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .video-shell {
        grid-template-columns: 1fr;
      }
    }

    .video-frame {
      border-radius: 26px;
      overflow: hidden;
      border: 1px solid rgba(255, 211, 105, 0.3);
      background: radial-gradient(circle at 50% 0, rgba(255,213,79,0.16), rgba(8,5,10,0.98));
      box-shadow: 0 16px 42px rgba(0,0,0,0.75);
    }

    .video-frame video {
      width: 100%;
      display: block;
    }

    .video-caption {
      padding: 10px 14px 12px;
      font-size: 12px;
      color: var(--text-muted);
      background: linear-gradient(90deg, rgba(20,9,9,0.95), rgba(38,19,16,0.96));
    }

    /* Pricing */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    @media (max-width: 880px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    .pricing-card {
      background: radial-gradient(circle at 0 0, rgba(255, 213, 79, 0.14), transparent 55%),
                  linear-gradient(145deg, #371c14, #140707);
      border-radius: 24px;
      padding: 18px 18px 16px;
      border: 1px solid rgba(255, 211, 105, 0.45);
      box-shadow: 0 18px 44px rgba(0,0,0,0.85);
      position: relative;
    }

    .pricing-label {
      position: absolute;
      top: 14px;
      right: 16px;
      font-size: 10px;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(0,0,0,0.6);
      border: 1px solid rgba(255, 211, 105, 0.6);
      color: var(--accent-gold);
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .pricing-name {
      font-size: 18px;
      font-family: "Playfair Display", serif;
      margin-bottom: 4px;
    }

    .pricing-price {
      font-size: 20px;
      color: var(--accent-gold);
      margin-bottom: 6px;
      font-weight: 600;
    }

    .pricing-note {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .pricing-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 10px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .pricing-list li {
      margin-bottom: 4px;
      display: flex;
      align-items: flex-start;
      gap: 6px;
    }

    .pricing-list li::before {
      content: "✦";
      color: var(--accent-gold);
      font-size: 11px;
      margin-top: 3px;
    }

    /* Testimonials */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    @media (max-width: 960px) {
      .testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .testimonials {
        grid-template-columns: 1fr;
      }
    }

    .testimonial-card {
      background: linear-gradient(145deg, rgba(29,14,14,0.96), rgba(17,9,12,0.98));
      border-radius: 20px;
      padding: 14px 14px 12px;
      border: 1px solid rgba(255, 211, 105, 0.28);
      box-shadow: 0 10px 30px rgba(0,0,0,0.75);
      font-size: 13px;
      color: var(--text-muted);
    }

    .testimonial-name {
      margin-top: 8px;
      font-weight: 600;
      color: var(--accent-gold);
      font-size: 13px;
    }

    /* FAQ */
    .faq-item {
      background: linear-gradient(145deg, rgba(27,13,15,0.96), rgba(13,6,9,0.98));
      border-radius: 18px;
      padding: 12px 14px 10px;
      border: 1px solid rgba(255, 211, 105, 0.25);
      margin-bottom: 8px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.65);
      font-size: 13px;
    }

    .faq-q {
      font-weight: 600;
      color: var(--accent-gold);
      margin-bottom: 4px;
    }

    .faq-a {
      color: var(--text-muted);
    }

    /* Floating Buy Button */
    .floating-buy-btn {
      position: fixed;
      right: 14px;
      bottom: 18px;
      z-index: 9999;
    }

    .floating-buy-btn a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 20px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #ffe08a, #f39c12);
      color: #3a1904;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.85), 0 0 24px rgba(255, 213, 102, 0.9);
      border: 1px solid rgba(128, 60, 14, 0.7);
      text-transform: uppercase;
      letter-spacing: 0.09em;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    }

    .floating-buy-btn a:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 50px rgba(0,0,0,0.9), 0 0 28px rgba(255, 220, 130, 0.95);
      background: radial-gradient(circle at 30% 0, #fff0b2, #ffb341);
    }

    .floating-buy-btn small {
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      display: block;
      color: rgba(58, 25, 4, 0.9);
    }

    /* Footer */
    footer {
      margin-top: 40px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 211, 105, 0.18);
      font-size: 11px;
      color: var(--text-muted);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px;
    }

    /* Language visibility */
    .lang {
      display: block;
    }

    body[data-lang="en"] .lang-hi {
      display: none !important;
    }

    body[data-lang="hi"] .lang-en {
      display: none !important;
    }
/* Ultra-compact mobile header */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;           /* Reduced height */
    gap: 6px;                    /* Tighter spacing */
    border-radius: 12px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 6px;                    /* Tight gap between logo + text */
  }

  .brand-symbol {
    width: 26px;                 /* Smaller logo */
    height: 26px;
    font-size: 14px;
  }

  .brand-text-main {
    font-size: 14px;             /* Smaller brand name */
    line-height: 1.1;
  }

  .brand-text-sub {
    font-size: 9px;              /* Smaller subtitle */
    line-height: 1.1;
  }

  .lang-switcher {
    gap: 4px;
  }

  .lang-switcher button {
    padding: 4px 8px;            /* Smaller buttons */
    font-size: 11px;
  }
}

