/* SpiceVault - Main CSS */

/* Color Palette - 5 Primary Colors */
:root {
    --primary-color: #99621d;        /* Saddle Brown - warm spice brown */
    --secondary-color: #d7851b;      /* Chocolate - rich orange-brown */
    --accent-color: #cc951c;         /* Goldenrod - saffron yellow */
    --nature-color: #46552d;         /* Dark Olive Green - herb green */
    --warm-color: #c97540;           /* Peru - warm cinnamon */
    
    /* Light variants */
    --primary-light: #a63d1e;
    --secondary-light: #ff9756;
    --accent-light: #ffcc00;
    --nature-light: #abca41;
    --warm-light: #f1cc8f;
    
    /* Dark variants */
    --primary-dark: #623822;
    --secondary-dark: #b88400;
    --accent-dark: #a58000;
    --nature-dark: #365332;
    --warm-dark: #856c45;
    
    /* Neutral colors */
    --text-dark: #202e3c;
    --text-light: #6d7d81;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
}

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

/* Typography - Conservative sizes */
h1 {
    font-size: 2.57rem;
    font-weight: 700;
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

h3 {
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--secondary-color);
}

h4 {
    font-size: 1.37rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Navbar brand conservative size */
.navbar-brand {
    font-size: 1.64rem !important;
    font-weight: 600;
    color: var(--primary-color) !important;
}

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

#hero h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#hero h2 {
    color: var(--secondary-color);
    font-size: 1.64rem;
    margin-bottom: 1rem;
}

#hero .lead {
    color: var(--text-light);
    font-size: 1.21rem;
}

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

.py-5 {
    padding: 4rem 0;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.98s ease, box-shadow 0.41s ease;
    height: 100%;
}

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

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.card-text {
    color: var(--text-light);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.82s ease;
}

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

/* Services Section */
#services .card {
    border-top: 4px solid var(--accent-color);
}

#services .card-img-top {
    height: 200px;
    object-fit: cover;
}

#services ul {
    list-style: none;
    padding-left: 0;
}

#services ul li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

#services ul li:before {
    content: 'âœ“';
    color: var(--nature-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Price displays */
.text-primary {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Team Section */
#team img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--accent-light);
}

/* Reviews Section */
#reviews .card {
    border-left: 4px solid var(--secondary-color);
}

#reviews .blockquote-footer {
    color: var(--text-light);
    font-style: italic;
}

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

#faq .card-title {
    font-size: 1.24rem;
    margin-bottom: 0.64rem;
}

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

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

/* Contact Form */
.form-control {
    border: 2px solid #e6f3ff;
    border-radius: 6px;
    padding: 0.75rem;
    transition: border-color 0.70s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(116, 62, 23, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.63rem;
}

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

footer h5 {
    color: var(--accent-light);
    margin-bottom: 1rem;
}

footer a {
    color: #a9beca;
    text-decoration: none;
    transition: color 0.86s ease;
}

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

/* Icon Styling */
.fa-3x {
    color: var(--primary-color);
}

.text-success .fa-3x {
    color: var(--nature-color) !important;
}

.text-warning .fa-3x {
    color: var(--accent-color) !important;
}

.text-info .fa-3x {
    color: var(--secondary-color) !important;
}

/* Process Steps */
.rounded-circle {
    background-color: var(--primary-color) !important;
}

/* Navbar */
.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.65s ease;
}

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

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 1.10s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Blog Cards */
#Blog .card {
    border-top: 3px solid var(--accent-color);
}

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

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

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

/* Price plan special styling */
#priceplan .border-primary {
    border-color: var(--primary-color) !important;
}

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

#priceplan .card-header {
    font-weight: 600;
    font-size: 0.98rem;
}

/* Space page specific */
#space {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--warm-light) 100%);
    min-height: calc(100vh - 80px);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

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

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

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

.x-link {
    position: relative;
}

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

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

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

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