/* =================================================================
   ACOUSTIC PODCAST STUDIO TEMPLATE - MAIN STYLES
   Bootstrap 5 Integration - NO OVERRIDES OR DUPLICATES ALLOWED
   ================================================================= */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-purple: #8B7ED8;
  --primary-teal: #5CCED4;
  --primary-coral: #FF9A8B;
  --primary-mint: #A8E6CF;
  --primary-lavender: #DDB7F0;
  
  /* Light/Dark Shades */
  --light-purple: #B8A9E8;
  --dark-purple: #6B5FB8;
  --light-teal: #7FD9DF;
  --dark-teal: #4AAEB4;
  --light-coral: #FFB5A9;
  --dark-coral: #E8806B;
  --light-mint: #C5F0DF;
  --dark-mint: #88D6AF;
  --light-lavender: #EECCF8;
  --dark-lavender: #C397E0;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.25rem !important;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-teal) 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: white;
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: white;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: var(--primary-mint);
  border-radius: 50%;
  opacity: 0.1;
}

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

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

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

/* Service Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: none;
}

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

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

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: none;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
}

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

/* Review Cards */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: none;
  margin-bottom: 2rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
}

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

.faq-answer {
  color: #666;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid #eee;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(92, 206, 212, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-teal) 100%);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--dark-teal) 100%);
}

/* Gallery Grid */
.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Footer - High Contrast Colors Only */
.footer {
  background: var(--dark-purple);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: #f8f9fa;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

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

/* Utility Classes */
.text-primary-purple { color: var(--primary-purple); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-coral { color: var(--primary-coral); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-teal { background-color: var(--light-teal); }
.bg-light-mint { background-color: var(--light-mint); } 

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


/* 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;
    }
}
