/* ============================
   Tamaz Corporation – Shared Stylesheet
   Branding: Pastel Blue, Teal, Grey, Silver
   Typography: Playfair Display + Inter
   ============================ */

:root {
  --color-blue: #afcbef;
  --color-teal: #9fd7d0;
  --color-grey: #e4e7ec;
  --color-silver: #c9ced8;
  --color-deep-teal: #1f6f7a;
  --color-text: #1f2933;
  --color-muted: #6b7280;
  --bg-body: #f5f7fb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg-body);
  color: var(--color-text);
  line-height: 1.6;
  padding-bottom: 4rem;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================
   Navigation
   ============================ */

.nav-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(228, 231, 236, 0.85);
  border-bottom: 1px solid rgba(201, 206, 216, 0.6);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--color-blue);
  object-fit: contain;
}

.nav-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-right {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-right a {
  padding-bottom: 0.15rem;
  position: relative;
}

.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-deep-teal);
  transition: width 0.2s ease;
}

.nav-right a:hover::after {
  width: 100%;
}

/* ============================
   Hero Section
   ============================ */

.hero-bg {
  width: 100%;
  background: radial-gradient(circle at top left, var(--color-blue), var(--color-teal), var(--color-grey));
  padding: 3.5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(31, 47, 71, 0.18);
  padding: 2.5rem 2.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.hero-text p {
  color: var(--color-muted);
  margin-bottom: 1.75rem;
}

.btn-primary {
  background: var(--color-teal);
  color: var(--color-deep-teal);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(31, 111, 122, 0.25);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-silver);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-feature {
  background: var(--color-grey);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--color-deep-teal);
}

/* ============================
   Page Wrapper
   ============================ */

.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

section {
  margin-bottom: 3rem;
}

ul {
  margin-left: 1.25rem;
  margin-bottom: 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

/* ============================
   Footer
   ============================ */

.footer {
  background: #ffffff;
  border-top: 1px solid rgba(201, 206, 216, 0.7);
  padding-top: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--color-blue);
}

.footer-desc {
  color: var(--color-muted);
  margin-top: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 900px) {
  .hero-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .nav-right {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-bg {
    padding: 2.5rem 1rem 3rem;
  }
}
