/* =============================================
   base.css — CSS Variables, Reset, Typography,
               Utilities, Container, Buttons
   ============================================= */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  --primary:    #f58220;
  --secondary:  #2c2c2c;
  --light-bg:   #f5f5f5;
  --white:      #ffffff;
  --text-dark:  #222222;
  --text-light: #666666;
  --border:     #e0e0e0;
  --gradient:   linear-gradient(90deg, #f58220, #ff9a3c);
}

/* ---- Reset / Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }

p {
  font-size: 16px;
  color: var(--text-light);
}

a { text-decoration: none; }

img { display: block; max-width: 100%; }

/* ---- Layout ---- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.section.light {
  background: var(--light-bg);
}

/* ---- Utilities ---- */
.text-center  { text-align: center; }
.text-orange  { color: var(--primary); }
.mt-15        { margin-top: 15px; }

/* ---- Section Tag (pill label) ---- */
.section-tag {
  display: inline-block;
  background: #fff3e0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.tag-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.tag-orange {
  background: rgba(245, 130, 32, 0.2);
  color: var(--primary);
}

/* ---- Buttons ---- */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  transition: background 0.3s;
}

.btn-primary:hover { background: #d96d14; }

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: var(--secondary);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.btn-white:hover { background: var(--secondary); color: #fff; }

.btn-large { padding: 14px 32px; font-size: 16px; }

.btn-full {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 15px;
  border: none;
  cursor: pointer;
}
