/* Ocolax - Brand New Centered Minimalist Design */
/* Pastel Mint + Lavender | Small 8px Radius | Light Shadows | Clean Minimalist | Centered One-Column */

:root {
  --bg: #FDF6F0;
  --text: #1A1A2E;
  --primary: #A8E6CF;
  --accent: #D4A5FF;
  --light: #F0E6F5;
  --card: #FFFFFF;
  --border: #E8D9F0;
  --shadow: 0 8px 25px rgba(26, 26, 46, 0.06);
  --radius: 8px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 17px;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }

.container { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* Header - Minimalist Centered */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
}

nav ul { display: flex; gap: 36px; list-style: none; }

nav a { color: #4A4A4A; font-weight: 500; }

.btn {
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--primary);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--primary);
}

.btn:hover { background: var(--accent); border-color: var(--accent); }

/* Centered Minimalist Hero */
.hero {
  text-align: center;
  padding: 100px 0 80px;
}

.hero h1 {
  font-size: 3.8rem;
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.15rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Clean Cards */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

/* Footer */
footer {
  background: #1A1A2E;
  color: #C8B8D0;
  padding: 70px 0 40px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-col h4 { color: #EDE7DC; margin-bottom: 18px; }

.footer-col a { color: #C8B8D0; display: block; margin-bottom: 9px; font-size: 0.9rem; }

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid #3A3A4E;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}