/* v=1783263775656 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --dark-green: #404F1D;
  --light-green: #5F6F3D;
  --beige: #F4EDE6;
  --white: #FFFFFF;
  --border-color: rgba(64, 79, 29, 0.15);
}

body {
  background-color: var(--beige) !important;
  color: var(--dark-green) !important;
  font-family: 'Inter', sans-serif !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navbar overrides to match main page */
.navbar.w-nav {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent !important;
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

/* Hero Section */
.blog-hero-section {
  position: relative;
  padding: 10rem 5% 6rem;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--beige);
  overflow: hidden;
}

.blog-hero-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 40rem;
  height: 40rem;
  background-image: url('/assets/adayag_olive_branch_outlined_new.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.blog-hero-grid {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.blog-hero-left {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}

.blog-category-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light-green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.blog-title-h1 {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(2.2rem, 4vw, 3.8rem) !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  color: var(--dark-green) !important;
  margin: 0 0 1.5rem 0 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}

.blog-intro {
  font-size: 1.25rem !important;
  line-height: 1.6 !important;
  color: var(--dark-green) !important;
  opacity: 0.85;
  margin: 0 0 2.5rem 0 !important;
  max-width: 36rem;
}

/* Button outline capsule style matching main page */
.blog-back-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--dark-green);
  padding: 0.8rem 1.6rem;
  border-radius: 10rem;
  text-decoration: none;
  color: var(--dark-green);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
}

.blog-back-btn::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--dark-green);
  border-radius: 50%;
  margin-right: 0.6rem;
  transition: background-color 0.3s ease;
}

.blog-back-btn:hover {
  background-color: var(--dark-green);
  color: var(--beige);
}

.blog-back-btn:hover::before {
  background-color: var(--beige);
}

.blog-hero-right {
  position: relative;
  width: 100%;
}

.blog-hero-image-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: rgba(64, 79, 29, 0.05);
}

.blog-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-hero-image-container:hover .blog-main-image {
  transform: scale(1.05);
}

/* Main Content Section */
.blog-content-section {
  max-width: 120rem;
  margin: 0 auto;
  padding: 5rem 5% 8rem;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 5rem;
}

/* Sidebar styling */
.blog-sidebar {
  display: flex;
  flex-flow: column;
  gap: 3.5rem;
}

.blog-meta-group {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.blog-meta-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-green);
}

.blog-meta-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-green);
}

/* Sidebar Product Ad Card */
.blog-sidebar-product {
  border: 1px solid var(--border-color);
  padding: 2rem;
  background-color: var(--white);
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 8rem;
}

.sidebar-product-img {
  width: 80px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(64, 79, 29, 0.12));
}

.sidebar-product-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark-green);
  margin: 0 0 0.5rem 0;
}

.sidebar-product-desc {
  font-size: 0.85rem;
  color: var(--dark-green);
  opacity: 0.75;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.sidebar-product-btn {
  display: block;
  width: 100%;
  border: 1px solid var(--dark-green);
  background-color: var(--dark-green);
  color: var(--beige) !important;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  transition: all 0.3s ease;
}

.sidebar-product-btn:hover {
  background-color: transparent;
  color: var(--dark-green) !important;
}

/* Rich Text Styling */
.blog-rich-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--dark-green);
}

/* Drop-cap on first letter */
.blog-rich-text > p:first-of-type::first-letter {
  font-family: 'Outfit', sans-serif;
  font-size: 3.8rem;
  font-weight: 500;
  float: left;
  line-height: 0.8;
  padding-right: 0.4rem;
  padding-top: 0.2rem;
  color: var(--dark-green);
}

.blog-rich-text p {
  margin: 0 0 2rem 0;
}

.blog-rich-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark-green);
  margin: 3.5rem 0 1.2rem;
  line-height: 1.3;
}

.blog-rich-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark-green);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.blog-rich-text blockquote {
  border-left: 2px solid var(--light-green);
  padding: 0.5rem 0 0.5rem 1.8rem;
  margin: 3rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--light-green);
}

/* Bullet list and numbering list styling */
.blog-rich-text ul, .blog-rich-text ol {
  margin: 0 0 2.5rem 0;
  padding-left: 1.5rem;
}

.blog-rich-text li {
  margin-bottom: 0.8rem;
}

