/* Folklore Podcast Template - Main CSS */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #e67e22;
  --accent-color: #8e44ad;
  --forest-green: #27ae60;
  --warm-brown: #a0522d;
  --light-primary: #34495e;
  --light-secondary: #f39c12;
  --light-accent: #9b59b6;
  --light-green: #2ecc71;
  --light-brown: #d4b08a;
  --dark-primary: #1a252f;
  --dark-secondary: #d35400;
  --dark-accent: #7d3c98;
  --dark-green: #1e8449;
  --dark-brown: #8b4513;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Header */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: bold;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.8);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem;
  opacity: 0.9;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary-color);
}

.card-text {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Services */
.services-card {
  background: linear-gradient(45deg, var(--white), var(--light-gray));
  border-left: 4px solid var(--secondary-color);
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
}

/* Team */
.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--secondary-color);
}

.team-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 1rem;
}

.team-role {
  font-size: 0.9rem;
  color: var(--accent-color);
}

/* Reviews/Testimonials */
.review-card {
  background: var(--light-gray);
  border-left: 4px solid var(--forest-green);
  padding: 2rem;
  border-radius: 10px;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: bold;
  color: var(--primary-color);
}

/* Reviews Section Container */
section:has(.swiper-container) {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* FAQ */
.accordion-button {
  background-color: var(--light-gray);
  color: var(--primary-color);
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

.btn-submit {
  background: linear-gradient(45deg, var(--secondary-color), var(--warm-brown));
  border: none;
  color: var(--white);
  padding: 0.75rem 2rem;
  font-weight: bold;
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, var(--dark-secondary), var(--dark-brown));
}

/* Blog */
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary-color);
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--gray);
}

.blog-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-secondary);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-primary));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-color);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Price Plans */
.price-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}

.price-amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary-color);
}

/* Process Steps */
.process-step {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  margin-bottom: 2rem;
}

.process-number {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--forest-green);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--light-green);
}

.timeline-item:last-child::after {
  display: none;
}

/* Swiper Slider */
.swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10;
}

.swiper-pagination-bullet {
  background: var(--gray) !important;
  opacity: 0.5 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color) !important;
  opacity: 1 !important;
  transform: scale(1.2) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--secondary-color) !important;
  width: 40px !important;
  height: 40px !important;
  margin-top: -20px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: bold !important;
}

/* Utility Classes */
.bg-primary-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.bg-secondary-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--warm-brown));
}

.text-primary-custom {
  color: var(--primary-color) !important;
}

.text-secondary-custom {
  color: var(--secondary-color) !important;
}

.text-accent-custom {
  color: var(--accent-color) !important;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
