/* ================================
   WoodCraft Upcycle - Main CSS
   ================================ */

/* Color Palette Variables */
:root {
    /* Primary Colors */
    --wood-brown: #8B5A3C;
    --sage-green: #8FBC8F;
    --cream-white: #FFF8DC;
    --slate-gray: #708090;
    --terracotta: #CD853F;
    
    /* Light Shades */
    --wood-brown-light: #A67C52;
    --sage-green-light: #B5D3B5;
    --cream-white-light: #FFFEF2;
    --slate-gray-light: #9DB0C4;
    --terracotta-light: #E6B366;
    
    /* Dark Shades */
    --wood-brown-dark: #654228;
    --sage-green-dark: #6B8F6B;
    --cream-white-dark: #E6DFC4;
    --slate-gray-dark: #4A5A6B;
    --terracotta-dark: #9A5F2B;
    
    /* System Colors */
    --primary: var(--wood-brown);
    --secondary: var(--sage-green);
    --accent: var(--terracotta);
    --background: var(--cream-white);
    --text-primary: var(--slate-gray-dark);
    --text-secondary: var(--wood-brown-dark);
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --element-margin: 20px;
    --card-padding: 30px;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--background);
    overflow-x: hidden;
}

/* Conservative Typography */
h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

/* Utility Classes */
.section-padding {
    padding: var(--section-padding);
}

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

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

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Header Styles */
.navbar {
    background-color: rgba(255, 248, 220, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

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

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--wood-brown-dark);
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.6rem;
    color: var(--sage-green);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Decorative Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background-color: var(--sage-green-light);
    border-radius: 50%;
    opacity: 0.3;
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    background-color: var(--terracotta-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.3;
}

/* Section Styles */
section {
    position: relative;
}

.bg-light {
    background-color: var(--cream-white-light);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: var(--card-padding);
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    color: var(--wood-brown);
    margin-bottom: 0.8rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content ul li {
    padding: 0.3rem 0;
    color: var(--text-primary);
}

.service-content ul li:before {
    content: "✓";
    color: var(--sage-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--terracotta);
    text-align: center;
    margin-top: 1rem;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

/* Price Cards */
.price-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price-card h4 {
    color: var(--wood-brown);
    margin-bottom: 1rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    color: var(--text-primary);
}

.price-card ul li:before {
    content: "✓";
    color: var(--sage-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price-card .price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-top: 1rem;
}

/* Team Members */
.team-member {
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-member h4 {
    color: var(--wood-brown);
    margin: 1rem 0 0.5rem 0;
    padding: 0 1rem;
}

.team-member p {
    color: var(--sage-green);
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

/* Review Cards */
.review-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.review-stars {
    color: var(--terracotta);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.review-card h5 {
    color: var(--wood-brown);
    font-weight: 600;
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.case-study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-content {
    padding: 1.5rem;
}

.case-content h4 {
    color: var(--wood-brown);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--sage-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem auto;
}

.process-step h4 {
    color: var(--wood-brown);
}

/* Timeline Items */
.timeline-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.timeline-item h4 {
    color: var(--wood-brown);
}

/* Career Cards */
.career-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.career-icon {
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.career-card h4 {
    color: var(--wood-brown);
}

.career-type {
    background-color: var(--terracotta);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Info Cards */
.info-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--wood-brown);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    color: var(--wood-brown);
}

.read-more {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    color: var(--sage-green-dark);
}

/* FAQ Cards */
.faq-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.faq-card h4 {
    color: var(--wood-brown);
    margin-bottom: 0.8rem;
}

.faq-card p {
    color: var(--text-primary);
    margin: 0;
}

/* Gallery */
.gallery-img {
    border-radius: 5px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.form-control:focus {
    border-color: var(--sage-green);
    box-shadow: 0 0 0 0.2rem rgba(143, 188, 143, 0.25);
}

.form-check-input:checked {
    background-color: var(--sage-green);
    border-color: var(--sage-green);
}

/* Contact Info */
.contact-info {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-item i {
    color: var(--sage-green);
    margin-right: 0.8rem;
    width: 20px;
}

.services-list {
    background: var(--cream-white-light);
    border-radius: 10px;
    padding: 1.5rem;
}

.services-list h4 {
    color: var(--wood-brown);
    margin-bottom: 1rem;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list ul li {
    padding: 0.3rem 0;
    color: var(--text-primary);
}

.services-list ul li:before {
    content: "• ";
    color: var(--sage-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Footer */
.footer-section {
    background-color: var(--slate-gray-dark);
    color: var(--cream-white);
    padding: 3rem 0 1rem 0;
}

.footer-brand h3 {
    color: var(--cream-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--cream-white-dark);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--cream-white);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--cream-white-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--cream-white);
}

.footer-contact p {
    color: var(--cream-white-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--sage-green);
    width: 15px;
}

.footer-hours h4 {
    color: var(--cream-white);
    margin-bottom: 1rem;
}

.footer-hours p {
    color: var(--cream-white-dark);
    margin-bottom: 0.3rem;
}

.footer-divider {
    border-color: var(--slate-gray);
    margin: 2rem 0 1rem 0;
}

.footer-bottom p {
    color: var(--cream-white-dark);
    margin-bottom: 0.5rem;
}

.footer-bottom small {
    color: var(--cream-white-dark);
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 120px 0 20px 0;
    background-color: var(--cream-white-light);
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item img {
    opacity: 0.7;
}

/* Additional Page Specific Styles */

/* Material Cards */
.material-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.material-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.material-card h4 {
    color: var(--wood-brown);
    padding: 1rem 1rem 0.5rem 1rem;
    margin: 0;
}

.material-card p {
    color: var(--text-primary);
    padding: 0 1rem 1rem 1rem;
    margin: 0;
    font-size: 0.9rem;
}

/* Process Cards */
.process-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.process-icon {
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.process-card h4 {
    color: var(--wood-brown);
}

/* Prep Cards */
.prep-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.prep-icon {
    font-size: 2.5rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.prep-card h4 {
    color: var(--wood-brown);
}

/* Quality Cards */
.quality-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.quality-icon {
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.quality-card h4 {
    color: var(--wood-brown);
}

/* Impact Cards */
.impact-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.impact-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.impact-card h4 {
    color: var(--wood-brown);
}

/* Additional Page 2 Styles */

/* Project Cards */
.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.project-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.project-card h4 {
    color: var(--wood-brown);
    padding: 1rem 1rem 0.5rem 1rem;
    margin: 0;
}

.project-card p {
    color: var(--text-primary);
    padding: 0 1rem 1rem 1rem;
    margin: 0;
    font-size: 0.9rem;
}

/* Design Steps */
.design-step {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.design-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--sage-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--sage-green-dark);
}

.design-step h4 {
    color: var(--wood-brown);
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 200px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(139, 90, 60, 0.9);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.portfolio-overlay p {
    color: white;
    margin: 0;
    font-size: 0.85rem;
}

/* Testimonial Cards */
.testimonial-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem auto;
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card h4 {
    color: var(--wood-brown);
    font-size: 1rem;
}

.testimonial-card p {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Planning Cards */
.planning-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.planning-icon {
    font-size: 2.5rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.planning-card h4 {
    color: var(--wood-brown);
}

/* Accessibility - Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
    
    .hero-shapes {
        display: none;
    }
}



/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

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

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

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

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

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

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

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
