/* ── Design System Variables ── */
:root {
  --bg-color: #fffaf5; /* Original warm vintage cream */
  --bg-card: #ffffff; /* White cards on cream background */
  --bg-card-hover: #faf6f0; /* Slightly darker cream on hover */
  
  --text-main: #2b2211; /* Original dark charcoal brown */
  --text-muted: #726b59; /* Original warm light brown/gray */
  --text-dark: #1f180c;
  
  --accent: #917330; /* Original warm gold/brass accent */
  --accent-rgb: 145, 115, 48;
  
  --border-color: #E0DDD4; /* Original border color */
  --border-hover: #c9c5ba;
  
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 160px;
}

/* ── Reset & Base Styles ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-main);
}

/* ── Layout Containers ── */
.header-container,
.content-container,
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.main-content {
  flex: 1;
  padding: 3rem 0;
}

/* ── Site Header (Desktop stacked & centered layout) ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 250, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.brand-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-top: 2px;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* ── Cards Grid & Post Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(43, 34, 17, 0.04);
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 32px rgba(43, 34, 17, 0.08);
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-cover {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #f5eedf;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.post-card:hover .card-cover img {
  transform: scale(1.03);
}

.card-cover.placeholder {
  background: linear-gradient(135deg, #f5eedf 0%, #e0ddd4 100%);
}

.card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
}

.card-date {
  color: var(--text-muted);
}

.card-categories {
  display: flex;
  gap: 0.5rem;
}

.card-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-main);
}

.card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Single Post Layout ── */
.single-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.post-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.post-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-title {
  font-size: 2.8rem;
  margin-top: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.post-cover {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}

.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Content Styling & Elementor Cleanups ── */
.post-content-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-main);
}

.post-content-body p {
  margin-bottom: 1.6rem;
}

.post-content-body h2 {
  font-size: 1.8rem;
  margin: 2.8rem 0 1.2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.6rem;
  color: var(--text-main);
}

.post-content-body h3 {
  font-size: 1.45rem;
  margin: 2.2rem 0 1rem;
  color: var(--text-main);
}

.post-content-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.8rem 1.8rem;
  margin: 2.5rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  background: rgba(145, 115, 48, 0.04);
  border-radius: 0 8px 8px 0;
  color: var(--text-muted);
}

.post-content-body figure {
  margin: 2.5rem 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.post-content-body figure img {
  width: 100%;
  display: block;
  height: auto;
}

.post-content-body figcaption {
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #fbfaf8;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.post-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Static Page Styling */
.static-page {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.static-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.static-page p {
  margin-bottom: 1.5rem;
}

/* ── Post Navigation / Back Button ── */
.post-navigation {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.back-button {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.back-button:hover {
  border-color: var(--accent);
  color: var(--text-main);
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
  background: #fbfaf7;
  margin-top: 5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 1.8rem;
}

.social-link:hover {
  color: var(--accent);
}

/* ── Mobile Responsive Styles ── */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 0;
  }
  
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(255, 250, 245, 0.98);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(43, 34, 17, 0.08);
  }
  
  .site-nav.active {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    margin: 5px 0;
    transition: var(--transition-smooth);
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .post-title {
    font-size: 2rem;
  }
}

/* ── Header Logo Style ── */
.site-logo {
  height: 56px; /* Logo lớn hơn ở màn hình máy tính */
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.site-logo:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* ── About Me Custom Page Styles (.dppl-*) ── */
.dppl-hero {
  position: relative;
  width: 100%;
  height: 480px; /* Giới hạn chiều cao để ảnh không bị quá dài */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}

.dppl-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%; /* Lấy phần đỉnh núi và mặt trời đẹp nhất */
}

.dppl-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(43, 34, 17, 0) 0%, rgba(43, 34, 17, 0.85) 100%);
  z-index: 2;
}

.dppl-hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.dppl-hero-title {
  font-size: 2.2rem !important;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: #ffffff !important; /* Đảm bảo chữ trắng nổi bật trên nền tối */
}

.dppl-hero-sub {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.9;
}

/* Trích dẫn kiểu kéo (Pullquote) */
.dppl-pullquote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  text-align: center;
  max-width: 700px;
  margin: 3.5rem auto;
  line-height: 1.6;
  color: var(--text-muted);
  position: relative;
  padding: 0 1.5rem;
}

.dppl-pullquote::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
  font-family: var(--font-serif);
  color: var(--accent);
}

/* Đường chia cắt kim cương */
.dppl-divider {
  text-align: center;
  margin: 3.5rem 0;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
}

/* Responsive cho điện thoại */
@media (max-width: 768px) {
  .site-logo {
    height: 32px; /* Logo nhỏ hơn trên di động */
  }
  
  .dppl-hero {
    height: 320px; /* Giảm chiều cao banner trên di động */
  }
  
  .dppl-hero-title {
    font-size: 1.5rem !important;
  }
  
  .dppl-hero-sub {
    font-size: 0.85rem;
  }
  
  .dppl-pullquote {
    font-size: 1.15rem;
    margin: 2.5rem auto;
  }
}

