/* ChatGPT-specific enhancements - Typography now handled by common.css */

/* Problem/Solution specific styling */
#problem h3 {
  font-size: 20px;
  font-weight: 700;
  color: #87004d;
  margin-top: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#problem {
  margin-top: 24px;
}

#problem-solution-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

.problem-card,
.solution-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
}

.problem-card p,
.solution-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #problem-solution-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* Enhanced overview text styling */
.overview-text {
  font-size: 14px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  margin-top: 24px;
}

/* ChatGPT-specific link styling */
.link:hover {
  color: #87004d;
  text-decoration: underline;
}

/* Enhanced tools section styling with ChatGPT branding */
#tools{
  border-left: 4px solid #87004d;
}

/* ChatGPT-specific image styling overrides */

/* Card-based design for sections */
.card-section {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-top: 20px;
}

/* Reflection section styling */
#conc-writing {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Ensure reflection h2 matches other section h2s */
#reflection h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 30px;
  margin-top: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* HERO SNAPSHOT (TOOLS + HERO IMAGE) */

#chatgpt-hero {
  width: 100%;
  padding: 28px 5% 32px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #ffffff 0%, #f3e8ff 100%);
  margin-bottom: 40px;
}

#chatgpt-hero-meta {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-meta-item h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #87004d;
  margin: 0 0 4px;
}

.hero-meta-item p {
  margin: 0;
  font-size: 14px;
  color: #4a4a4a;
}

#chatgpt-hero-media {
  max-width: 1200px;
  margin: 0 auto;
}

#chatgpt-hero-img {
  width: 100%;
  height: 300px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

@media screen and (max-width: 768px) {
  #chatgpt-hero {
    padding: 20px 4% 24px;
    margin-bottom: 32px;
  }

  #chatgpt-hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  #chatgpt-hero-img {
    height: 220px;
    max-height: 220px;
  }
}

/* #website styles moved to common.css for consistency */
#centered-sec{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ChatGPT-specific mobile enhancements */
@media screen and (max-width: 768px) {
  .card-section {
    padding: 20px;
  }
  
  #conc-writing {
    padding: 20px;
  }
  
  /* Design goal flex layout responsive */
  @media screen and (max-width: 768px) {
    .h3-section div[style*="display: flex"] {
      flex-direction: column !important;
      gap: 20px !important;
    }
    
    /* UI design section responsive */
    #ui-design div[style*="display: flex"] {
      flex-direction: column !important;
      gap: 30px !important;
      margin-top: 20px !important;
    }
    
    /* Reflection section responsive */
    #reflection div[style*="display: flex"] {
      flex-direction: column !important;
      gap: 25px !important;
      margin-bottom: 20px !important;
    }
    
    /* Login sequence section responsive */
    #login-sequence div[style*="display: flex"] {
      flex-direction: column !important;
      gap: 30px !important;
      margin-top: 15px !important;
    }
    
    /* Additional login sequence spacing adjustments for mobile */
    #login-sequence div[style*="margin-bottom: 40px"] div[style*="display: flex"] {
      margin-bottom: 25px !important;
    }
    
    /* Privacy walkthrough examples grid responsive */
    div[style*="display: grid"] {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
      margin-top: 15px !important;
    }
    
    /* Approach methodology cards mobile */
    #methodology div[style*="display: grid"][style*="grid-template-columns: 1fr 1fr"] {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
    }
  }
} 