/* ===== UPCYCLED GLASS PRODUCTS - MAIN STYLES ===== */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  /* Primary Colors */
  --color-sage-green: #9CCEA7;
  --color-dusty-blue: #7FB3D5;
  --color-warm-cream: #F5F1E8;
  --color-soft-coral: #F2A490;
  --color-lavender-gray: #C8BFD4;
  
  /* Light/Dark Shades */
  --color-sage-light: #B8E6C1;
  --color-sage-dark: #7BA685;
  --color-blue-light: #A3C9E2;
  --color-blue-dark: #5B8FB8;
  --color-cream-light: #FDFCF7;
  --color-cream-dark: #E8DFD1;
  --color-coral-light: #F7C0AD;
  --color-coral-dark: #E8856B;
  --color-gray-light: #DDD6E3;
  --color-gray-dark: #A399B0;
  
  /* 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;
}

/* Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background-color: var(--color-warm-cream);
    overflow-x: hidden;
}

h1 { font-size: var(--font-size-h1); }
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-lg);
  font-weight: 600;
  color: var(--color-sage-dark);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Section Spacing */
section {
  padding: var(--section-padding);
}

/* Header */
#header {
  background-color: var(--color-warm-cream);
  border-bottom: 1px solid var(--color-sage-light);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-dusty-blue) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero-shape {
  position: absolute;
  background-color: var(--color-warm-cream);
  opacity: 0.1;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

/* About Section */
#about {
  background-color: var(--color-cream-light);
}

.feature-card {
  background-color: white;
  border: 1px solid var(--color-sage-light);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services Section */
#services {
  background-color: var(--color-dusty-blue);
  color: white;
}

.service-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  color: #333;
  border: 2px solid var(--color-sage-light);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: bold;
  color: var(--color-sage-dark);
}

/* Features Section */
#features {
  background-color: var(--color-lavender-gray);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--color-warm-cream);
}

.price-card {
  background-color: white;
  border: 2px solid var(--color-dusty-blue);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
}

.price-card.featured {
  border-color: var(--color-sage-dark);
  transform: scale(1.05);
}

/* Team Section */
#team {
  background-color: var(--color-sage-light);
}

.team-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--color-sage-green);
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-sage-green);
}

/* Reviews Section */
#reviews {
  background-color: var(--color-cream-light);
}

.review-card {
  background-color: white;
  border-left: 4px solid var(--color-soft-coral);
  padding: 2rem;
  border-radius: 0.5rem;
  height: 100%;
}

/* Case Studies Section */
#casestudy {
  background-color: var(--color-dusty-blue);
  color: white;
}

.case-card {
  background-color: white;
  color: #333;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
}

/* Process Section */
#process {
  background-color: var(--color-lavender-gray);
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-sage-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--font-size-lg);
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background-color: var(--color-warm-cream);
}

.timeline-item {
  padding: 2rem;
  background-color: white;
  border-left: 4px solid var(--color-dusty-blue);
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

/* Career Section */
#career {
  background-color: var(--color-soft-coral);
  color: white;
}

.career-card {
  background-color: white;
  color: #333;
  padding: 2rem;
  border-radius: 0.75rem;
  height: 100%;
}

/* Core Info Section */
#coreinfo {
  background-color: var(--color-sage-light);
}

.info-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--color-sage-green);
}

/* Contact Section */
#contacts {
  background-color: var(--color-dusty-blue);
  color: white;
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 1rem;
  color: #333;
}

/* Blog Section */
#blog {
  background-color: var(--color-cream-light);
}

.blog-card {
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--color-sage-light);
}

/* FAQ Section */
#faq {
  background-color: var(--color-lavender-gray);
}

.faq-card {
  background-color: white;
  padding: 2rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-light);
}

.faq-question {
  font-weight: bold;
  color: var(--color-sage-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  color: #666;
}

/* Gallery Section */
#gallery {
  background-color: var(--color-warm-cream);
}

.gallery-item {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background-color: var(--color-sage-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--color-sage-light);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--color-sage-light);
}

#site-copyright {
  text-align: center;
  border-top: 1px solid var(--color-sage-green);
  padding-top: 1rem;
  margin-top: 2rem;
  opacity: 0.8;
}

/* Buttons */
.btn-primary {
  background-color: var(--color-sage-green);
  border-color: var(--color-sage-green);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
}

.btn-outline-light {
  border-color: white;
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--color-sage-dark);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Form Styles */
.form-control {
  border: 2px solid var(--color-sage-light);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--color-sage-green);
  box-shadow: 0 0 0 0.25rem rgba(156, 206, 167, 0.25);
}

/* Utilities */
.text-sage { color: var(--color-sage-dark); }
.text-blue { color: var(--color-blue-dark); }
.text-coral { color: var(--color-coral-dark); }

.bg-sage { background-color: var(--color-sage-green); }
.bg-blue { background-color: var(--color-dusty-blue); }
.bg-cream { background-color: var(--color-warm-cream); } 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
