/* ==========================================================================
   🔱 DOUBLE TRISHUL FOODS — BASE TYPOGRAPHY & DUAL-COLOR HEADINGS
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--dt-text-body);
  background-color: var(--dt-canvas);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--dt-canvas-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--dt-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dt-red);
}

/* Text Selection */
::selection {
  background: var(--dt-red);
  color: #FFFFFF;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--dt-text-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

h1 {
  font-size: var(--text-hero);
}

h2 {
  font-size: var(--text-h2);
}

h3 {
  font-size: var(--text-h3);
}

p {
  margin-bottom: 0.85rem;
}

p.lead {
  font-size: 1.05rem;
  color: var(--dt-text-muted);
  line-height: 1.65;
}

a {
  color: var(--dt-red);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--dt-red-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hindi Subheads */
.font-hindi {
  font-family: var(--font-hindi);
}

.dt-hindi-tagline {
  font-family: var(--font-hindi);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dt-red);
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   DUAL-COLOR SECTION TITLES (Clean Minimal Modern Typography)
   -------------------------------------------------------------------------- */
.dt-section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--dt-text-heading);
  margin-bottom: 0.35rem;
}

.dt-section-title span.text-dark {
  color: var(--dt-text-heading);
}

.dt-section-title span.text-red,
.text-red {
  color: var(--dt-red) !important;
}

.dt-section-title span.text-gold,
.text-gold {
  color: var(--dt-gold-dark) !important;
}

.dt-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dt-red);
  background: var(--dt-red-light);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
  border: 1px dashed rgba(184, 29, 36, 0.2);
}

.dt-section-eyebrow.is-gold {
  color: var(--dt-gold-dark);
  background: var(--dt-gold-light);
  border: 1px dashed var(--dt-gold-border);
}

.dt-section-desc {
  font-size: 0.925rem;
  color: var(--dt-text-muted);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Subtle Texture */
.has-grain-overlay {
  position: relative;
}

.has-grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/textures/grain-texture.svg');
  background-repeat: repeat;
  opacity: 0.015;
  pointer-events: none;
  z-index: 0;
}
