/* C:\Users\tusha\Desktop\Tushar Kumar\css\base.css */

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

html {
  font-size: 10px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--dark-obsidian); /* Premium warm ivory base */
  color: var(--text-main); /* Rich slate dark green-grey body text */
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--text-title); /* Luxury deep forest green for headings */
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2rem;
}

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

a:hover {
  text-decoration: none;
  color: var(--primary);
}

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

/* Sections */
.section {
  padding: var(--space-lg) 0;
  position: relative;
}

/* Containers */
.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}
@media (min-width: 768px) {
  .container { max-width: 720px; }
}
@media (min-width: 992px) {
  .container { max-width: 960px; }
}
@media (min-width: 1200px) {
  .container { max-width: 1200px; }
}

/* Row & Columns Grid system */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
  }
}

/* Badge Pill design */
.badge-pill {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(26, 122, 64, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  display: inline-block;
  background: rgba(26, 122, 64, 0.04);
  margin-bottom: 20px;
}

/* Flex utilities */
.d-flex { display: flex !important; }
.d-none { display: none !important; }
.flex-column { flex-direction: column !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

/* Margins & Paddings */
.my-4 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.my-5 { margin-top: 4rem !important; margin-bottom: 4rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.8rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2.5rem !important; }
.mb-5 { margin-bottom: 4rem !important; }
.mt-2 { margin-top: 0.8rem !important; }
.mt-4 { margin-top: 2.5rem !important; }
.mr-md-3 { margin-right: 1.5rem !important; }
.ml-3 { margin-left: 1.5rem !important; }
.p-0 { padding: 0 !important; }
.py-3 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.pb-5 { padding-bottom: 4rem !important; }
.pt-5 { padding-top: 4rem !important; }

.text-white { color: var(--white) !important; }
.text-center { text-align: center !important; }
.font-weight-semibold { font-weight: 600 !important; }
.font-weight-bold { font-weight: 700 !important; }
