﻿/*
 * Main CSS for Podcast Editing & Marketing Agency
 * Bootstrap 5 + Custom Styles
 * Conservative font sizes, high contrast pastel colors
 */

/* ==== COLOR PALETTE ==== */
:root {
  /* Primary Colors */
  --primary-purple: #8B5CF6;
  --primary-teal: #14B8A6;
  --primary-coral: #F59E0B;
  --primary-pink: #EC4899;
  --primary-blue: #3B82F6;
  
  /* Light Shades */
  --light-purple: #E0E7FF;
  --light-teal: #CCFBF1;
  --light-coral: #FEF3C7;
  --light-pink: #FCE7F3;
  --light-blue: #DBEAFE;
  
  /* Dark Shades */
  --dark-purple: #5B21B6;
  --dark-teal: #0F766E;
  --dark-coral: #D97706;
  --dark-pink: #BE185D;
  --dark-blue: #1E40AF;
  
  /* Neutral Colors */
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --background-light: #F9FAFB;
  --background-white: #FFFFFF;
  --border-light: #E5E7EB;
  
  /* Conservative Font Sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-teal) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-pink) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
}

/* ==== GLOBAL STYLES ==== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-white);
  margin: 0;
  padding: 0;
}

/* Conservative heading sizes */
h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

h4 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-purple);
}

/* ==== HEADER ==== */
.header {
  background: var(--background-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-purple);
}

.navbar-nav .nav-link {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple);
}

/* ==== HERO SECTION ==== */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../GEX_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--background-white);
}

.hero h1 {
  font-size: var(--font-size-4xl);
  color: var(--background-white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: var(--font-size-lg);
  color: var(--background-white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Decorative shapes */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-secondary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ==== SECTION STYLES ==== */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: var(--font-size-3xl);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==== ABOUT SECTION ==== */
.about-features {
  margin-top: 4rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--background-light);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-purple);
}

/* ==== SERVICES SECTION ==== */
.services {
  background: var(--background-light);
}

.service-card {
  background: var(--background-white);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.service-features li:last-child {
  border-bottom: none;
}

/* ==== TEAM SECTION ==== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-purple);
}

.team-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  background: var(--background-white);
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
}

/* ==== FAQ SECTION ==== */
.faq-item {
  background: var(--background-white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--background-light);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* ==== GALLERY ==== */
.gallery {
  background: var(--background-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ==== CONTACT FORM ==== */
.contact {
  background: var(--gradient-primary);
  color: var(--background-white);
}

.contact .section-title h2,
.contact .section-title p {
  color: var(--background-white);
}

.contact-form {
  background: var(--background-white);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border: 2px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

/* ==== BUTTONS ==== */
.btn {
  font-size: var(--font-size-base);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--background-white);
  border: none;
}

.btn-primary:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--background-white);
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
  background: var(--primary-purple);
  color: var(--background-white);
}

/* ==== FOOTER ==== */
.footer {
  background: var(--text-primary);
  color: var(--background-white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--background-white);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--background-white);
}

.footer-bottom {
  border-top: 1px solid var(--text-secondary);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* ==== BREADCRUMBS ==== */
.breadcrumb {
  background: var(--background-light);
  padding: 1rem 0;
}

.breadcrumb img {
  height: 20px;
  width: auto;
}

/* ==== PRICE PLAN ==== */
.price-card {
  background: var(--background-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-value {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

/* ==== ANIMATIONS ==== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ==== ACCESSIBILITY ==== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==== UTILITY CLASSES ==== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-primary);
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
  border-radius: 20px;
}

/* ==== SPACE PAGE ==== */
#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-light);
}



/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
