/* ========================================
   SEASONAL DECOR KITS - MAIN STYLES
======================================== */

/* Color Palette Variables */
:root {
    --primary-autumn: #a66610;
    --primary-burgundy: #720426;
    --primary-forest: #2e4933;
    --primary-cream: #fdffe6;
    --primary-copper: #b96d2c;
    
    /* Light/Dark Shades */
    --light-autumn: #d9b029;
    --dark-autumn: #816d08;
    --light-burgundy: #8a1729;
    --dark-burgundy: #6d0a22;
    --light-forest: #3a5e38;
    --dark-forest: #2b4626;
    --light-cream: #FEFEFE;
    --dark-cream: #e4e5d1;
    --light-copper: #c29344;
    --dark-copper: #b24f36;
    
    /* Text Colors */
    --text-dark: #151515;
    --text-light: #FFFFFF;
    --text-muted: #504d4c;
    
    /* Gradients */
    --gradient-autumn: linear-gradient(135deg, var(--primary-autumn), var(--primary-copper));
    --gradient-burgundy: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
    --gradient-forest: linear-gradient(135deg, var(--primary-forest), var(--dark-forest));
    
    /* Font Sizes - Conservative */
    --fs-h1: 2.5rem;
    --fs-h2: 2rem;
    --fs-h3: 1.5rem;
    --fs-h4: 1.25rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-logo: 1.5rem;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-cream);
}

/* 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;
        scroll-behavior: auto !important;
    }
}

/* Typography */
h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.13rem;
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.90rem;
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.83rem;
}

h4 {
    font-size: var(--fs-h4);
    font-weight: 500;
    margin-bottom: 0.73rem;
}

p {
    margin-bottom: 1.13rem;
    max-width: 65ch;
}

/* Header Styles */
.navbar-brand {
    font-size: var(--fs-logo) !important;
    font-weight: 700;
    color: var(--primary-burgundy) !important;
    text-decoration: none !important;
}

.navbar {
    background: linear-gradient(to right, var(--light-cream), var(--primary-cream));
    box-shadow: 0 7px 12px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  font-size: 10px !important;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-burgundy);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-forest);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../NIM_images/hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3.25rem;
}

.service-card {
    background: var(--light-cream);
    border-radius: 114px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 13px 30px rgba(0,0,0,0.2);
}

.service-price {
    font-size: 2.07rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 1rem 0;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3.25rem;
}

.feature-item {
    background: var(--primary-cream);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-autumn);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3.25rem;
}

.team-member {
    text-align: center;
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 19px;
    box-shadow: 0 7px 110px rgba(0,0,0,0.1);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-copper);
}

/* Price Plans */
.priceplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3.25rem;
}

.priceplan-card {
    background: var(--light-cream);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.priceplan-card.featured {
    transform: scale(1.05);
    background: var(--gradient-autumn);
    color: var(--text-light);
}

/* Reviews/Testimonials */
.reviews-slider {
    margin-top: 3.25rem;
}

.review-card {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1.13rem;
    border: 1px solid #f6f6f6;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: var(--primary-forest);
    color: var(--text-light);
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 1rem;
    background: var(--light-cream);
    display: none;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3.25rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: var(--light-cream);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 3.25rem;
}

.form-control {
    border: 2px solid #c8c6c6;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.13rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-burgundy);
    outline: none;
    box-shadow: 0 0 0 3px rgba(117, 8, 18, 0.10);
}

.btn-primary {
    background: var(--gradient-burgundy);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(133, 0, 24, 0.30);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3.25rem;
}

.blog-card {
    background: var(--light-cream);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-body {
  overflow-x: hidden;
    padding: 1.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background: var(--light-cream);
    padding: 2rem;
    margin-bottom: 2.07rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Process Steps */
.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-burgundy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.57rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Footer */
.footer {
    background: var(--gradient-forest);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    margin-top: 5.09rem;
}

.footer h5 {
    color: var(--primary-autumn);
    margin-bottom: 1.13rem;
}

.footer a {
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-autumn);
}

/* Utility Classes */
.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.mb-4 {
    margin-bottom: 2.07rem;
}

.mt-4 {
    margin-top: 2.07rem;
}

/* Breadcrumb Image */
.breadcrumb-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

/* Space div styling */
#space {
    min-height: 80vh;
    background: var(--gradient-forest);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
} 