/* Load Custom Font */
@font-face {
  font-family: 'Aloja';
  src: url('aloja.woff2') format('woff2'),
       url('aloja.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #F47185;       /* Coral Pink */
  --color-primary-hover: #E0566C;
  --color-secondary: #FFB8C6;     /* Soft Pink */
  --color-gold: #C29B38;          /* Warm Gold */
  --color-green: #324B28;         /* Olive Green */
  --color-text-dark: #1E1E1E;
  --color-bg-light: #FDFBF7;      /* Warm Off-White */
  --color-card-bg: #FFFFFF;
  --font-main: 'Quicksand', system-ui, sans-serif;
  --font-heading: 'Aloja', 'Quicksand', cursive, sans-serif;
}

* { 
  box-sizing: border-box; 
}

body {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 2px solid var(--color-secondary);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 1px;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 60px 0 40px;
  text-align: center;
}

.badge {
  background: var(--color-secondary);
  color: var(--color-text-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

/* Updated heading color to Olive Green */
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-green); /* Changed from pink to olive green */
  margin: 10px 0;
  letter-spacing: 1px;
}

.hero p {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
  color: #4b5563;
}

/* Buttons */
.btn-primary {
  background: var(--color-primary);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { 
  background: var(--color-primary-hover); 
}

.btn-outline {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* Sections */
.section-padding { 
  padding: 50px 0; 
}

.bg-alt { 
  background: #f3efe6; 
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-green);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: var(--color-card-bg);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}

.tool-card { 
  border-top: 4px solid var(--color-gold); 
}

.product-card { 
  border-top: 4px solid var(--color-primary); 
}

.tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 8px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.card p {
  color: #6b7280;
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 16px;
}

.card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

/* Footer */
footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 24px 0;
  margin-top: 50px;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}