/* Personal Branding Consultancy Template - Main CSS */
/* Bootstrap 5 CDN will be linked in HTML */

/* Color Palette - Exactly 5 primary colors with light/dark shades */
:root {
  /* Primary Colors */
  --primary-coral: #f1827d;
  --primary-sage: #879f8f;
  --primary-cream: #fff5e0;
  --primary-navy: #364d5f;
  --primary-lavender: #cea5ff;
  
  /* Light Shades */
  --light-coral: #faabb0;
  --light-sage: #c6c6c6;
  --light-cream: #FDFBF7;
  --light-navy: #687385;
  --light-lavender: #eed7ff;
  
  /* Dark Shades */
  --dark-coral: #d44040;
  --dark-sage: #96b4a7;
  --dark-cream: #fffce7;
  --dark-navy: #151b22;
  --dark-lavender: #907bae;
  
  /* Conservative Font Sizes */
  --fs-logo: 1.25rem;
  --fs-h1: 2rem;
  --fs-h2: 1.75rem;
  --fs-h3: 1.5rem;
  --fs-h4: 1.25rem;
  --fs-h5: 1.125rem;
  --fs-h6: 1rem;
  --fs-body: 0.875rem;
  --fs-small: 0.75rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-padding: 1rem;
}

/* Base Typography - Conservative sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--primary-navy);
  background-color: var(--primary-cream);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  box-shadow: 0 4px 16px rgba(47, 64, 76, 0.10);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-size: var(--fs-logo) !important;
  font-weight: 600;
  color: var(--primary-cream) !important;
}

.navbar-nav .nav-link {
  color: var(--light-cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral) !important;
}

/* Hero Section - Fullscreen height */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-sage) 0%, var(--light-sage) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../GAP_images/hero-background.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

/* Decorative shapes for hero */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-lavender), var(--light-lavender));
  opacity: 0.7;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-24px); }
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-navy);
}

.section-subtitle {
  color: var(--primary-coral);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--fs-small);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 17px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 14px 30px rgba(44, 62, 80, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-coral);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(36, 52, 74, 0.12);
}

.service-price {
  font-size: var(--fs-h3);
  font-weight: bold;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 19px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.06);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-sage);
}

/* Testimonials Slider */
.testimonials-slider {
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  color: white;
  padding: 4rem 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin: 0 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(44, 62, 80, 0.05);
}

.faq-accordion .accordion-header button {
  background: var(--light-cream);
  color: var(--primary-navy);
  font-weight: 600;
  border: none;
  padding: 1.25rem 1.5rem;
}

.faq-accordion .accordion-body {
  background: white;
  color: var(--primary-navy);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(37, 54, 65, 0.10);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(30, 52, 64, 0.10);
  margin-top: 2rem;
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(246, 95, 95, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-coral), var(--dark-coral));
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-coral), var(--primary-coral));
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(237, 135, 126, 0.30);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-coral);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(44, 62, 80, 0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Price Plans */
.price-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-plan {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(44, 62, 80, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.price-plan:hover {
  transform: translateY(-10px);
}

.price-plan.featured {
  border: 3px solid var(--primary-coral);
  transform: scale(1.05);
}

.price-plan .price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.06);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-coral), var(--dark-coral));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.60rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--light-cream);
  margin-top: 76px; /* Account for fixed navbar */
}

.breadcrumb-nav img {
  max-height: 30px;
  width: auto;
}

/* Responsive Design */
@media (max-width: 7613px) {
  :root {
    --fs-h1: 1.75rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1.25rem;
  }
  
  .hero-shape {
    display: none;
  }
  
  .services-grid,
  .team-grid,
  .gallery-grid,
  .blog-grid,
  .price-plans,
  .features-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
}

/* Additional Page Styles */
.page-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--light-sage);
}

.page-section:first-child {
  margin-top: 76px; /* Account for fixed navbar */
}

.page-section:last-child {
  border-bottom: none;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--light-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-h2);
  color: var(--primary-navy);
  text-align: center;
}

/* Utility Classes */
.text-primary { color: var(--primary-coral) !important; }
.text-secondary { color: var(--primary-sage) !important; }
.bg-primary { background-color: var(--primary-coral) !important; }
.bg-secondary { background-color: var(--primary-sage) !important; }

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-sage), var(--light-sage));
}

.card-shadow {
  box-shadow: 0 8px 25px rgba(30, 48, 66, 0.10);
} 


/* 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;
    }
}
