/* ai_partner.css - AI Partner Page Refined Styles */

.theme-ai {
  --accent-color: #0ea5e9;
  --bg-light: #f0f9ff;
  --border-light: #bae6fd;
  --text-dark: #0369a1;
  --text-mute: #0c4a6e;
  --box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
  overflow-x: clip; /* Fix for sticky sidebar */
}

/* Hero Section */
.partner-hero {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--box-shadow);
}

.partner-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
}

.partner-hero-content h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Design Box Overrides/Extensions */
.design-box.ai-theme {
  border-top: 5px solid var(--accent-color);
}

/* AI Bridge Section - Premium Reinvention */
.ai-bridge-section {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e0f2fe 100%);
  border-radius: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.ai-bridge-section::before {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 8rem;
  color: rgba(14, 165, 233, 0.05);
}

.ai-bridge-section h3 {
  margin-top: 0;
  color: var(--text-dark);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.ai-bridge-section p {
  font-size: 1rem;
  color: var(--text-mute);
  line-height: 1.8;
}

.prompt-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 2px dashed var(--accent-color);
  margin: 2rem 0;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.prompt-card:hover {
  transform: translateY(-5px);
}

.prompt-label {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--accent-color);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

.prompt-content {
  font-family: inherit;
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.copy-btn.copied {
  background: #10b981 !important;
  color: #fff !important;
  border-color: #10b981 !important;
}

.ai-launch-pad {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.launch-btn {
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.launch-btn.chatgpt {
  background: #10a37f;
}
.launch-btn.gemini {
  background: #4285f4;
}
.launch-btn.claude {
  background: #d97757;
}

.launch-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  filter: brightness(1.1);
}

/* Footer Reset */
.partner-footer {
  text-align: center;
  padding: 3rem;
  background: #f8fafc;
  color: var(--text-mute);
  border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .partner-hero {
    height: 250px;
  }
  .ai-bridge-section {
    padding: 1.5rem;
  }
}
