/* Indie Magazine Subscription Template - Main CSS */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-sage: #9BB5A0;
  --primary-cream: #F7F3E9;
  --primary-coral: #E07A5F;
  --primary-navy: #2C3E50;
  --primary-lavender: #C8B9DB;
  
  /* Light/Dark Shades */
  --sage-light: #B8CCC0;
  --sage-dark: #6B8C72;
  --cream-light: #FDFCF7;
  --cream-dark: #EDE5D0;
  --coral-light: #E89F87;
  --coral-dark: #C85A3F;
  --navy-light: #34495E;
  --navy-dark: #1A252F;
  --lavender-light: #D6CAE5;
  --lavender-dark: #A895C2;

  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Segoe UI', sans-serif;
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  color: var(--navy-dark);
  background-color: var(--cream-light);
  line-height: 1.6;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-dark);
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-dark);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header */
.navbar {
  background-color: var(--cream-light);
  border-bottom: 2px solid var(--sage-light);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--navy-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--coral-dark);
}

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

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

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

.hero-decoration-2 {
  bottom: 20%;
  left: 5%;
  background-color: var(--coral-light);
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 150px;
}

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

/* About Section */
.about-section {
  background-color: var(--cream-light);
}

.feature-card {
  background-color: white;
  border: 2px solid var(--sage-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--coral-dark);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--sage-light);
}

.service-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--coral-dark);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: var(--lavender-light);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--cream-light);
}

.price-card {
  background-color: white;
  border: 2px solid var(--sage-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--coral-dark);
  box-shadow: 0 15px 30px rgba(224, 122, 95, 0.2);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral-dark);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sage-light);
}

/* Team Section */
.team-section {
  background-color: var(--sage-light);
}

.team-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

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

/* Reviews Section */
.reviews-section {
  background-color: var(--lavender-light);
}

.review-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
  color: var(--navy-dark);
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--cream-light);
}

.casestudy-card {
  background-color: white;
  border: 2px solid var(--sage-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

/* Process Section */
.process-section {
  background-color: var(--sage-light);
}

.process-step {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--coral-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--lavender-light);
}

.timeline-item {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--coral-dark);
}

/* Career Section */
.career-section {
  background-color: var(--cream-light);
}

.career-card {
  background-color: white;
  border: 2px solid var(--sage-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--sage-light);
}

.coreinfo-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

/* Contact Section */
.contact-section {
  background-color: var(--lavender-light);
}

.contact-form {
  background-color: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.contact-info {
  background-color: var(--navy-dark);
  color: white;
  border-radius: 12px;
  padding: 3rem;
}

.contact-info h4 {
  color: white;
}

.form-control {
  border: 2px solid var(--sage-light);
  border-radius: 8px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--coral-dark);
  box-shadow: 0 0 0 0.2rem rgba(224, 122, 95, 0.25);
}

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

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

/* Blog Section */
.blog-section {
  background-color: var(--cream-light);
}

.blog-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

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

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--sage-light);
}

.faq-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 10px rgba(44, 62, 80, 0.1);
}

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

.faq-answer {
  color: var(--navy-light);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--lavender-light);
  padding: 4rem 0;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
}

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

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

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

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

.footer .navbar-brand {
  color: var(--cream-light);
  font-size: 1.5rem;
}

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

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

/* Utility Classes */
.text-primary-sage { color: var(--primary-sage); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-navy { color: var(--primary-navy); }

.bg-primary-sage { background-color: var(--primary-sage); }
.bg-primary-cream { background-color: var(--primary-cream); }
.bg-primary-coral { background-color: var(--primary-coral); }

/* Breadcrumb Styles */
.breadcrumb-section {
  padding: 2rem 0;
  background-color: var(--sage-light);
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}

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


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

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