/* Upcycled Textile Art Gallery - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-sage: #9CAF88;
  --primary-terracotta: #D4A574;
  --primary-dusty-blue: #8BB5C7;
  --primary-warm-cream: #F4F1E8;
  --primary-soft-coral: #E8A598;
  
  /* Light/Dark Shades */
  --sage-light: #B8C5A6;
  --sage-dark: #7A8F6B;
  --terracotta-light: #E6C199;
  --terracotta-dark: #B8864F;
  --dusty-blue-light: #A9C7D5;
  --dusty-blue-dark: #6B9BAF;
  --cream-light: #FAFAF7;
  --cream-dark: #E8E4D8;
  --coral-light: #F0BDB3;
  --coral-dark: #D18A7A;
}

/* Base Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--sage-dark);
  background-color: var(--cream-light);
    overflow-x: hidden;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--terracotta-dark);
  margin-bottom: 0.5rem;
}

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

/* Header */
#header {
  background-color: var(--warm-cream);
  box-shadow: 0 2px 10px rgba(122, 143, 107, 0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--sage-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

.hero-decorative-shape {
  position: absolute;
  background: var(--dusty-blue-light);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  background: var(--coral-light);
}

/* About Section */
#about {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(122, 143, 107, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--dusty-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--dusty-blue-dark);
  font-size: 1.5rem;
}

/* Services Section */
#services {
  background-color: var(--warm-cream);
  padding: 5rem 0;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-image {
  height: 200px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 0.9rem;
}

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

/* Features Section */
#features {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

/* Price Plan Section */
#priceplan {
  background-color: var(--warm-cream);
  padding: 5rem 0;
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(122, 143, 107, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 3px solid var(--terracotta-light);
  transform: scale(1.05);
}

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

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

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

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
#team {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--dusty-blue-light);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dusty-blue-dark);
  font-size: 0.9rem;
}

/* Reviews Section */
#reviews {
  background-color: var(--warm-cream);
  padding: 5rem 0;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--sage-dark);
}

.review-author {
  font-weight: 600;
  color: var(--terracotta-dark);
}

/* Case Study Section */
#casestudy {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

/* Process Section */
#process {
  background-color: var(--warm-cream);
  padding: 5rem 0;
}

.process-step {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  position: relative;
  height: 100%;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--terracotta-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--terracotta-dark);
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

/* Timeline Section */
#timeline {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.timeline-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--dusty-blue);
  border-radius: 50%;
}

/* Career Section */
#career {
  background-color: var(--warm-cream);
  padding: 5rem 0;
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.career-role {
  color: var(--terracotta-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Core Info Section */
#coreinfo {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.coreinfo-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

/* Contact Section */
#contact {
  background-color: var(--warm-cream);
  padding: 5rem 0;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(122, 143, 107, 0.1);
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  padding: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--dusty-blue);
  box-shadow: 0 0 0 0.2rem rgba(139, 181, 199, 0.25);
}

.btn-primary {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
}

.contact-info {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-item i {
  width: 40px;
  height: 40px;
  background: var(--dusty-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--dusty-blue-dark);
}

/* Blog Section */
#blog {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.blog-image {
  height: 200px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 0.9rem;
}

.blog-content {
  padding: 2rem;
}

.blog-link {
  color: var(--terracotta-dark);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

/* FAQ Section */
#faq {
  background-color: var(--warm-cream);
  padding: 5rem 0;
}

.faq-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--sage-dark);
  line-height: 1.6;
}

/* Gallery Section */
#gallery {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

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

.gallery-item {
  aspect-ratio: 1;
  background: var(--sage-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  overflow: hidden;
}

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

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

.footer-section h5 {
  color: var(--warm-cream);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-link {
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  border-top: 1px solid var(--sage);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Utility Classes */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--terracotta-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.text-center {
  text-align: center;
}

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

/* Additional Pages Styles */
.additional-section {
  padding: 4rem 0;
}

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

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

.additional-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(122, 143, 107, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

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


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

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

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

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

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

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

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
