/* Ghost-Blogging Network Template - Main CSS */
/* Using Bootstrap 5 as base framework - NO OVERRIDES */

:root {
  /* Pastel High-Contrast Color Palette for Ghost-Blogging */
  --primary-soft: #6366f1;
  --primary-light: #a5b4fc;
  --primary-dark: #4338ca;
  
  --secondary-soft: #ec4899;
  --secondary-light: #f9a8d4;
  --secondary-dark: #be185d;
  
  --accent-soft: #06b6d4;
  --accent-light: #67e8f9;
  --accent-dark: #0891b2;
  
  --neutral-soft: #64748b;
  --neutral-light: #cbd5e1;
  --neutral-dark: #334155;
  
  --success-soft: #10b981;
  --success-light: #6ee7b7;
  --success-dark: #047857;
  
  /* Background and Text */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-accent: #f1f5f9;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
}

/* Global Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* Conservative Header Sizes */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 100px 0;
    padding-top: 125px;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-light), var(--primary-light));
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 15%;
  width: 150px;
  height: 150px;
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

.section-title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--secondary-dark);
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* About Features */
.about-feature {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--neutral-light);
  transition: transform 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
}

/* Services Cards */
.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--neutral-light);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-soft), var(--accent-soft));
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Features Grid */
.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-accent);
  border-radius: 12px;
  height: 100%;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-soft);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--bg-primary);
  border: 2px solid var(--neutral-light);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.price-card.featured {
  border-color: var(--primary-soft);
  transform: scale(1.05);
}

.price-card:hover {
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Team Members */
.team-member {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 16px;
  height: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-light);
}

/* Reviews/Testimonials */
.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: serif;
}

/* Case Studies */
.case-study {
  background: var(--bg-accent);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--accent-soft);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-soft);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--secondary-soft);
  height: 100%;
}

/* Career Positions */
.career-position {
  background: var(--bg-primary);
  border: 1px solid var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

/* Core Info Items */
.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-accent);
  border-radius: 12px;
  height: 100%;
}

/* Contact Form */
.contact-form {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 3rem;
}

.form-control {
  border: 1px solid var(--neutral-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.1);
}

.btn-primary {
  background-color: var(--primary-soft);
  border-color: var(--primary-soft);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Blog Section */
.blog-post {
  background: var(--bg-primary);
  border: 1px solid var(--neutral-light);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Cards */
.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
}

.faq-question {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-secondary);
}

/* Gallery */
.gallery-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--neutral-dark);
  color: var(--neutral-light);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-soft), var(--secondary-light));
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
.contact-info {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--neutral-light);
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  color: var(--primary-soft);
  margin-right: 1rem;
  font-size: 1.2rem;
}


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
