/* ==========================================================================
   Main CSS for Recycled Paper Notebook Customization Template
   Bootstrap 5 Compatible - No Overrides
   ========================================================================== */

/* Color Palette - 5 Primary Pastel High-Contrast Colors */
:root {
  /* Primary Colors */
  --color-sage: #A8C89A;
  --color-terracotta: #E8A598;
  --color-cream: #F5F1E8;
  --color-slate: #6B7C8C;
  --color-lavender: #C4A9D9;
  
  /* Light Shades */
  --color-sage-light: #D4E5CA;
  --color-terracotta-light: #F2C5B8;
  --color-cream-light: #FDFCF8;
  --color-slate-light: #A8B5C2;
  --color-lavender-light: #E2D1ED;
  
  /* Dark Shades */
  --color-sage-dark: #7A9B6A;
  --color-terracotta-dark: #D67B66;
  --color-cream-dark: #E8DCC8;
  --color-slate-dark: #4A5864;
  --color-lavender-dark: #A482B7;
  
  /* Typography */
  --font-size-base: 0.9rem;
  --font-size-sm: 0.8rem;
  --font-size-lg: 1.1rem;
  --font-size-h1: 1.8rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.3rem;
  --font-size-navbar: 0.85rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --hero-height: 100vh;
}

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

/* Typography - Conservative Sizes */
.navbar-brand {
  font-size: var(--font-size-navbar) !important;
  font-weight: 600;
  color: var(--color-sage-dark);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  color: var(--color-slate-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 500;
  color: var(--color-slate-dark);
  margin-bottom: 1rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--color-slate-dark);
  margin-bottom: 0.75rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header */
.navbar {
  background-color: var(--color-cream);
  border-bottom: 1px solid var(--color-sage-light);
  padding: 0.75rem 0;
}

.navbar-nav .nav-link {
  color: var(--color-slate-dark);
  font-weight: 500;
  font-size: var(--font-size-sm);
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
  color: var(--color-sage-dark);
}

/* Hero Section */
.hero-section {
  min-height: var(--hero-height);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-light) 100%);
  padding: var(--section-padding);
  display: flex;
  align-items: center;
}

.hero-decorative-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--color-sage-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.hero-shape-1 {
  top: 10%;
  right: 15%;
}

.hero-shape-2 {
  bottom: 20%;
  left: 10%;
  background-color: var(--color-lavender-light);
}

/* Section Spacing */
.section {
  padding: var(--section-padding);
}

/* About Section */
.about-section {
  background-color: var(--color-cream);
}

.feature-card {
  background-color: white;
  border: 1px solid var(--color-sage-light);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
  background-color: var(--color-sage-light);
}

.service-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--color-sage);
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-terracotta-dark);
}

/* Features Section */
.features-section {
  background-color: var(--color-lavender-light);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--color-terracotta-light);
}

.priceplan-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.priceplan-popular {
  border: 3px solid var(--color-sage);
}

.priceplan-popular::before {
  content: "Popular";
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: var(--color-sage);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
}

/* Team Section */
.team-section {
  background-color: var(--color-cream);
}

.team-member {
  text-align: center;
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

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

/* Reviews Section */
.reviews-section {
  background-color: var(--color-slate-light);
}

.review-card {
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  border-left: 4px solid var(--color-sage);
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--color-cream-light);
}

.casestudy-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Process Section */
.process-section {
  background-color: var(--color-lavender-light);
}

.process-step {
  position: relative;
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-sage);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--color-terracotta-light);
}

.timeline-item {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--color-terracotta);
}

/* Career Section */
.career-section {
  background-color: var(--color-cream);
}

.career-position {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  border: 1px solid var(--color-slate-light);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--color-sage-light);
}

.coreinfo-item {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* Contact Section */
.contact-section {
  background-color: var(--color-cream);
}

.contact-form {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-control {
  border: 1px solid var(--color-sage-light);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 0.2rem rgba(168, 200, 154, 0.25);
}

.btn-primary {
  background-color: var(--color-sage);
  border-color: var(--color-sage);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
}

/* Blog Section */
.blog-section {
  background-color: var(--color-lavender-light);
}

.blog-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--color-cream-light);
}

.faq-card {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-slate-light);
}

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

.faq-answer {
  color: var(--color-slate);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--color-cream);
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

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

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

.footer h5 {
  color: var(--color-cream);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: var(--color-sage-light);
}

.footer-bottom {
  border-top: 1px solid var(--color-slate);
  padding-top: 1rem;
  margin-top: 2rem;
}

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

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

/* Additional Page Styles */
.page-section {
  padding: var(--section-padding);
  min-height: 300px;
}

.page-section:nth-child(odd) {
  background-color: var(--color-cream);
}

.page-section:nth-child(even) {
  background-color: var(--color-cream-light);
}

/* Space Page */
#space {
  min-height: 70vh;
  background-color: var(--color-cream-light);
  border: 2px dashed var(--color-sage-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

/* Utilities */
.text-muted-custom {
  color: var(--color-slate);
}

.bg-light-custom {
  background-color: var(--color-cream-light);
}

.border-custom {
  border: 1px solid var(--color-sage-light);
}

/* Icon Styling */
.fa-icon {
  color: var(--color-sage);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.fa-icon-sm {
  color: var(--color-sage);
  font-size: 1.2rem;
  margin-right: 0.5rem;
} 

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


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
