/* Main CSS for Recycled-Cardboard Eco-Signage Studio */

:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-green: #326c2f;
  --primary-green-light: #8ec68a;
  --primary-green-dark: #112510;
  
  --primary-brown: #995522;
  --primary-brown-light: #efd282;
  --primary-brown-dark: #4f2e05;
  
  --primary-cream: #deddd8;
  --primary-cream-light: #fdfdf8;
  --primary-cream-dark: #e8ebc7;
  
  --primary-orange: #f37b00;
  --primary-orange-light: #ffab39;
  --primary-orange-dark: #e46d00;
  
  --primary-sage: #8fc7f0;
  --primary-sage-light: #b9e7f0;
  --primary-sage-dark: #5fa4d3;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-padding: 1rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--primary-brown-dark);
  background-color: var(--primary-cream);
  font-size: 16px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
}

h1 { font-size: 2.56rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.60rem; }
h4 { font-size: 1.36rem; }
h5 { font-size: 1.16rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--primary-brown);
  font-size: 1rem;
}

/* Links */
a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-green-dark);
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-cream-light) 100%);
  box-shadow: 0 9px 17px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--primary-cream);
  box-shadow: 0 11px 20px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.56rem;
  font-weight: 700;
  color: var(--primary-green-dark);
}

.navbar-nav .nav-link {
  color: var(--primary-brown);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
  background-color: var(--primary-green-light);
  border-radius: 8px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-sage-light) 0%, var(--primary-cream) 50%, var(--primary-orange-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../COR_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.hero-content {
  z-index: 1;
    padding-top: 277px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.57rem;
  color: var(--primary-green-dark);
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  color: var(--primary-brown);
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-green);
  font-size: 1.14rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--primary-brown);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: linear-gradient(135deg, var(--primary-cream-light) 0%, var(--primary-sage-light) 100%);
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 7px 19px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--primary-cream);
}

.service-card {
  background: white;
  border-radius: 19px;
  padding: 2rem;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  text-align: center;
  border: 8px solid var(--primary-green-light);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--primary-brown);
  border-bottom: 1px solid var(--primary-cream);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  background: linear-gradient(135deg, var(--primary-brown-light) 0%, var(--primary-cream) 100%);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--primary-green-light);
}

.team-member-name {
  font-size: 1.37rem;
  color: var(--primary-green-dark);
  margin-bottom: 0.57rem;
}

.team-member-role {
  color: var(--primary-brown);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background: var(--primary-cream-light);
}

.review-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-orange);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--primary-brown);
}

.review-author {
  font-weight: 700;
  color: var(--primary-green-dark);
}

/* Price Plan Section */
.priceplan {
  background: linear-gradient(135deg, var(--primary-sage-light) 0%, var(--primary-cream) 100%);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  text-align: center;
  border: 2px solid var(--primary-green-light);
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-orange);
}

.price-card-price {
  font-size: 2.65rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin: 1rem 0;
}

/* FAQ Section */
.faq {
  background: var(--primary-cream);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  background: var(--primary-green-light);
  color: var(--primary-green-dark);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
  background: var(--primary-green);
  color: white;
}

.faq-answer {
  padding: 0;
  color: var(--primary-brown);
  background: white;
  display: none;
  transition: all 0.3s ease;
}

.faq-answer.show {
  padding: 1.5rem;
  display: block;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, var(--primary-brown-light) 0%, var(--primary-cream-light) 100%);
}

/* Gallery uses Bootstrap grid - no custom grid needed */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact {
  background: var(--primary-cream-light);
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-green-light);
}

.form-group {
  margin-bottom: 1.66rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.59rem;
  color: var(--primary-green-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--primary-cream-dark);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  border: none;
  padding: 1rem 2rem;
  color: white;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-brown-dark) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-cream);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: var(--primary-cream-light);
  margin-bottom: 0.57rem;
}

.footer a:hover {
  color: var(--primary-orange-light);
}

#site-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary-cream-light);
}

/* Blog Section */
.blog {
  background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-cream) 100%);
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-green-dark);
}

.blog-card p {
  color: var(--primary-brown);
  margin-bottom: 1rem;
}

.blog-card a {
  color: var(--primary-orange);
  font-weight: 500;
  text-decoration: none;
}

.blog-card a:hover {
  text-decoration: underline;
}

/* Case Studies */
.casestudy {
  background: var(--primary-sage-light);
}

.casestudy-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-orange);
}

/* Process Section */
.process {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-brown-light) 100%);
}

.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.57rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline {
  background: var(--primary-cream-light);
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
  border-left: 4px solid var(--primary-green);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 1rem;
  width: 12px;
  height: 12px;
  background: var(--primary-orange);
  border-radius: 50%;
}

/* Career Section */
.career {
  background: linear-gradient(135deg, var(--primary-sage-light) 0%, var(--primary-cream) 100%);
}

.career-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border: 2px solid var(--primary-green-light);
}

/* Core Info */
.coreinfo {
  background: var(--primary-brown-light);
}

/* Core info uses Bootstrap grid - no custom grid needed */

.coreinfo-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--primary-cream-light);
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 5px;
}

.breadcrumb img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; } 


/* 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;
    }
}
