/* ===================================
   ARTISAN BLADES - MAIN CSS
   ================================= */

/* Root Color Variables - 5 Primary Colors + Shades */
:root {
    /* Primary Color Palette */
    --primary-sage: #95aa97;        /* Sage Green */
    --primary-steel: #576a70;       /* Steel Blue */
    --primary-copper: #a15a38;      /* Copper Bronze */
    --primary-charcoal: #405463;    /* Charcoal */
    --primary-cream: #f9ffdd;       /* Cream */
    
    /* Light Shades */
    --light-sage: #c6cfc7;
    --light-steel: #80919a;
    --light-copper: #d0825c;
    --light-charcoal: #5b5f61;
    --light-cream: #FAFAF7;
    
    /* Dark Shades */
    --dark-sage: #68836c;
    --dark-steel: #425058;
    --dark-copper: #99572e;
    --dark-charcoal: #1e2427;
    --dark-cream: #ebece8;
    
    /* Font Settings */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --font-size-small: 15px;
    --font-size-large: 18px;
    
    /* Layout Variables */
    --border-radius: 8px;
    --box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.62s ease;
}

/* Body and Typography */
body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--primary-charcoal);
    background-color: #ffffff;
}

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

/* Header Styling */
.navbar {
    background-color: var(--light-cream) !important;
    border-bottom: 2px solid var(--primary-sage);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-charcoal) !important;
}

.navbar-nav .nav-link {
    color: var(--primary-charcoal) !important;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-sage) 100%);
    padding-top: 100px;
}

#hero h1 {
    font-size: 2.53rem;
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

#hero h2 {
    font-size: 1.58rem;
    color: var(--primary-copper);
    margin-bottom: 1.56rem;
}

#hero p {
    font-size: var(--font-size-large);
    color: var(--dark-charcoal);
}

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

section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 0.73rem;
}

section h3 {
    font-size: 1.28rem;
    color: var(--primary-copper);
    margin-bottom: 1rem;
}

section p {
    color: var(--dark-charcoal);
    font-size: var(--font-size-base);
}

/* Cards */
.card {
    border: 1px solid var(--light-sage);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-body h5, .card-body h6 {
    color: var(--primary-charcoal);
    font-weight: 600;
}

.card-body p {
    color: var(--dark-charcoal);
    font-size: var(--font-size-small);
}

/* Services Section */
#services .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

#services h4 {
    color: var(--primary-copper);
    font-weight: 700;
    font-size: 1.63rem;
}

/* Price Plans */
#priceplan .card.border-primary {
    border-color: var(--primary-copper) !important;
    border-width: 2px !important;
}

#priceplan h4 {
    color: var(--primary-copper);
    font-weight: 700;
    font-size: 2rem;
}

/* Team Section */
#team img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

#team h5 {
    color: var(--primary-charcoal);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

#team p {
    color: var(--primary-steel);
    font-size: var(--font-size-small);
}

/* Features Section */
#f0d19btures i {
    color: var(--primary-copper);
    margin-bottom: 1rem;
}

#ffdf97tures h5 {
    color: var(--primary-charcoal);
    font-weight: 600;
}

/* Process Section */
#process .bg-primary {
    background-color: var(--primary-copper) !important;
}

/* Contact Form */
#contact .form-control {
    border: 2px solid var(--light-sage);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    transition: var(--transition);
}

#contact .form-control:focus {
    border-color: var(--primary-copper);
    box-shadow: 0 0 0 0.2rem rgba(205, 141, 47, 0.25);
}

#contact .btn-primary {
    background-color: var(--primary-copper);
    border-color: var(--primary-copper);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

#contact .btn-primary:hover {
    background-color: var(--dark-copper);
    border-color: var(--dark-copper);
}

/* Contact Info */
.contact-info h5 {
    color: var(--primary-charcoal);
    margin-bottom: 1.74rem;
}

.contact-info p {
    color: var(--dark-charcoal);
    margin-bottom: 0.98rem;
}

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

/* Footer */
footer {
    background-color: var(--primary-charcoal) !important;
}

footer h5 {
    color: var(--primary-cream);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer p, footer li {
    color: var(--light-cream);
    font-size: var(--font-size-small);
}

footer a {
    color: var(--light-cream);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-copper);
}

/* FAQ Section */
#faq .card {
    margin-bottom: 1rem;
}

#faq h6 {
    color: var(--primary-charcoal);
    font-weight: 600;
    margin-bottom: 0.84rem;
}

#faq p {
    color: var(--dark-charcoal);
    margin-bottom: 0;
}

/* Gallery Section */
#gallery img {
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

/* Blog Section */
#Blog .card {
    height: 100%;
}

#Blog .btn-primary {
    background-color: var(--primary-steel);
    border-color: var(--primary-steel);
}

#Blog .btn-primary:hover {
    background-color: var(--dark-steel);
    border-color: var(--dark-steel);
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0.5rem 0;
}

.breadcrumb-item img {
    border-radius: 50%;
}

/* Background Color Utilities */
.bg-light {
    background-color: var(--light-cream) !important;
}

/* Animations - Sal.js Compatible */
[data-sal] {
    transition-duration: 0.73s;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767.98px) {
    /* Disable animations on mobile per requirements */
    [data-sal] {
        transform: none !important;
        opacity: 1 !important;
    }
    
    #hero h1 {
        font-size: 2rem;
    }
    
    #hero h2 {
        font-size: 1.40rem;
    }
    
    section h2 {
        font-size: 1.83rem;
    }
    
    .navbar-brand {
        font-size: 1.32rem;
    }
    
    #team img {
        width: 100px;
        height: 100px;
    }
}

/* Utility Classes */
.text-primary-copper {
    color: var(--primary-copper) !important;
}

.text-primary-sage {
    color: var(--primary-sage) !important;
}

.text-primary-steel {
    color: var(--primary-steel) !important;
}

.bg-primary-sage {
    background-color: var(--primary-sage) !important;
}

.border-primary-copper {
    border-color: var(--primary-copper) !important;
}

/* High Contrast Footer */
footer {
    background-color: var(--dark-charcoal) !important;
    color: var(--primary-cream) !important;
}

/* Conservative Font Sizes */
.navbar-brand {
    font-size: 1.44rem !important;
}

h1 {
    font-size: 2.39rem !important;
}

p {
    font-size: 0.96rem !important;
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
