/* ============================================
   Zestiq — style.css
   ============================================ */

:root {
  --bg: #FAFAF8;
  --bg2: #F3F2EE;
  --white: #FFFFFF;
  --black: #0F0F0E;
  --gray: #6B6B67;
  --light: #C8C8C2;
  --accent: #7F77DD;
  --accent2: #5DCAA5;
  --border: rgba(15,15,14,0.1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--black);
}
.logo span { color: var(--accent); }

.section-header {
  padding: 6rem 4rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 0.5px solid var(--border);
}
.section-tag {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--accent); }

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--accent); }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--black);
  border: 0.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { border-color: var(--black); }

footer {
  border-top: 0.5px solid var(--border);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--black); }
footer p { font-size: 12px; color: var(--gray); }

/* ============================================
   FLOATING BUBBLES
   ============================================ */
.floating-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.float-obj {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.float-obj-1 {
  width: 180px; height: 180px;
  background: #7F77DD;
  opacity: 0.30;
}
.float-obj-2 {
  width: 130px; height: 130px;
  background: #5DCAA5;
  opacity: 0.28;
}
.float-obj-3 {
  width: 150px; height: 150px;
  background: #7F77DD;
  opacity: 0.25;
}
.float-obj-4 {
  width: 100px; height: 100px;
  background: #5DCAA5;
  opacity: 0.22;
}
.float-obj-5 {
  width: 120px; height: 120px;
  background: #7F77DD;
  opacity: 0.20;
}
.float-obj-6 {
  width: 90px; height: 90px;
  background: #5DCAA5;
  opacity: 0.22;
}

main { position: relative; z-index: 1; }
nav  { position: fixed !important; z-index: 100 !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .section-header { padding: 4rem 1.5rem 2rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
