/* style.css */
:root {
  --color-primary:    #E63329;
  --color-secondary:  #1A1A2E;
  --color-accent:     #F5A623;
  --color-bg:         #FFFFFF;
  --color-bg-alt:     #F4F6F9;
  --color-text:       #1C1C1C;
  --color-text-light: #6B7280;
  --color-border:     #E5E7EB;
  --font-heading:     'Barlow Condensed', sans-serif;
  --font-body:        'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--color-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: lowercase;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  transition: 0.3s;
}

.hero {
  position: relative;
  background: url('../images/hero-main.webp') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(26, 26, 46, 0.65);
}

.hero .container {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  background: rgba(0,0,0,0.4);
  padding: 1.5rem;
  border-radius: 8px;
}

.stat-item h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.9rem;
  margin: 0;
}

section { padding: 4rem 0; margin: 4rem 0; }
.bg-alt { background: var(--color-bg-alt); }
.bg-secondary { background: var(--color-secondary); color: #fff; }
.bg-secondary h2 { color: #fff; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { font-size: 2.5rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-box { text-align: center; }
.feature-box h3 { margin: 1rem 0; font-size: 1.5rem; }

.stats-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stats-row .number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.footer {
  background: var(--color-secondary);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer h3 { color: #fff; font-size: 1.2rem; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { opacity: 0.7; transition: opacity 0.2s; }
.footer ul a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-bottom a { margin: 0 0.5rem; }

.page-header {
  background: var(--color-secondary);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 { font-size: 3rem; margin: 0; }
.content-section { max-width: 800px; margin: 0 auto; padding-bottom: 4rem; }
.content-section h2 { margin-top: 2rem; }
.content-section p { margin-bottom: 1.5rem; }
.content-section ul { margin-bottom: 1.5rem; list-style: disc; padding-left: 2rem; }
