/* Upcycled Furniture Workshop - Main Styles */
/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  --primary-sage: #8fbc8f;
  --primary-clay: #cd853f;
  --primary-cream: #f5f5dc;
  --primary-rust: #b22222;
  --primary-charcoal: #36454f;
  
  /* Light Shades */
  --light-sage: #b8d4b8;
  --light-clay: #e6b366;
  --light-cream: #fafaf2;
  --light-rust: #d64545;
  --light-charcoal: #5a6b75;
  
  /* Dark Shades */
  --dark-sage: #6b8e6b;
  --dark-clay: #a0612e;
  --dark-cream: #e8e8cc;
  --dark-rust: #8b1a1a;
  --dark-charcoal: #252f35;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-sage), var(--primary-clay));
  --gradient-secondary: linear-gradient(135deg, var(--primary-cream), var(--light-sage));
  --gradient-accent: linear-gradient(135deg, var(--primary-rust), var(--primary-clay));
  --gradient-hero: linear-gradient(135deg, var(--primary-charcoal), var(--dark-sage));
  
  /* Typography */
  --font-size-base: 0.95rem;
  --font-size-sm: 0.85rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-charcoal);
}

h1 { font-size: var(--font-size-xxl); }
h2 { font-size: var(--font-size-xl); }
h3 { font-size: var(--font-size-lg); }
h4 { font-size: var(--font-size-base); }
h5 { font-size: var(--font-size-sm); }
h6 { font-size: var(--font-size-sm); }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--dark-charcoal);
}

a {
  text-decoration: none;
  color: var(--primary-rust);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-rust);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-primary { background: var(--gradient-primary); }
.bg-secondary { background: var(--gradient-secondary); }
.bg-accent { background: var(--gradient-accent); }
.bg-hero { background: var(--gradient-hero); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

/* Header */
.navbar {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-cream) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-link {
  color: var(--primary-cream) !important;
  font-weight: 500;
  margin: 0 var(--spacing-xs);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-cream) !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  color: var(--primary-cream);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Main Content */
main {
  padding-top: 80px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  background-color: #8fbc8f;
  padding: 24px;
  position: relative;
  z-index: 2;
  color: var(--primary-cream);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.hero-description {
  font-size: var(--font-size-base);
  margin-bottom: var(--spacing-xl);
  opacity: 0.8;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Decorative Elements */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-secondary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: -2s;
}

.blob-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 5%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Sections */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-title {
  font-size: var(--font-size-xl);
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-charcoal);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--dark-charcoal);
  opacity: 0.8;
}

.section-description {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--dark-charcoal);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--gradient-secondary);
}

.feature-card {
  background: var(--primary-cream);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-rust);
  margin-bottom: var(--spacing-sm);
}

.feature-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-charcoal);
}

.feature-description {
  color: var(--dark-charcoal);
  font-size: var(--font-size-sm);
}

/* Services Section */
.services-section {
  background: var(--primary-cream);
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.service-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-charcoal);
}

.service-description {
  color: var(--dark-charcoal);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-sm);
}

.service-features {
  list-style: none;
  margin-bottom: var(--spacing-md);
  padding: 0;
}

.service-features li {
  padding: var(--spacing-xs) 0;
  color: var(--dark-charcoal);
  font-size: var(--font-size-sm);
}

.service-features li:before {
  content: '✓';
  color: var(--primary-sage);
  font-weight: bold;
  margin-right: var(--spacing-xs);
}

.service-price {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-rust);
  background: var(--gradient-secondary);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  display: inline-block;
}

/* Team Section */
.team-section {
  background: var(--gradient-secondary);
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--spacing-md);
  border: 4px solid var(--primary-sage);
}

.team-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-charcoal);
}

.team-role {
  color: var(--primary-rust);
  font-weight: 500;
  font-size: var(--font-size-sm);
}

/* Reviews Section */
.reviews-section {
  background: var(--primary-cream);
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--spacing-md);
  font-size: 4rem;
  color: var(--primary-sage);
  opacity: 0.3;
}

.review-text {
  margin-bottom: var(--spacing-md);
  font-style: italic;
  color: var(--dark-charcoal);
}

.review-author {
  font-weight: 600;
  color: var(--primary-charcoal);
  text-align: right;
}

/* FAQ Section */
.faq-section {
  background: var(--gradient-secondary);
}

.faq-card {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.faq-question {
  background: var(--gradient-primary);
  color: var(--primary-cream);
  padding: var(--spacing-md);
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gradient-accent);
}

.faq-answer {
  padding: var(--spacing-md);
  color: var(--dark-charcoal);
  background: white;
  border-top: 1px solid var(--light-sage);
}

/* Gallery Section */
.gallery-section {
  background: var(--primary-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Contact Section */
.contact-section {
  background: var(--gradient-accent);
  color: var(--primary-cream);
}

.contact-form {
  background: rgb(117, 117, 117);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-xl);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-charcoal);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid var(--light-sage);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 3px rgba(143, 188, 143, 0.1);
}

.form-control.textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.form-checkbox input {
  margin-right: var(--spacing-xs);
}

.submit-btn {
  background: var(--gradient-accent);
  color: white;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-info {
  text-align: center;
  color: var(--primary-cream);
}

.contact-info p {
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-lg);
}

.contact-info i {
  margin-right: var(--spacing-sm);
  color: var(--primary-sage);
}

/* Footer */
.footer {
  background: var(--primary-clay);
  color: var(--primary-cream);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: var(--primary-sage);
  margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section a {
  color: var(--light-cream);
  font-size: var(--font-size-sm);
}

.footer-section a:hover {
  color: var(--primary-sage);
}

.footer-bottom {
  border-top: 1px solid var(--dark-sage);
  padding-top: var(--spacing-md);
  text-align: center;
}

.footer-bottom small {
  color: var(--light-cream);
  font-size: var(--font-size-sm);
}

/* Additional Page Styles */
.page-section {
  padding: var(--spacing-xl) 0;
}

.page-section:nth-child(even) {
  background: var(--gradient-secondary);
}

.page-section:nth-child(odd) {
  background: var(--primary-cream);
}

.element-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.element-card:hover {
  transform: translateY(-3px);
}

.element-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-charcoal);
}

.element-description {
  color: var(--dark-charcoal);
  font-size: var(--font-size-sm);
}

/* Space Page */
#space {
  min-height: 60vh;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin: var(--spacing-xl) 0;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: var(--spacing-md) 0;
  margin-bottom: var(--spacing-lg);
}

.breadcrumb img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

/* Blog Section */
.blog-section {
  background: var(--primary-cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: var(--spacing-lg);
}

.blog-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-charcoal);
}

.blog-excerpt {
  color: var(--dark-charcoal);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-sm);
}

.blog-link {
  color: var(--primary-rust);
  font-weight: 500;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--dark-rust);
}

/* Additional Responsive Utilities */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: var(--font-size-lg);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-section {
    min-height: 80vh;
  }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
