/* style/blog-deep-dive-old-brand-evolution.css */

/* Base styles for the page content, ensuring light text on a dark body background */
.page-blog-deep-dive-old-brand-evolution {
  color: #FFF6D6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-deep-dive-old-brand-evolution__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-deep-dive-old-brand-evolution__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Limit height for hero image */
  filter: brightness(0.7); /* Slightly dim the image for text readability without changing color */
}

.page-blog-deep-dive-old-brand-evolution__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  text-align: center;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-deep-dive-old-brand-evolution__hero-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-deep-dive-old-brand-evolution__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-blog-deep-dive-old-brand-evolution__hero-cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #ffffff; /* Button text always white for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-deep-dive-old-brand-evolution__hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Content Area */
.page-blog-deep-dive-old-brand-evolution__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-deep-dive-old-brand-evolution__article {
  background: #0A0A0A; /* Background */
  padding: 30px;
  border-radius: 10px;
}

.page-blog-deep-dive-old-brand-evolution__section {
  margin-bottom: 50px;
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
}

.page-blog-deep-dive-old-brand-evolution__section-title,
.page-blog-deep-dive-old-brand-evolution__faq-title {
  color: #F2C14E; /* Main color */
  font-size: 2.2em;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
}

.page-blog-deep-dive-old-brand-evolution__paragraph {
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-blog-deep-dive-old-brand-evolution__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12; /* Border */
}

/* CTA Button for conclusion */
.page-blog-deep-dive-old-brand-evolution__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 20px auto;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #ffffff; /* Button text always white for contrast */\  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-deep-dive-old-brand-evolution__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-blog-deep-dive-old-brand-evolution__faq-section {
  margin-top: 60px;
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
}

.page-blog-deep-dive-old-brand-evolution__faq-list {
  margin-top: 30px;
}

.page-blog-deep-dive-old-brand-evolution__faq-item {
  margin-bottom: 15px;
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-deep-dive-old-brand-evolution__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(242, 193, 78, 0.1); /* Slightly transparent brand color */
  color: #FFF6D6; /* Text Main */
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-blog-deep-dive-old-brand-evolution__faq-question:hover {
  background: rgba(242, 193, 78, 0.2);
}

.page-blog-deep-dive-old-brand-evolution__faq-question h3 {
  margin: 0;
  color: #F2C14E; /* Main color */
  font-size: 1.1em;
}

.page-blog-deep-dive-old-brand-evolution__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  transition: transform 0.3s ease;
}

.page-blog-deep-dive-old-brand-evolution__faq-item.active .page-blog-deep-dive-old-brand-evolution__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-deep-dive-old-brand-evolution__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-blog-deep-dive-old-brand-evolution__faq-item.active .page-blog-deep-dive-old-brand-evolution__faq-answer {
  max-height: 1000px !important; /* Important for JS toggle */
  padding: 15px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-deep-dive-old-brand-evolution__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-deep-dive-old-brand-evolution__hero-description {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }
  .page-blog-deep-dive-old-brand-evolution__section-title,
  .page-blog-deep-dive-old-brand-evolution__faq-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-blog-deep-dive-old-brand-evolution {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-deep-dive-old-brand-evolution__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-blog-deep-dive-old-brand-evolution__hero-content {
    position: static;
    transform: none;
    padding: 20px;
    background: rgba(10, 10, 10, 0.7); /* Dark overlay for text on mobile */
    margin-top: -100px; /* Pull content up slightly over image for better flow */
    border-radius: 0 0 10px 10px;
  }
  .page-blog-deep-dive-old-brand-evolution__hero-image {
    max-height: 400px;
  }
  .page-blog-deep-dive-old-brand-evolution__hero-title {
    font-size: 1.8em !important;
  }
  .page-blog-deep-dive-old-brand-evolution__hero-description {
    font-size: 1em !important;
  }
  .page-blog-deep-dive-old-brand-evolution__content-area {
    padding: 20px 15px;
  }
  .page-blog-deep-dive-old-brand-evolution__article {
    padding: 15px;
  }
  .page-blog-deep-dive-old-brand-evolution__section,
  .page-blog-deep-dive-old-brand-evolution__faq-section {
    padding: 20px;
  }
  .page-blog-deep-dive-old-brand-evolution__section-title,
  .page-blog-deep-dive-old-brand-evolution__faq-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .page-blog-deep-dive-old-brand-evolution__paragraph {
    font-size: 1em;
  }
  .page-blog-deep-dive-old-brand-evolution img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px; /* Ensure images are not too small */
    min-
  }
  .page-blog-deep-dive-old-brand-evolution__hero-cta-button,
  .page-blog-deep-dive-old-brand-evolution__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1em;
  }
  .page-blog-deep-dive-old-brand-evolution__faq-question h3 {
    font-size: 1em;
  }
  .page-blog-deep-dive-old-brand-evolution__faq-toggle {
    font-size: 1.2em;
  }
  .page-blog-deep-dive-old-brand-evolution__faq-answer {
    padding: 10px 15px;
  }
  .page-blog-deep-dive-old-brand-evolution__hero-section .page-blog-deep-dive-old-brand-evolution__hero-image {
    filter: brightness(0.5); /* Dim hero image more on mobile if text is overlayed */
  }
}