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

:root {
  --bg: #FDF8F3;
  --text: #2F2723;
  --accent: #B8735E;
  --sage: #6D8C6D;
  --light: #EDE4D8;
  --card: #FFFFFF;
  --border: #E5DCD2;
}

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

body {
  font-family: 'Inter', system_ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.1rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.4rem; margin: 2rem 0 1rem; color: var(--accent); }

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

a:hover {
  color: #8C5544;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Unique Header - Journal style with accent line */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Unique Hero - Asymmetric with accent block */
.hero {
  padding: 5.5rem 0 4rem;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-text h1 {
  margin-bottom: 1.25rem;
  font-size: 3.6rem;
}

.hero-text .lead {
  font-size: 1.25rem;
  color: #5C5149;
  max-width: 38ch;
}

.hero-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #8C5544 100%);
  height: 420px;
  border-radius: 0 0 0 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(184, 115, 94, 0.25);
}

.hero-accent::before {
  content: "„Kasdienybė slepia daugiau grožio, nei mes dažnai pastebime."";
  font-style: italic;
  max-width: 260px;
  line-height: 1.6;
}

/* Unique sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.85rem;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

/* Journal cards - unique staggered / asymmetric feel */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.journal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.85rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.1);
  border-color: var(--accent);
}

.journal-card:nth-child(2) {
  transform: translateY(12px);
}

.journal-card:nth-child(2):hover {
  transform: translateY(6px);
}

.journal-card .date {
  font-size: 0.8rem;
  color: #8A7F75;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.journal-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.journal-card p {
  color: #5C5149;
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
}

.journal-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.journal-card .read-more::after {
  content: '→';
  transition: transform 0.2s ease;
}

.journal-card:hover .read-more::after {
  transform: translateX(4px);
}

/* Long form content */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.article h1 {
  font-size: 2.65rem;
  margin-bottom: 0.6rem;
}

.article-meta {
  color: #8A7F75;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.article p {
  margin-bottom: 1.65rem;
}

.pull-quote {
  background: var(--light);
  border-left: 6px solid var(--accent);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  font-style: italic;
  font-size: 1.15rem;
  color: #5C5149;
}

.subhead {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2.25rem 0 1rem;
  color: var(--text);
}

/* About page unique layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

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

.about-text {
  font-size: 1.05rem;
}

.author-note {
  background: var(--light);
  padding: 2.25rem;
  border-radius: 16px;
  position: sticky;
  top: 100px;
}

.author-note h3 {
  margin-top: 0;
}

/* Contact form - clean modern */
.contact-form {
  max-width: 620px;
  margin: 2rem auto 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

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

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.95rem 2.35rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #8C5544;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

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

/* Thank you page */
.thank-you {
  text-align: center;
  padding: 6rem 1.5rem;
  max-width: 620px;
  margin: 0 auto;
}

.thank-you h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: #2F2723;
  color: #C9BEB4;
  padding: 3.5rem 0 2.5rem;
  font-size: 0.9rem;
}

footer a {
  color: #C9BEB4;
}

footer a:hover {
  color: #fff;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid #4A4038;
  font-size: 0.82rem;
  color: #8A7F75;
}

/* Legal pages */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.legal h1 {
  margin-bottom: 2rem;
}

.legal h2 {
  margin-top: 2.5rem;
  font-size: 1.45rem;
}

.legal p, .legal li {
  margin-bottom: 1.1rem;
}

.legal ul {
  padding-left: 1.5rem;
}

/* Misc */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.reading-time {
  font-size: 0.85rem;
  color: #8A7F75;
}
