/* ------------------------------
   GLOBAL
--------------------------------*/
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #333;
  line-height: 1.6;
  background: linear-gradient(
    135deg,
    #F47672 0%,   /* Warm coral */
    #fcb69f 50%,  /* Peach */
    #F9A825 100%  /* Amber yellow */
  );
  background-attachment: fixed;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

main {
  padding-top: 3rem; /* space for sticky navbar */
}

/* ------------------------------
   PANEL SECTIONS
--------------------------------*/
.panel {
  background: rgba(255, 250, 240, 0.92); /* warm ivory */
  border-radius: 12px;
  padding: 4rem 2rem;
  margin: 3rem auto;
  max-width: 1100px;
}

/* Extra breathing room for important sections */
.hero.panel {
  margin-top: 0;
  padding: 5rem 2.5rem;
}

.cta.panel {
  padding: 4.5rem 2.5rem;
}

/* ------------------------------
   HEADER
--------------------------------*/
.site-header {
  background: rgba(255, 245, 230, 0.85);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 179, 0, 0.3);
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
  z-index: 1000;
}

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

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
}

.logo-link {
  color: inherit; /* keep coral/black text color */
  text-decoration: none;
}

.logo-link:hover {
  text-decoration: none; /* no underline on hover */
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

nav a.btn {
  background: #F47672;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
}

nav a.btn:hover {
  background: #e06764;
}

/* ------------------------------
   HERO
--------------------------------*/
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.hero-text {
  flex: 1;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
}

.highlight {
  color: #F47672;
}

.btn-primary {
  background: #F47672;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #e06764;
}

/* ------------------------------
   HYBRID METHOD SECTION
--------------------------------*/
.method-header {
  text-align: center;
  margin-bottom: 3rem;
}

.method-badge {
  display: inline-block;
  background: #F47672;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.method-subtitle {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  color: #555;
}

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

.method-card {
  background: rgba(255, 220, 200, 0.9); /* darker warm peach tone */
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  color: #333;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.method-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

/* ------------------------------
   BLOG 
--------------------------------*/
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.blog-grid article {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.2s;
}

.blog-grid article:hover {
  transform: translateY(-5px);
}

.blog-grid h3 {
  margin-top: 0;
}

.blog-grid a {
  color: #F47672;
  font-weight: 600;
  text-decoration: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  padding: 1.5rem; /* ⬅ outer padding so cards don’t touch container edges */
}

.blog-grid article {
  background: white;
  padding: 2rem; /* ⬅ inner padding for content inside the box */
  border-radius: 10px;
  transition: transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog-grid article:hover {
  transform: translateY(-5px);
}

.blog-grid h3 {
  margin-top: 0;
}

.blog-grid a {
  color: #F47672;
  font-weight: 600;
  text-decoration: none;
}

.blog-card-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.blog-card-link article {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.blog-card-link h3 {
  color: #F47672; /* coral for titles */
  margin-top: 0;
}

.blog-card-link p {
  color: #000; /* black for subtitles/descriptions */
}

.blog-card-link:hover article {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.blog-post {
  max-width: 800px;
  margin: 0 auto 0; 
  padding: 3rem 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.blog-post-title {
  font-size: 2.2rem;
  color: #F47672; /* coral */
  margin-top: 0; /* keep it flush with padding */
  margin-bottom: 0.5rem;
}

.blog-post-meta {
  font-size: 0.9rem;
  color: #666;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.blog-post-content h2,
.blog-post-content h3 {
  margin-top: 2rem;
  color: #F47672;
}

.blog-post-content p {
  margin-bottom: 1.2rem;
}

.blog-post-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* ------------------------------
   CTA
--------------------------------*/
.cta {
  text-align: center;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.site-footer {
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ------------------------------
   PRIVACY
--------------------------------*/

.privacy-policy {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.privacy-policy h1,
.privacy-policy h2,
.privacy-policy h3 {
  color: #F47672;
}

.privacy-policy ul {
  padding-left: 1.5rem;
}

.privacy-policy a {
  color: #F47672;
}

/* ------------------------------
   ANIMATIONS
--------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 5px;
  }
}


