/* Voice-Acted Classic Literature Audiobooks Template - Main CSS */

/* Color Palette Variables */
:root {
  /* Primary Colors - Pastel High-Contrast */
  --color-primary: #8B4A8C;     /* Deep Plum */
  --color-secondary: #5D4E75;   /* Muted Purple */
  --color-accent: #D4A574;      /* Warm Gold */
  --color-text: #2C3E50;        /* Dark Blue-Gray */
  --color-background: #F8F5F2;  /* Warm Cream */
  
  /* Light Shades */
  --color-primary-light: #B8829B;
  --color-secondary-light: #8A7B9A;
  --color-accent-light: #E5C199;
  --color-text-light: #546E7A;
  --color-background-light: #FEFCFA;
  
  /* Dark Shades */
  --color-primary-dark: #5E325F;
  --color-secondary-dark: #3F3651;
  --color-accent-dark: #B8905C;
  --color-text-dark: #1B252F;
  --color-background-dark: #E8E5E2;
  
  /* Typography */
  --font-family-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-family-secondary: Georgia, 'Times New Roman', serif;
  
  /* Conservative Font Sizes */
  --font-size-h1: 2.25rem;
  --font-size-h2: 1.875rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --font-size-navbar-brand: 1.5rem;
}

/* Base Typography */
body {
  font-family: var(--font-family-primary);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}

/* Headings - Conservative Sizes */
h1 { 
  font-size: var(--font-size-h1);
  font-family: var(--font-family-secondary);
  color: var(--color-primary);
  font-weight: 600;
}

h2 { 
  font-size: var(--font-size-h2);
  font-family: var(--font-family-secondary);
  color: var(--color-primary);
  font-weight: 600;
}

h3 { 
  font-size: var(--font-size-h3);
  color: var(--color-secondary);
  font-weight: 500;
}

h4 { 
  font-size: var(--font-size-h4);
  color: var(--color-secondary);
  font-weight: 500;
}

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

/* Navbar Brand - Conservative Size */
.navbar-brand {
  font-size: var(--font-size-navbar-brand) !important;
  font-family: var(--font-family-secondary);
  color: var(--color-primary);
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--color-background-light) 0%, var(--color-accent-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--color-primary-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decoration-1 {
  top: 10%;
  right: 15%;
}

.hero-decoration-2 {
  bottom: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
}

/* Services Cards */
.service-card {
  background: var(--color-background-light);
  border: 2px solid var(--color-accent-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 74, 140, 0.15);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-family-secondary);
}

/* Features Grid */
.feature-item {
  background: var(--color-background-light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  margin-bottom: 1.5rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--color-background-light);
  border: 2px solid var(--color-secondary-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

.price-card.featured {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: white;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-family-secondary);
}

/* Team Cards */
.team-card {
  background: var(--color-background-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

/* Testimonials */
.review-card {
  background: var(--color-background-light);
  border-left: 4px solid var(--color-accent);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.review-author {
  font-style: italic;
  color: var(--color-secondary);
  margin-top: 1rem;
}

/* Case Studies */
.casestudy-card {
  background: var(--color-background-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--color-accent-light);
}

/* Process Steps */
.process-step {
  background: var(--color-background-light);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  border: 3px solid var(--color-accent);
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--color-accent);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Career Cards */
.career-card {
  background: var(--color-background-light);
  border: 1px solid var(--color-accent-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

/* Core Info Grid */
.coreinfo-item {
  background: var(--color-background-light);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--color-accent-light);
  height: 100%;
}

/* Contact Form */
.contact-form {
  background: var(--color-background-light);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--color-accent-light);
}

.form-control {
  border: 2px solid var(--color-accent-light);
  border-radius: 8px;
  padding: 12px 16px;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(139, 74, 140, 0.25);
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
}

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

/* Blog Cards */
.blog-card {
  background: var(--color-background-light);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-accent-light);
  height: 100%;
}

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

.blog-content {
  padding: 1.5rem;
}

/* FAQ Cards */
.faq-card {
  background: var(--color-background-light);
  border: 1px solid var(--color-accent-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1rem;
}

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

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

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

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

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

.footer h5 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--color-background-light);
  text-decoration: none;
}

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

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: 2rem;
}

.section-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--color-text-light);
}

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

/* Additional Page Sections */
.add-page-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-accent-light);
}

.add-page-section:last-child {
  border-bottom: none;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--color-background-light);
  display: flex;
  align-items: center;
  justify-content: center;
} 

.hero-section h1 {
    padding-top: 250px;
}


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

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