/* Vanessa Ong | Unique Editorial Lifestyle Blog - 2026 */
/* Fully custom design system: warm neutrals, dusty rose accents, serif headings, generous spacing, asymmetric touches */

:root {
  --bg-primary: #FAF7F2;
  --bg-secondary: #F4EDE3;
  --text-primary: #2D2723;
  --text-secondary: #5C5148;
  --accent: #9B6B5E;
  --accent-light: #C9A88F;
  --accent-warm: #B87D6B;
  --card-bg: #FFFFFF;
  --border-color: #E8DFD3;
  --success: #6B8E6B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: 3.2rem; letter-spacing: -0.02em; }
h2 { font-size: 2.1rem; letter-spacing: -0.015em; margin-bottom: 1.25rem; }
h3 { font-size: 1.45rem; margin-bottom: 0.85rem; }

p {
  margin-bottom: 1.35rem;
  max-width: 72ch;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-warm);
}

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

/* Unique Navigation - elegant with subtle divider */
nav {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.logo {
  font-family: "Georgia", serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile menu - pure CSS hamburger */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-color);
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }
  
  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  .menu-toggle:checked + .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked + .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* Hero - unique asymmetric with decorative element */
.hero {
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 48ch;
  margin-bottom: 2.25rem;
}

.hero-accent {
  width: 100%;
  height: 420px;
  background: linear-gradient(145deg, var(--accent-light) 0%, var(--bg-secondary) 100%);
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(155, 107, 94, 0.12);
}

.hero-accent::before {
  content: "„Gyvenimas – tai ne tai, kas tau nutinka, o tai, kaip tu į tai reaguojai.“";
  font-family: "Georgia", serif;
  font-size: 1.35rem;
  color: var(--text-primary);
  opacity: 0.85;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .hero-accent { height: 280px; }
}

/* Unique section styling */
.section {
  padding: 70px 0;
}

.section-title {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

/* Unique article teaser list with big numbers */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-teaser {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 42px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: start;
}

.article-teaser:last-child {
  border-bottom: none;
}

.teaser-number {
  font-family: "Georgia", serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  opacity: 0.9;
}

.teaser-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.65rem;
}

.teaser-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  max-width: 65ch;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}

.read-more:hover {
  gap: 14px;
}

/* About teaser on home */
.about-teaser {
  background: var(--bg-secondary);
  padding: 60px;
  border-radius: 16px;
  margin-top: 40px;
}

.about-teaser h2 {
  margin-bottom: 1.5rem;
}

/* Article page specific */
.article-header {
  padding: 90px 0 50px;
  border-bottom: 1px solid var(--border-color);
}

.article-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.article-body {
  padding: 60px 0 80px;
  max-width: 780px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 2.8rem;
  margin-bottom: 1.1rem;
}

.article-body blockquote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  background: var(--bg-secondary);
  border-left: 5px solid var(--accent);
  font-family: "Georgia", serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.pull-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
  margin: 2.5rem 0;
}

/* Contact form - clean and spacious */
.contact-form {
  max-width: 620px;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  background: var(--card-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(155, 107, 94, 0.08);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 15px 42px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn:hover {
  background: var(--accent-warm);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 13px 36px;
}

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

/* Footer - unique multi part */
footer {
  background: var(--text-primary);
  color: #D4C9B8;
  padding: 70px 0 40px;
  margin-top: 80px;
}

footer a {
  color: #D4C9B8;
}

footer a:hover {
  color: white;
}

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

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.35rem;
  font-weight: 600;
}

.footer-col p, .footer-col li {
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.45rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.85rem;
  opacity: 0.85;
}

.address {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Thank you page */
.thank-you {
  text-align: center;
  padding: 140px 20px 100px;
}

.thank-you h1 {
  margin-bottom: 1.25rem;
}

.thank-you p {
  max-width: 42ch;
  margin: 0 auto 2.5rem;
}

/* General utilities */
.text-secondary { color: var(--text-secondary); }
.mt-2 { margin-top: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  .article-teaser { grid-template-columns: 60px 1fr; gap: 24px; padding: 32px 0; }
  .teaser-number { font-size: 2.8rem; }
  .container { padding: 0 18px; }
  .hero { padding: 80px 0 60px; }
  .section { padding: 50px 0; }
}
