@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #FFF0F2;
  --bg-secondary: #FFF5F6;
  --bg-accent: #F5C6CF;
  --text-dark: #2A1B1D;
  --text-muted: rgba(42, 27, 29, 0.6);
  --primary-pink: #E598A7;
  --dark-pink: #D4607A;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(229, 152, 167, 0.15);
  --glass-shadow: 0 8px 32px rgba(42, 27, 29, 0.05);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-accent));
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

/* Glassmorphism Container */
.glass-container {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--glass-shadow);
  margin-bottom: 40px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  background: rgba(255, 245, 246, 0.8);
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-dark), var(--dark-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary-pink);
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(229, 152, 167, 0.4);
}

/* Decorative Background Elements */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}
.blob-1 {
  width: 400px;
  height: 400px;
  background: #FCE2E6;
  top: 10%;
  left: -100px;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: #E8F4FD;
  bottom: -100px;
  right: -100px;
}

/* Sections */
.section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.65);
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid var(--glass-border);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.8);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

/* Documentation Blocks */
.doc-block {
  margin-bottom: 40px;
}

.doc-block h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

code {
  font-family: monospace;
  background: rgba(255,255,255,0.7);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}

pre {
  background: #1a1012;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 15px 0;
  font-size: 14px;
}

pre code {
  background: transparent;
  color: #E598A7;
  padding: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 5%;
  background: rgba(42, 27, 29, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 40px; }
  .nav-links { display: none; }
  .glass-container { padding: 20px; }
}
