/* 3D-Printed Lamp Design Store - Main Styles */

:root {
  /* 5 Primary Colors + Light/Dark Shades */
  --primary-coral: #FF6B6B;
  --primary-coral-light: #FFB8B8;
  --primary-coral-dark: #E74C3C;
  
  --primary-teal: #4ECDC4;
  --primary-teal-light: #A7E3DE;
  --primary-teal-dark: #2ECC71;
  
  --primary-navy: #2C3E50;
  --primary-navy-light: #5D6D7E;
  --primary-navy-dark: #1B2631;
  
  --primary-amber: #F39C12;
  --primary-amber-light: #F8C471;
  --primary-amber-dark: #D68910;
  
  --primary-lavender: #9B59B6;
  --primary-lavender-light: #D2B4DE;
  --primary-lavender-dark: #7D3C98;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
}

/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--primary-navy);
  background-color: var(--white);
    overflow-x: hidden;
}

/* Typography - Conservative Font Sizes */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-navy);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-navy);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-navy);
}

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

/* Conservative navbar-brand font size */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-coral);
}

/* Header */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--primary-navy);
  font-weight: 500;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-coral-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Section Spacing */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-coral);
  margin-bottom: 20px;
}

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  height: 200px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

.service-content {
  padding: 20px;
}

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

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

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

.price-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

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

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral);
}

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

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

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

.review-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.case-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.process-step {
  text-align: center;
  padding: 20px;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

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

.timeline-item {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.career-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.coreinfo-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}

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

.contact-form {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 40px;
}

.form-control {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.btn-primary {
  background-color: var(--primary-coral);
  border-color: var(--primary-coral);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
}

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

.contact-info {
  background: var(--primary-navy);
  color: var(--white);
  border-radius: 12px;
  padding: 40px;
}

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

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
}

.blog-image {
  height: 200px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

.blog-content {
  padding: 20px;
}

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

.faq-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

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

/* Gallery Section */
.gallery-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.gallery-image {
  height: 250px;
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 60px 0 20px;
}

footer h5 {
  color: var(--primary-coral);
  margin-bottom: 20px;
}

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

footer a:hover {
  color: var(--primary-coral);
}

.footer-bottom {
  border-top: 1px solid var(--primary-navy-light);
  padding-top: 20px;
  margin-top: 40px;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 20px 0;
}

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

/* Space Page */
#space {
  min-height: 80vh;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray);
}

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

/* Utilities */
.text-coral {
  color: var(--primary-coral);
}

.text-teal {
  color: var(--primary-teal);
}

.text-navy {
  color: var(--primary-navy);
}

.text-amber {
  color: var(--primary-amber);
}

.text-lavender {
  color: var(--primary-lavender);
}

.bg-coral {
  background-color: var(--primary-coral);
}

.bg-teal {
  background-color: var(--primary-teal);
}

.bg-navy {
  background-color: var(--primary-navy);
}

.bg-amber {
  background-color: var(--primary-amber);
}

.bg-lavender {
  background-color: var(--primary-lavender);
}


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


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