/* SpiceBox - Main CSS */
/* Color Palette - 5 primary colors with light/dark shades */
:root {
    /* Primary Colors */
    --spice-amber: #da902e;
    --spice-saffron: #f29666;
    --spice-paprika: #e29355;
    --spice-cinnamon: #874e1b;
    --spice-turmeric: #efdc00;
    
    /* Light shades */
    --spice-amber-light: #d3884d;
    --spice-saffron-light: #e89e74;
    --spice-paprika-light: #e1a275;
    --spice-cinnamon-light: #ad4a25;
    --spice-turmeric-light: #faee18;
    
    /* Dark shades */
    --spice-amber-dark: #723604;
    --spice-saffron-dark: #b76c37;
    --spice-paprika-dark: #91442f;
    --spice-cinnamon-dark: #75562a;
    --spice-turmeric-dark: #c9aa00;
    
    /* Neutral colors */
    --spice-cream: #eae2c1;
    --spice-brown: #3b2313;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--spice-brown);
}

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

/* Header Styles */
.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--spice-amber)!important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--spice-brown)!important;
    transition: color 0.3s ease;
}

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

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

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--spice-cinnamon);
    margin-bottom: 1rem;
    padding-top: 200px;
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--spice-amber);
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.1rem;
    color: var(--spice-brown);
}

/* Button Styles */
.btn-primary {
    background-color: var(--spice-amber);
    border-color: var(--spice-amber);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--spice-amber-dark);
    border-color: var(--spice-amber-dark);
    transform: translateY(-2px);
}

/* Section Styling */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--spice-cinnamon);
    margin-bottom: 1rem;
}

section h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--spice-amber);
    margin-bottom: 1.5rem;
}

section p {
    font-size: 1rem;
    color: var(--spice-brown);
    margin-bottom: 2rem;
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.card-title {
    font-weight: 600;
    color: var(--spice-cinnamon);
    font-size: 1.1rem;
}

.card-text {
    color: var(--spice-brown);
    font-size: 0.95rem;
}

/* Services Section Specific */
.card-body ul {
    list-style: none;
    padding-left: 0;
}

.card-body ul li {
    padding: 0.25rem 0;
    color: var(--spice-brown);
}

.card-body ul li::before {
    content: "â€¢";
    color: var(--spice-amber);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Icon Styling */
.fa-2x, .fa-3x {
    color: var(--spice-amber);
}

/* Process Steps */
.process-step {
    background-color: var(--spice-amber);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Timeline Styling */
.timeline-year {
    background-color: var(--spice-amber);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

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

/* Review Cards */
.blockquote-footer {
    font-size: 0.9rem;
    color: var(--spice-amber);
    font-weight: 500;
}

/* Contact Form */
.form-control {
    border-radius: 10px;
    border: 2px solid #fcfcfc;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--spice-amber);
    box-shadow: 0 0 0 0.2rem rgba(209, 121, 23, 0.25);
}

.contact-info h5 {
    color: var(--spice-cinnamon);
    font-weight: 600;
}

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

footer h5 {
    color: var(--spice-saffron);
    font-weight: 600;
}

footer a {
    color: #ececec;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--spice-saffron);
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
}

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

/* Gallery Lightbox Integration */
.gallery img {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

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

/* FAQ Cards */
.faq .card {
    border-left: 4px solid var(--spice-amber);
}

/* Blog Cards */
.blog .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Price Plan Special Styling */
.border-primary {
    border-color: var(--spice-amber)!important;
}

.card-header.bg-primary {
    background-color: var(--spice-amber)!important;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Text Colors */
.text-primary {
    color: var(--spice-amber)!important;
}

.text-success {
    color: var(--spice-turmeric)!important;
}

/* Space Page Specific */
#space {
    background: linear-gradient(135deg, var(--spice-cream) 0%, var(--spice-saffron-light) 100%);
    min-height: 100vh;
}

/* Animation Compatibility */
.sal-animate {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Conservative Font Sizes */
h1 { font-size: 2.25rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p { font-size: 1rem; }

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 200px;
}
    
    .hero-section h2 {
        font-size: 1.25rem;
    }
    
    section h2 {
        font-size: 1.75rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* Accessibility enhancements */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--spice-amber);
    outline-offset: 2px;
}

/* High contrast for footer */
footer {
    background-color: #0e0d0d!important;
    color: #ffffff;
}

footer p {
    color: #eaf1f9;
}

/* Ensure no gradients in footer as per requirements */
footer .bg-dark {
    background: #302c2c!important;
}

/* Custom spacing utilities */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 4rem;
} 


/* 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;
    }
}
