/*
Theme Name: Start Softly
Theme URI: https://startsoftly.example
Author: Edwige
Description: A calm, minimal WordPress theme for the Start Softly lifestyle blog.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: start-softly
*/

:root {
  --color-ivory: #FDFBF9;
  --color-blush: #F6E7E0;
  --color-gold: #C2A878;
  --color-plum: #5A3E36;
  --color-text-main: #3A2A26;
  --color-text-soft: #7C675F;
  --color-border-soft: #E3D4C9;
  --shadow-soft: 0 18px 45px rgba(90, 62, 54, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-ivory);
  color: var(--color-text-main);
  line-height: 1.7;
  font-size: 16px;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, #FFF7F0, #FDFBF9 46%, #F6E7E0 100%);
}

a {
  color: var(--color-plum);
  text-decoration: none;
  transition: color 0.18s ease-out, opacity 0.18s ease-out;
}

a:hover {
  color: var(--color-gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(253, 251, 249, 0.96), rgba(253, 251, 249, 0.9));
  border-bottom: 1px solid rgba(194, 168, 120, 0.12);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #FFFDFC, #F6E7E0 46%, #C2A878 80%);
  box-shadow: 0 12px 30px rgba(90, 62, 54, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--color-text-soft);
}

.main-nav {
  font-size: 0.9rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.18rem;
  color: var(--color-text-soft);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.06rem;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.18s ease-out;
}

.main-nav a:hover {
  color: var(--color-plum);
}

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

.header-cta {
  display: none;
}

.hero {
  padding: 3.2rem 1.5rem 2.2rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 0.9rem;
}

.hero-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.18;
  margin-bottom: 1rem;
  color: var(--color-plum);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-soft);
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-secondary {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  max-width: 36rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease-out, border-color 0.18s ease-out, box-shadow 0.18s ease-out, transform 0.1s ease-out, opacity 0.18s ease-out;
}

.btn-primary {
  background: var(--color-plum);
  color: #FDFBF9;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(90, 62, 54, 0.32);
  opacity: 0.95;
}

.btn-ghost {
  background: rgba(246, 231, 224, 0.8);
  color: var(--color-plum);
  border-color: rgba(194, 168, 120, 0.36);
}

.btn-ghost:hover {
  background: rgba(246, 231, 224, 1);
}

.hero-meta {
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

.hero-card {
  border-radius: 1.5rem;
  background: linear-gradient(145deg, #FFF7F0, #F6E7E0);
  border: 1px solid rgba(194, 168, 120, 0.25);
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(90, 62, 54, 0.06);
  font-size: 0.75rem;
  color: var(--color-text-soft);
  margin-bottom: 1rem;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-gold);
}

.hero-card-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--color-plum);
}

.hero-card-text {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-bottom: 1rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  font-size: 0.86rem;
  color: var(--color-text-soft);
}

.hero-list li + li {
  margin-top: 0.35rem;
}

.hero-pill {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(90, 62, 54, 0.18);
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.hero-pill-strong {
  font-weight: 600;
  color: var(--color-plum);
}

.section {
  padding: 2.6rem 1.5rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  color: var(--color-plum);
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 0.35rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  max-width: 26rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.category-card {
  border-radius: 1.2rem;
  padding: 1.3rem 1.2rem;
  background: rgba(253, 251, 249, 0.9);
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 10px 30px rgba(90, 62, 54, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out, border-color 0.14s ease-out;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(90, 62, 54, 0.16);
  border-color: rgba(194, 168, 120, 0.6);
}

.category-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-soft);
}

.category-name {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: var(--color-plum);
}

.category-excerpt {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.category-link {
  font-size: 0.82rem;
  color: var(--color-plum);
  margin-top: 0.4rem;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.post-card {
  border-radius: 1.2rem;
  padding: 1.3rem 1.2rem;
  background: #FFFFFF;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 14px 34px rgba(90, 62, 54, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.post-meta {
  font-size: 0.78rem;
  color: var(--color-text-soft);
}

.post-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: var(--color-plum);
}

.post-excerpt {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.post-read-more {
  font-size: 0.82rem;
  margin-top: 0.4rem;
}

.site-main {
  flex: 1;
}

.site-footer {
  border-top: 1px solid rgba(194, 168, 120, 0.2);
  background: #F9F3EC;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem 1.7rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.footer-heading {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  color: var(--color-plum);
  margin-bottom: 0.5rem;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  max-width: 26rem;
}

.footer-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.footer-input {
  flex: 1 1 200px;
  border-radius: 999px;
  border: 1px solid rgba(90, 62, 54, 0.25);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: #FFFFFF;
}

.footer-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.footer-meta {
  font-size: 0.78rem;
  color: var(--color-text-soft);
  margin-top: 0.5rem;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem 1.4rem;
  border-top: 1px solid rgba(194, 168, 120, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.footer-links {
  display: flex;
  gap: 1.1rem;
}

.footer-links a {
  color: var(--color-text-soft);
}

.footer-links a:hover {
  color: var(--color-plum);
}

.page-hero {
  padding: 2.7rem 1.5rem 1.8rem;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: var(--color-plum);
}

.page-intro {
  font-size: 0.98rem;
  color: var(--color-text-soft);
}

.page-content-wrapper {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.page-content-wrapper p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.page-content-wrapper h2,
.page-content-wrapper h3 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--color-plum);
  margin: 1.8rem 0 0.6rem;
}

.page-content-wrapper ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
  color: var(--color-text-soft);
}

.page-content-wrapper li + li {
  margin-top: 0.3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(90, 62, 54, 0.25);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: #FFFFFF;
}

.contact-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.social-links a {
  color: var(--color-plum);
}

.social-links a:hover {
  color: var(--color-gold);
}

.blog-archive {
  max-width: 1120px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.blog-archive-header {
  margin-bottom: 1.6rem;
  color: var(--color-text-soft);
}

.single-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.single-content h1 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--color-plum);
  margin-bottom: 0.5rem;
}

.single-meta {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  margin-bottom: 1.4rem;
}

.single-content p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.single-content h2,
.single-content h3 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--color-plum);
  margin: 1.8rem 0 0.6rem;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
  }
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding: 0.85rem 1rem;
  }
  .hero {
    padding: 2.4rem 1rem 1.8rem;
  }
  .section {
    padding: 2.2rem 1rem;
  }
  .footer-inner {
    padding: 2rem 1rem 1.6rem;
  }
  .footer-bottom {
    padding: 0.9rem 1rem 1.3rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