/* ── Responsive Video Container (YouTube Embeds) ── */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Tỷ lệ khung hình 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(43, 34, 17, 0.08);
  border: 1px solid var(--border-color);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   ── Creative Homepage Styling ──
   ========================================================================== */

/* ── Reset Body Padding and Content Container on Homepage ── */
body.home-page {
  padding-top: 0 !important;
}

body.home-page .main-content {
  padding: 0 !important;
}

body.home-page .content-container {
  max-width: none !important;
  padding: 0 !important;
}

/* ── Header Transparent System & Logo Swapping ── */
.site-logo.logo-light {
  display: none !important;
}
.site-logo.logo-dark {
  display: block !important;
}

/* Home Page Specific Header Top State */
body.home-page .site-header:not(.header-scrolled) {
  background: transparent !important;
  border-bottom-color: rgba(224, 221, 212, 0.15) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.home-page .site-header:not(.header-scrolled) .logo-light {
  display: block !important;
}

body.home-page .site-header:not(.header-scrolled) .logo-dark {
  display: none !important;
}

body.home-page .site-header:not(.header-scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.home-page .site-header:not(.header-scrolled) .nav-link:hover,
body.home-page .site-header:not(.header-scrolled) .nav-link.active {
  color: #ffffff !important;
}

body.home-page .site-header:not(.header-scrolled) .nav-link::after {
  background-color: #ffffff !important;
}

/* Mobile Toggle Hamburger button on transparent state */
body.home-page .site-header:not(.header-scrolled) .mobile-menu-toggle span {
  background-color: #ffffff !important;
}

/* Transition speed for smooth header scrolling background changes */
.site-header {
  transition: background 0.4s ease, border-bottom 0.4s ease, box-shadow 0.4s ease, height 0.4s ease !important;
}

/* ── Buttons (Premium CTA Buttons) ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff !important;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background-color: var(--text-main);
  border-color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(145, 115, 48, 0.25);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: var(--text-main) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main) !important;
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ── Hero Section ── */
.home-hero {
  position: relative;
  width: 100%;
  height: 92vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(31, 24, 12, 0.6) 0%, rgba(31, 24, 12, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  margin-top: 60px; /* Offset the logo height */
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.2rem !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: #ffffff !important;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Scroll Down Indicator Mouse */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.hero-scroll-indicator:hover {
  opacity: 1;
  color: var(--accent);
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid #ffffff;
  border-radius: 15px;
  position: relative;
}

.mouse-icon .wheel {
  width: 4px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

/* ── Introduction Section ── */
.home-intro-section {
  padding: 8rem 0;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.section-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem !important;
  color: var(--text-main) !important;
  margin-bottom: 1.5rem;
}

.section-title-large {
  font-family: var(--font-serif);
  font-size: 3rem !important;
  color: var(--text-main) !important;
  margin-bottom: 1.5rem;
}

.divider-gold {
  width: 60px;
  height: 2px;
  background-color: var(--accent);
  margin-bottom: 2rem;
}

.divider-gold-center {
  width: 60px;
  height: 2px;
  background-color: var(--accent);
  margin: 0 auto 3rem auto;
}

.intro-paragraph {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.text-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: 1rem;
}

.text-link:hover {
  color: var(--text-main);
  transform: translateX(4px);
}

.featured-image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(43, 34, 17, 0.08);
  border: 1px solid var(--border-color);
}

.featured-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.featured-image-frame:hover .featured-image {
  transform: scale(1.03);
}

/* ── Featured Portfolio Grid ── */
.home-featured-section {
  padding: 8rem 0;
  background-color: #ffffff; /* Contrast white section */
  border-bottom: 1px solid var(--border-color);
}

.section-header-centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.section-actions-centered {
  text-align: center;
  margin-top: 4rem;
}

/* ── Immersive Quote Section ── */
.home-quote-section {
  padding: 9rem 2rem;
  background-color: #faf6f0; /* Soft gold-tinted cream block */
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.25;
}

.creative-quote {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ── Journal Section ── */
.home-journal-section {
  padding: 8rem 0;
  background-color: var(--bg-color);
}

/* ── Keyframe Animations ── */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: 22px;
    opacity: 0;
  }
}

/* ── Responsive adjustments for landing sections ── */
@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .intro-image-column {
    order: -1; /* Image first on mobile */
  }
  
  .hero-title {
    font-size: 3rem !important;
  }
  
  .home-hero {
    height: 80vh;
  }
}

@media (max-width: 768px) {
  .home-hero {
    height: 100vh; /* Full viewport height on mobile to make toggle header overlay clear */
  }
  
  .hero-title {
    font-size: 2.4rem !important;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
    padding: 0.8rem 1.8rem;
  }
  
  .home-intro-section,
  .home-featured-section,
  .home-quote-section,
  .home-journal-section {
    padding: 5rem 0;
  }
  
  .creative-quote {
    font-size: 1.4rem;
  }
  
  .section-title,
  .section-title-large {
    font-size: 1.8rem !important;
  }
  
  .hide-mobile {
    display: none !important;
  }
  
  .show-mobile-only {
    display: block !important;
  }
}

