/* Digital Etiquette Coaching - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-navy: #2c3e50;
  --primary-teal: #16a085;
  --primary-sage: #95a5a6;
  --primary-cream: #f8f9fa;
  --primary-coral: #e74c3c;
  
  /* Light/Dark Shades */
  --navy-light: #34495e;
  --navy-dark: #1a252f;
  --teal-light: #1abc9c;
  --teal-dark: #148f77;
  --sage-light: #bdc3c7;
  --sage-dark: #7f8c8d;
  --cream-light: #ffffff;
  --cream-dark: #ecf0f1;
  --coral-light: #e67e22;
  --coral-dark: #c0392b;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-navy);
  background-color: var(--primary-cream);
}

/* Typography - Conservative Sizes */
h1 { font-size: 2.5rem; font-weight: 600; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.75rem; font-weight: 500; }
h4 { font-size: 1.5rem; font-weight: 500; }
h5 { font-size: 1.25rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

.navbar-brand { font-size: 1.5rem; font-weight: 600; }

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: var(--primary-teal);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(-15deg);
}

/* Navigation */
.navbar {
  background-color: var(--cream-light);
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
  transition: all 0.3s ease;
}

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

.navbar-nav .nav-link:hover {
  color: var(--primary-teal);
}

/* Sections */
section {
  padding: 5rem 0;
}

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

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

.section-desc {
  color: var(--navy-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
  background: var(--cream-light);
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

.service-price {
  color: var(--primary-teal);
  font-size: 1.5rem;
  font-weight: 600;
}

/* Team Cards */
.team-card {
  background: var(--cream-light);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: scale(1.05);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Reviews */
.review-card {
  background: var(--cream-light);
  border-left: 4px solid var(--primary-teal);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Features */
.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  color: var(--primary-teal);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Price Plans */
.price-card {
  background: var(--cream-light);
  border: 2px solid var(--sage-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary-teal);
  position: relative;
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-teal);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

/* Contact Form */
.contact-form {
  background: var(--cream-light);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

.form-control {
  border: 2px solid var(--sage-light);
  border-radius: 8px;
  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(22, 160, 133, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-teal);
  border-color: var(--primary-teal);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-teal);
  border-color: var(--primary-teal);
}

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

/* Footer - High Contrast Colors Only */
footer {
  background-color: var(--primary-navy);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

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

footer p, footer a {
  color: var(--primary-sage);
}

footer a:hover {
  color: var(--cream-light);
  text-decoration: none;
}

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

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

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--cream-dark);
}

.breadcrumb-container img {
  height: 24px;
  width: auto;
}

/* Process/Timeline Items */
.process-item, .timeline-item {
  position: relative;
  padding: 2rem;
  background: var(--cream-light);
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-teal);
}

/* Career Items */
.career-item {
  background: var(--cream-light);
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.career-item:hover {
  border-color: var(--primary-teal);
  transform: translateX(5px);
}

/* Case Study Items */
.casestudy-item {
  background: var(--cream-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
}

/* Core Info Items */
.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: var(--cream-light);
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(44, 62, 80, 0.1);
}

/* Blog Items */
.blog-item {
  background: var(--cream-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

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

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .hero-section { min-height: 80vh; }
  section { padding: 3rem 0; }
  .contact-form { padding: 2rem; }
}

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


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