:root {
    /* Pastel Color Palette - 5 primary colors */
    --primary-cream: #f8f6f0;
    --primary-sage: #a8c09a;
    --primary-terracotta: #d4a574;
    --primary-lavender: #c7b8db;
    --primary-dusty-blue: #9bb5d1;
    
    /* Light and dark variations */
    --cream-light: #fdfcf8;
    --cream-dark: #f0ede5;
    --sage-light: #c1d4b5;
    --sage-dark: #8fa882;
    --terracotta-light: #e2bb94;
    --terracotta-dark: #c48d54;
    --lavender-light: #d9cde8;
    --lavender-dark: #b5a3ce;
    --dusty-blue-light: #b5c9dd;
    --dusty-blue-dark: #829fc5;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-h1: 2.2rem;
    --font-size-h2: 1.8rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.3rem;
    --font-size-h5: 1.1rem;
    --font-size-h6: 1rem;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --element-margin: 1.5rem;
}

/* Base 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(--primary-cream);
    overflow-x: hidden;
}

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

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--terracotta-dark);
    margin-bottom: var(--element-margin);
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 500;
    color: var(--dusty-blue-dark);
    margin-bottom: 1rem;
}

h4, h5, h6 {
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Conservative Navbar Brand Size */
.navbar-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--sage-dark);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
    padding-top: 100px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23a8c09a" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23d4a574" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23c7b8db" opacity="0.1"/></svg>');
    pointer-events: none;
}

/* Section Styling */
section {
    padding: var(--section-padding);
}

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

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.service-card .card-body {
    padding: 2rem;
}

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

.service-card .features {
    color: var(--dusty-blue-dark);
    font-size: var(--font-size-small);
    font-style: italic;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid var(--sage-light);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--sage-dark);
    background-color: var(--sage-light);
}

.pricing-card .price {
    color: var(--terracotta-dark);
    font-weight: 700;
    margin: 1.5rem 0;
}

/* Feature Items */
.feature-card, .feature-item {
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover, .feature-item:hover {
    background-color: var(--cream-light);
    border-radius: 12px;
}

.feature-card i, .feature-item i {
    color: var(--primary-sage);
    transition: color 0.3s ease;
}

.feature-card:hover i, .feature-item:hover i {
    color: var(--sage-dark);
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--lavender-light);
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--lavender-dark);
}

/* Review Cards */
.review-card {
    background-color: var(--lavender-light);
    border-left: 4px solid var(--lavender-dark);
}

.review-card .card-text {
    font-style: italic;
    color: #444;
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-sage), var(--sage-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
    position: relative;
    padding: 1.5rem;
}

.timeline-year {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-terracotta), var(--terracotta-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* FAQ Cards */
.faq-card {
    border-left: 4px solid var(--dusty-blue-light);
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-left-color: var(--dusty-blue-dark);
    background-color: var(--cream-light);
}

/* Gallery */
#gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form .form-control {
    border: 2px solid var(--sage-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--sage-dark);
    box-shadow: 0 0 0 0.2rem rgba(168, 192, 154, 0.25);
}

.contact-info .contact-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--cream-light);
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.contact-info .contact-item:hover {
    background-color: var(--sage-light);
}

.contact-info i {
    color: var(--primary-terracotta);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-sage), var(--sage-dark));
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sage-dark), var(--primary-sage));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Footer */
#footer {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: #f8f9fa;
}

#footer h5 {
    color: var(--sage-light);
    margin-bottom: 1.5rem;
}

#footer a {
    color: #d1d3d4;
    transition: color 0.3s ease;
    text-decoration: none;
}

#footer a:hover {
    color: var(--sage-light);
}

/* Breadcrumbs */
.breadcrumb-nav {
    background-color: var(--cream-light);
    border-bottom: 1px solid var(--sage-light);
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
}

/* Animation Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Additional Page Styling */
.info-item, .technique-card, .problem-solution, .recipe-card, 
.equipment-item, .flour-card, .technique-item, .storage-item {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover, .problem-solution:hover, .equipment-item:hover,
.technique-item:hover, .storage-item:hover {
    background-color: var(--cream-light);
    border-radius: 12px;
}

.info-item i, .problem-solution i, .equipment-item i,
.technique-item i, .storage-item i {
    color: var(--primary-dusty-blue);
}

/* Utility Classes */
.text-sage { color: var(--sage-dark); }
.text-terracotta { color: var(--terracotta-dark); }
.text-lavender { color: var(--lavender-dark); }
.text-dusty-blue { color: var(--dusty-blue-dark); }

.bg-sage { background-color: var(--sage-light); }
.bg-terracotta { background-color: var(--terracotta-light); }
.bg-lavender { background-color: var(--lavender-light); }
.bg-dusty-blue { background-color: var(--dusty-blue-light); } 

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

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

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

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

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

.x-link i {
    display: none;
}

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