/* ── Premium CTA Block — Adayağ Collection ── */
.blog-cta-block {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #2d3a12 0%, #3c4d18 40%, #4a5e1e 70%, #536633 100%) !important;
  color: #F4EDE6 !important;
  padding: 3.5rem 2rem !important;
  margin: 5rem 0 0 0 !important;
  text-align: center !important;
  border-radius: 0 !important;
}

/* Radial soft-glow spotlight in center */
.blog-cta-block::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(244,237,230,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Olive branch decorative pattern (left side) */
.blog-cta-block::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  width: 22rem;
  height: 22rem;
  background-image: url('/assets/adayag_olive_branch_outlined_new.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* Inner content wrapper to sit above pseudo-elements */
.blog-cta-block > * {
  position: relative;
  z-index: 1;
}

/* Thin top accent line */
.blog-cta-block .cta-accent-line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: rgba(244, 237, 230, 0.45);
  margin: 0 auto 1.5rem auto;
}

.blog-cta-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  font-weight: 400 !important;
  color: #F4EDE6 !important;
  margin: 0 0 0.9rem 0 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3) !important;
}

.blog-cta-eyebrow {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 230, 0.55);
  margin-bottom: 0.9rem;
}

.blog-cta-desc {
  font-size: 1rem !important;
  color: rgba(244, 237, 230, 0.82) !important;
  max-width: 30rem !important;
  margin: 0 auto 2rem auto !important;
  line-height: 1.65 !important;
  font-weight: 300 !important;
}

/* Premium capsule button */
.blog-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  border: 1px solid rgba(244, 237, 230, 0.55) !important;
  padding: 0.8rem 2rem !important;
  border-radius: 10rem !important;
  text-decoration: none !important;
  color: #F4EDE6 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: background 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.35s ease,
              color 0.35s ease,
              box-shadow 0.35s ease !important;
  background: rgba(244, 237, 230, 0.06) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  box-shadow: 0 0 0 0 rgba(244,237,230,0) !important;
}

.blog-cta-btn::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: rgba(244, 237, 230, 0.7) !important;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.blog-cta-btn::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: rgba(244, 237, 230, 0.7) !important;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.blog-cta-btn:hover {
  background: rgba(244, 237, 230, 0.14) !important;
  border-color: rgba(244, 237, 230, 0.9) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 0 1px rgba(244,237,230,0.15) !important;
}

.blog-cta-btn:hover::before,
.blog-cta-btn:hover::after {
  background-color: #F4EDE6 !important;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-cta-block {
    padding: 2.8rem 1.5rem !important;
  }
  .blog-cta-title {
    font-size: 1.5rem !important;
  }
  .blog-cta-desc {
    font-size: 0.95rem !important;
  }
}

/* Footer layout adaptation */
.footer-hero-wrap {
  border-top: 1px solid var(--border-color);
  background-color: var(--beige);
}

/* Responsive Rules */
@media (max-width: 991px) {
  .blog-hero-section {
    padding: 8rem 2rem 4rem;
  }
  
  .blog-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .blog-content-section {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 4rem 2rem 6rem;
  }
  
  .blog-sidebar {
    flex-flow: row wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  
  .blog-meta-group {
    flex: 1 1 40%;
  }
  
  .blog-sidebar-product {
    display: none; /* Hide product sidebar on tablets/mobiles */
  }
}

@media (max-width: 767px) {
  .blog-title-h1 {
    font-size: 2.2rem !important;
  }
  
  .blog-rich-text {
    font-size: 1.05rem;
  }
  
  .blog-cta-block {
    padding: 3rem 1.5rem;
  }
  
  .blog-cta-title {
    font-size: 1.7rem !important;
  }
}

/* ── Footer Sticky & Overlapping Fix ── */
.footer-hero-wrap {
  position: static !important;
  bottom: auto !important;
  z-index: 1 !important;
  height: auto !important;
  display: block !important;
}

.footer {
  position: static !important;
  height: auto !important;
  min-height: auto !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
  display: block !important;
}

.footer-wrap {
  height: auto !important;
  min-height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 4rem !important;
}

.footer-top {
  height: auto !important;
  min-height: auto !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  gap: 3rem !important;
}

.footer-bottom {
  height: auto !important;
  min-height: auto !important;
  margin-top: 2rem !important;
  align-items: center !important;
}
