/* Vintage Toy Photography Prints - Main CSS */

:root {
  /* Primary Color Palette - Vintage Toy Theme */
  --primary-warm: #d4a574;
  --primary-warm-light: #e6c199;
  --primary-warm-dark: #b8904f;
  
  --primary-sage: #9db5a1;
  --primary-sage-light: #b8c9bb;
  --primary-sage-dark: #829187;
  
  --primary-cream: #f5f1e8;
  --primary-cream-light: #faf8f3;
  --primary-cream-dark: #e8e0d3;
  
  --primary-terracotta: #c17a5b;
  --primary-terracotta-light: #d49780;
  --primary-terracotta-dark: #a66548;
  
  --primary-navy: #4a5568;
  --primary-navy-light: #718096;
  --primary-navy-dark: #2d3748;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
}

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

/* Conservative Typography */
h1 { font-size: var(--font-size-h1) !important; }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-navy) !important;
}

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

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

/* Header Styles */
#header {
  background-color: var(--primary-cream);
  border-bottom: 1px solid var(--primary-sage-light);
  padding: 1rem 0;
}

.navbar {
  padding: 0.75rem 0;
}

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

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

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

.hero-content {
  z-index: 2;
    padding-top: 175px;
}

.hero-image {
  position: relative;
}

.hero-decorative {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  background-color: var(--primary-warm-light);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 1;
}

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

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

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

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

/* About Section */
#about {
  background-color: var(--primary-cream-light);
}

.feature-card {
  background-color: white;
  border: none;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-warm-dark);
}

/* Services Section */
#services {
  background-color: white;
}

.service-card {
  background-color: var(--primary-cream);
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.5rem);
}

.service-image {
  height: 12rem;
  background-color: var(--primary-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-sage-dark);
}

.service-body {
  padding: 1.5rem;
}

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

/* Features Section */
#features {
  background-color: var(--primary-sage-light);
}

/* Price Plan Section */
#priceplan {
  background-color: white;
}

.price-card {
  background-color: var(--primary-cream);
  border: 2px solid var(--primary-sage-light);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-warm);
  transform: translateY(-0.25rem);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--primary-sage-light);
}

/* Team Section */
#team {
  background-color: var(--primary-cream-light);
}

.team-card {
  background-color: white;
  border: none;
  border-radius: 1rem;
  text-align: center;
  padding: 1.5rem;
  height: 100%;
}

.team-photo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: var(--primary-sage-light);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-sage-dark);
}

/* Reviews Section */
#reviews {
  background-color: white;
}

.review-card {
  background-color: var(--primary-cream);
  border: none;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--primary-navy-light);
}

.review-author {
  font-weight: 600;
  color: var(--primary-navy);
}

/* Case Study Section */
#casestudy {
  background-color: var(--primary-sage-light);
}

.case-card {
  background-color: white;
  border: none;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
}

/* Process Section */
#process {
  background-color: white;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-warm);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
}

/* Timeline Section */
#timeline {
  background-color: var(--primary-cream-light);
}

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

/* Career Section */
#career {
  background-color: white;
}

.career-card {
  background-color: var(--primary-cream);
  border: none;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
}

.career-role {
  color: var(--primary-terracotta);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.info-card {
  background-color: white;
  border: none;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* Blog Section */
#blog {
  background-color: white;
}

.blog-card {
  background-color: var(--primary-cream);
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
}

.blog-image {
  height: 10rem;
  background-color: var(--primary-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-sage-dark);
}

.blog-body {
  padding: 1.5rem;
}

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

.faq-card {
  background-color: white;
  border: none;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--primary-navy-light);
}

/* Gallery Section */
#gallery {
  background-color: white;
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  background-color: var(--primary-sage-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-sage-dark);
  transition: transform 0.3s ease;
}

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

/* Contact Section */
#contact {
  background-color: var(--primary-sage-light);
}

.contact-form {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
}

.form-control {
  border: 2px solid var(--primary-sage-light);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

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

.btn-primary {
  background-color: var(--primary-warm);
  border-color: var(--primary-warm);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-warm-dark);
  border-color: var(--primary-warm-dark);
  transform: translateY(-0.125rem);
}

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

.footer-section {
  margin-bottom: 2rem;
}

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

.footer-link {
  color: var(--primary-cream-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-warm-light);
}

.footer-bottom {
  border-top: 1px solid var(--primary-navy-light);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Utility Classes */
.text-warm { color: var(--primary-warm); }
.text-sage { color: var(--primary-sage); }
.text-terracotta { color: var(--primary-terracotta); }
.bg-warm { background-color: var(--primary-warm); }
.bg-sage { background-color: var(--primary-sage); }
.bg-cream { background-color: var(--primary-cream); }

/* Responsive Adjustments */
@media (max-width: 768px) {
  :root {
    --section-padding: 2rem 0;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
} 


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

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

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

.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;
    }
}
