:root {
    /* Color Palette - Natural Candle Theme */
    --primary-cream: #f4f1e8;
    --primary-sage: #9CAF88;
    --primary-terracotta: #D4A574;
    --primary-charcoal: #3A3A3A;
    --primary-blush: #E8D5C4;
    
    /* Light/Dark Variations */
    --cream-light: #faf8f3;
    --cream-dark: #e8e4d8;
    --sage-light: #b8ccaa;
    --sage-dark: #7a9969;
    --terracotta-light: #ddb388;
    --terracotta-dark: #c4935f;
    --charcoal-light: #525252;
    --charcoal-dark: #2a2a2a;
    --blush-light: #f0e1d4;
    --blush-dark: #dcc5b0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-charcoal);
    background-color: var(--primary-cream);
}

/* Header */
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-charcoal);
}

.navbar-nav .nav-link {
    color: var(--primary-charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--blush-light) 100%);
    display: flex;
    align-items: center;
}

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

.hero-section h2 {
    font-size: 1.25rem;
    color: var(--sage-dark);
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1rem;
    color: var(--charcoal-light);
}

/* Section Headings */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--sage-dark);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--charcoal-light);
    margin-bottom: 3rem;
}

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

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

.card-header {
    background-color: var(--primary-sage);
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 1.25rem;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
}

/* Price styling */
.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-terracotta);
}

/* Services Section */
.services-section {
    background-color: var(--cream-light);
    padding: 4rem 0;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: white;
}

/* Team Section */
.team-section {
    background-color: var(--blush-light);
    padding: 4rem 0;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--primary-sage);
}

.team-member h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-top: 1rem;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--sage-dark);
}

/* Reviews Section */
.reviews-section {
    background-color: white;
    padding: 4rem 0;
}

.review-card {
    background-color: var(--cream-light);
    border-left: 4px solid var(--primary-sage);
}

.review-author {
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--blush-light);
    padding: 4rem 0;
}

.faq-card {
    background-color: white;
    margin-bottom: 1rem;
}

.faq-question {
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--charcoal-light);
}

/* Contact Section */
.contact-section {
    background-color: var(--sage-light);
    padding: 4rem 0;
}

.form-control {
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.btn-primary {
    background-color: var(--primary-sage);
    border-color: var(--primary-sage);
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: var(--primary-charcoal);
    color: var(--primary-cream);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-cream);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer a {
    color: var(--blush-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer small {
    color: var(--cream-dark);
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: white;
}

.gallery-item {
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

/* Blog Section */
.blog-section {
    background-color: var(--cream-light);
    padding: 4rem 0;
}

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

.breadcrumb-item img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

/* Decorative Elements */
.decorative-blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--blush-light), var(--sage-light));
    opacity: 0.3;
    z-index: -1;
}

.blob-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
}

.blob-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
}

/* Responsive adjustments */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !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;
    }
}
