/* KitchenEssence - Minimalist Kitchenware Template */

:root {
    /* Primary Color Palette - Pastel High Contrast */
    --primary-color: #2c5530;
    --primary-light: #4a7c59;
    --primary-dark: #1a3d1f;
    
    --secondary-color: #f4f1eb;
    --secondary-light: #faf8f4;
    --secondary-dark: #e8e4db;
    
    --accent-color: #c8a882;
    --accent-light: #d4b896;
    --accent-dark: #b8956e;
    
    --neutral-color: #6b7280;
    --neutral-light: #9ca3af;
    --neutral-dark: #4b5563;
    
    --highlight-color: #e5f3e8;
    --highlight-light: #f0f9f2;
    --highlight-dark: #d1e7d4;
    
    /* Typography */
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --card-padding: 2rem;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--neutral-color);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--highlight-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--primary-color);
    font-size: 3rem;
    padding-top: 175px;
}

.hero-section .lead {
    color: var(--accent-color);
    font-weight: 500;
}

/* Section Titles */
.h1, h1 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
}

.lead {
    color: var(--accent-color);
    font-weight: 500;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card i {
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Price Plan Cards */
.featured-plan {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-plan .card-body {
    background: var(--highlight-light);
}

/* Team Section */
.team-member img {
    border: 3px solid var(--secondary-color);
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary-color);
}

/* Reviews Section */
.card {
    border: none;
    background: white;
}

.blockquote-footer {
    color: var(--neutral-color);
}

/* Gallery Section */
#gallery img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* FAQ Cards */
#faq .card {
    background: white;
    transition: box-shadow 0.3s ease;
}

#faq .card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Contact Form */
.form-control {
    border: 2px solid var(--secondary-dark);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 85, 48, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
#footer {
    background-color: var(--neutral-dark);
}

#footer h5 {
    color: var(--accent-light);
    font-weight: 600;
}

#footer a:hover {
    color: var(--accent-light);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding-top: 6rem;
    background: var(--secondary-light);
}

/* Process Section */
.process-number {
    font-size: 1.25rem;
    margin: 0 auto;
}

/* Blog Section */
#Blog .card-img-top {
    height: 200px;
    object-fit: cover;
}

#Blog .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

#Blog .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Case Study Cards */
#casestudy .card-img-top {
    height: 220px;
    object-fit: cover;
}

/* Additional Visual Enhancements */
.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.02);
}

/* Section Background Variations */
.bg-light {
    background-color: var(--secondary-light) !important;
}

/* Enhanced Typography */
.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.card-text {
    color: var(--neutral-color);
}

/* Icon Styling */
.fa-3x {
    color: var(--primary-color);
}

/* Enhanced Button Styles */
.btn-outline-primary:hover {
    color: white;
}

/* Additional Page Specific Styles */
.collection-card,
.training-program,
.care-guide {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover,
.training-program:hover,
.care-guide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.material-card,
.custom-service,
.partnership-service,
.commitment-card {
    transition: transform 0.3s ease;
}

.material-card:hover,
.custom-service:hover,
.partnership-service:hover,
.commitment-card:hover {
    transform: translateY(-3px);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    padding-top: 175px;
}
    
    .display-4 {
        font-size: 2rem;
    }
    
    .h1, h1 {
        font-size: 2rem;
    }
    
    .featured-plan {
        transform: none;
    }
}

/* Animation Classes for Sal.js */
[data-sal] {
    transition-duration: 0.5s;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-family: inherit;
    font-size: var(--font-size-base);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .breadcrumb-nav,
    #footer {
        display: none;
    }
    
    .hero-section {
        background: white;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
} 


/* 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;
    }
}
