/* Vintage Toy Photography Prints - Main Styles */

:root {
  /* Primary Color Palette - Vintage Toy Theme */
  --primary-cream: #f5f1e8;
  --primary-brown: #8b4513;
  --primary-red: #d2691e;
  --primary-green: #556b2f;
  --primary-blue: #4682b4;
  
  /* Light/Dark Variations */
  --light-cream: #faf8f3;
  --dark-brown: #654321;
  --light-red: #daa520;
  --dark-green: #2f4f2f;
  --light-blue: #87ceeb;
  --dark-blue: #2f4f4f;
  
  /* Typography */
  --font-primary: 'Georgia', serif;
  --font-secondary: 'Helvetica', sans-serif;
}

/* Base Typography */
body {
  font-family: var(--font-secondary);
  color: var(--dark-brown);
  background-color: var(--light-cream);
  line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--primary-brown);
  font-weight: 600;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-brown);
  font-family: var(--font-primary);
  font-weight: bold;
}

/* Header Styles */
#header {
  background-color: var(--primary-cream);
  border-bottom: 2px solid var(--primary-brown);
  box-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
}

.navbar-nav .nav-link {
  color: var(--dark-brown);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-red);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
}

.hero-decorative {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background-color: var(--light-red);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background-color: var(--primary-green);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.8;
}

/* About Section */
#about {
  padding: 80px 0;
  background-color: var(--light-cream);
}

.about-feature {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--primary-cream);
  border-radius: 10px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 20px;
}

/* Services Section */
#services {
  padding: 80px 0;
  background-color: var(--primary-cream);
}

.service-card {
  background-color: var(--light-cream);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  border: 2px solid var(--primary-brown);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-red);
  margin: 20px 0;
}

/* Features Section */
#features {
  padding: 80px 0;
  background-color: var(--light-cream);
}

.feature-item {
  padding: 40px 30px;
  background-color: var(--primary-cream);
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-green);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 15px;
}

/* Price Plans Section */
#priceplan {
  padding: 80px 0;
  background-color: var(--primary-cream);
}

.price-card {
  background-color: var(--light-cream);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 3px solid var(--primary-brown);
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
  border-color: var(--primary-red);
}

.price-card .price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-red);
  margin: 20px 0;
}

/* Team Section */
#team {
  padding: 80px 0;
  background-color: var(--light-cream);
}

.team-member {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--primary-cream);
  border-radius: 15px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-brown);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reviews Section */
#reviews {
  padding: 80px 0;
  background-color: var(--primary-cream);
}

.review-card {
  background-color: var(--light-cream);
  padding: 30px 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-blue);
  height: 100%;
}

.review-author {
  font-weight: bold;
  color: var(--primary-brown);
  margin-top: 15px;
}

/* Case Study Section */
#casestudy {
  padding: 80px 0;
  background-color: var(--light-cream);
}

.case-study-item {
  background-color: var(--primary-cream);
  padding: 40px 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 2px solid var(--primary-green);
}

/* Process Section */
#process {
  padding: 80px 0;
  background-color: var(--primary-cream);
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--light-cream);
  border-radius: 15px;
  margin-bottom: 30px;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

/* Timeline Section */
#timeline {
  padding: 80px 0;
  background-color: var(--light-cream);
}

.timeline-item {
  padding: 30px;
  background-color: var(--primary-cream);
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-blue);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--primary-blue);
  border-radius: 50%;
}

/* Career Section */
#career {
  padding: 80px 0;
  background-color: var(--primary-cream);
}

.career-item {
  background-color: var(--light-cream);
  padding: 30px 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 2px solid var(--primary-brown);
}

.career-role {
  color: var(--primary-red);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Core Info Section */
#coreinfo {
  padding: 80px 0;
  background-color: var(--light-cream);
}

.coreinfo-item {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--primary-cream);
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid var(--primary-brown);
}

.coreinfo-item i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 15px;
}

/* Contact Section */
#contacts {
  padding: 80px 0;
  background-color: var(--primary-cream);
}

.contact-form {
  background-color: var(--light-cream);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid var(--primary-brown);
}

.form-control {
  border: 2px solid var(--primary-brown);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(210, 105, 30, 0.25);
}

.btn-primary {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--dark-brown);
  border-color: var(--dark-brown);
}

.contact-info {
  background-color: var(--light-cream);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-green);
}

.contact-info i {
  color: var(--primary-green);
  margin-right: 10px;
}

/* Blog Section */
#blog {
  padding: 80px 0;
  background-color: var(--light-cream);
}

.blog-card {
  background-color: var(--primary-cream);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 2px solid var(--primary-brown);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .card-body {
  padding: 25px;
}

.blog-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: bold;
}

.blog-link:hover {
  color: var(--dark-brown);
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background-color: var(--primary-cream);
}

.faq-card {
  background-color: var(--light-cream);
  border: 2px solid var(--primary-brown);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
}

.faq-question {
  color: var(--primary-brown);
  font-weight: bold;
  margin-bottom: 15px;
}

.faq-answer {
  color: var(--dark-brown);
  line-height: 1.6;
}

/* Gallery Section */
#gallery {
  padding: 80px 0;
  background-color: var(--light-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--primary-brown);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
#footer {
  background-color: var(--dark-brown);
  color: var(--light-cream);
  padding: 60px 0 30px;
}

.footer-section h5 {
  color: var(--light-red);
  margin-bottom: 20px;
}

.footer-section a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--light-red);
}

.footer-bottom {
  border-top: 1px solid var(--primary-brown);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background-color: var(--primary-cream);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 30px;
}

.breadcrumb img {
  width: 24px;
  height: 24px;
}

/* Utility Classes */
.section-padding {
  padding: 80px 0;
}

.text-vintage-brown {
  color: var(--primary-brown);
}

.text-vintage-red {
  color: var(--primary-red);
}

.bg-vintage-cream {
  background-color: var(--primary-cream);
}

.bg-light-cream {
  background-color: var(--light-cream);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
