/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f1f1f;
  background-color: #ffffff;
  font-weight: 400;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #e6e6e6;
}

.nav {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #a3b18a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #6d9773;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #6d9773;
}

.nav-link:hover::after,
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #6d9773;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1f1f1f;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, #f5ebe0 0%, #b7e4c7 100%);
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  color: #1f1f1f;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #1f1f1f;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

.cta-button {
  display: inline-block;
  background-color: #6d9773;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: #52725d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(109, 151, 115, 0.3);
}

/* Featured Articles */
.featured-articles {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  color: #1f1f1f;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.article-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f1f1f;
}

.article-excerpt {
  color: #1f1f1f;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e6e6e6;
}

.article-date {
  color: #1f1f1f;
  opacity: 0.6;
  font-size: 0.9rem;
}

.read-more {
  color: #6d9773;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #52725d;
  transform: translateX(5px);
}

/* Soulful Section */
.soulful {
  background: linear-gradient(135deg, #f5ebe0 0%, #b7e4c7 100%);
  padding: 4rem 0;
}

.soulful-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.soulful-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f1f1f;
}

.newsetter-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #1f1f1f;
  opacity: 0.8;
}

/* Soul Prompt */
.soul-prompt {
  padding: 4rem 0;
  background-color: #a3b18a;
  color: white;
}

.prompt-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.prompt-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.prompt-text {
  font-size: 1.3rem;
  font-style: italic;
  color: white;
  opacity: 0.95;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, #f5ebe0 0%, #b7e4c7 100%);
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #1f1f1f;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #1f1f1f;
  opacity: 0.8;
}

/* Articles Listing */
.articles-listing {
  padding: 4rem 0;
}

/* About Content */
.about-content {
  padding: 4rem 0;
}

.content-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.about-text h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #a3b18a;
}

.about-text h2:first-of-type {
  margin-top: 0;
}

.quote {
  background-color: #f5ebe0;
  padding: 2rem;
  border-left: 4px solid #a3b18a;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: #1f1f1f;
}

.reflection-prompt {
  background: linear-gradient(135deg, #b7e4c7 0%, #a3b18a 100%);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
  color: white;
}

.reflection-prompt h3 {
  color: white;
  margin-bottom: 1rem;
}

.reflection-prompt p {
  color: white;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Article Page Styles */
.article-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 4rem 0;
  padding-top: 6rem;
  padding-bottom: 2.5rem;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f1f1f;
}

.article-date-header {
  color: #1f1f1f;
  opacity: 0.6;
  font-size: 1rem;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #a3b18a;
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #6d9773;
}

.article-body blockquote {
  background-color: #f5ebe0;
  padding: 1.5rem;
  border-left: 4px solid #a3b18a;
  margin: 2rem 0;
  font-style: italic;
}

.article-body ul,
.article-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e6e6e6;
  text-align: center;
}

.reflection-section {
  background: linear-gradient(135deg, #b7e4c7 0%, #a3b18a 100%);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  color: white;
}

.reflection-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.reflection-section p {
  color: white;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: #1f1f1f;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-text {
  opacity: 0.8;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .soulful-title {
    font-size: 2rem;
  }

  .prompt-title {
    font-size: 1.5rem;
  }

  .prompt-text {
    font-size: 1.1rem;
  }

  .article-content {
    padding-top: 5.2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .article-card {
    padding: 1.5rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* Smooth animations */
.article-card,
.cta-button,
.nav-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
.cta-button:focus,
.nav-link:focus {
  outline: 2px solid #a3b18a;
  outline-offset: 2px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
blockquote,
.soulful-title,
.soulful-subtitle,
.prompt-title,
.prompt-text,
.article-title,
.article-excerpt,
.footer-text,
.about-text,
.quote,
.reflection-prompt,
.reflection-section,
.container,
.content-wrapper,
.section-title,
.articles-listing,
.about-content,
.article-content,
.article-header,
.article-body,
.article-footer,
.read-more,
.page-title,
.page-subtitle,
.soulful-content,
.soul-prompt,
.prompt-content,
.reflection-section h3,
.reflection-section p,
.article-card,
.article-meta,
.article-date,
.logo,
.nav-link,
.newsletter-title,
.newsletter-subtitle,
.newsletter-content,
.newsletter-form,
.newsletter-input,
.newsletter-button {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
