/* ============ base.css ============ */
/* Variables, reset, typography, nav, footer — shared across all pages */

  :root {
    --saffron: #C8621A;
    --deep-blue: #1A2B4A;
    --snow: #F7F5F0;
    --slate: #4A5568;
    --gold: #D4A843;
    --pine: #2D5016;
    --white: #ffffff;
  }

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

  body {
    font-family: 'DM Sans', 'Noto Sans Devanagari', sans-serif;
    background: var(--snow);
    color: var(--deep-blue);
    font-size: 16px;
    line-height: 1.7;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 32px;
    background: rgba(26,43,74,0.85);
    backdrop-filter: blur(8px);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--gold); letter-spacing: 0.03em;
          display:flex;
      align-items:center;
      gap:12px;
  }

    /* .nav-logo{
      display:flex;
      align-items:center;
      gap:12px;
  } */

  .nav-logo-img{
      width:46px;
      height:46px;
      object-fit:contain;
  }

  @media(max-width:768px){
      .nav-logo-img{
          width:38px;
          height:38px;
      }
  }
  .nav-right { display: flex; align-items: center; gap: 20px; }
  .lang-toggle {
    display: flex; gap: 0;
    border: 1px solid rgba(212,168,67,0.5); border-radius: 4px; overflow: hidden;
  }
  .lang-btn {
    background: transparent; color: var(--gold);
    border: none; padding: 5px 12px; cursor: pointer;
    font-size: 0.8rem; font-family: 'DM Sans','Noto Sans Devanagari',sans-serif;
    transition: background 0.2s;
  }
  .lang-btn.active { background: var(--gold); color: var(--deep-blue); font-weight: 600; }
  .nav-links {
    display: flex; align-items: center; gap: 4px;
  }
  .nav-links a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 0.82rem; padding: 6px 10px; border-radius: 3px;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--saffron); color: white; border: none;
    padding: 8px 18px; border-radius: 4px; cursor: pointer;
    font-size: 0.82rem; font-family: 'DM Sans',sans-serif;
    text-decoration: none; display: inline-block;
    white-space: nowrap;
  }

  /* Hamburger for mobile */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 22px; height: 2px;
    background: white; border-radius: 2px; transition: all 0.3s;
  }
  .mobile-menu {
    display: none; position: fixed; top: 56px; left: 0; right: 0;
    background: rgba(15,26,46,0.97); backdrop-filter: blur(8px);
    padding: 16px 24px 24px; z-index: 99; flex-direction: column; gap: 4px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 0.95rem; padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-menu a:last-child { border-bottom: none; color: var(--gold); font-weight: 500; }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }

  /* FOOTER */
  footer {
    background: #0f1a2e; color: rgba(255,255,255,0.6);
    text-align: center; padding: 28px 24px; font-size: 0.82rem;
  }
  footer a { color: var(--gold); text-decoration: none; }

  /* MOBILE (nav) */
  @media (max-width: 600px) {
    nav { padding: 12px 16px; }
    .nav-logo { font-size: 0.9rem; }
  }

