/* ============================================
   ANTIQUE TREASURES - MAIN STYLESHEET
   Modern Antiques Shop Template 2025
   ============================================ */

/* Root Variables - Color Palette */
:root {
    /* Primary Colors */
    --primary-gold: #D4AF37;
    --primary-burgundy: #8B0000;
    --primary-forest: #355E3B;
    --primary-cream: #F5F5DC;
    --primary-charcoal: #36454F;
    
    /* Light Shades */
    --light-gold: #F0E68C;
    --light-burgundy: #CD5C5C;
    --light-forest: #90EE90;
    --light-cream: #FFFEF7;
    --light-charcoal: #708090;
    
    /* Dark Shades */
    --dark-gold: #B8860B;
    --dark-burgundy: #5D0000;
    --dark-forest: #1B4332;
    --dark-cream: #E6E6D2;
    --dark-charcoal: #2F4F4F;
    
    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    
    /* Conservative Header Sizes */
    --h1-size: 2.2rem;
    --h2-size: 1.8rem;
    --h3-size: 1.5rem;
    --h4-size: 1.25rem;
    --h5-size: 1.1rem;
    --h6-size: 1rem;
    
    /* Navbar Brand Conservative Size */
    --navbar-brand-size: 1.4rem;
    
    /* Spacing */
    --section-padding: 80px 0;
    --element-margin: 30px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* 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;
    }
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--primary-charcoal);
    background-color: var(--light-cream);
    overflow-x: hidden;
}

/* Typography - Conservative Sizes */
h1 { font-size: var(--h1-size); font-weight: 600; }
h2 { font-size: var(--h2-size); font-weight: 600; }
h3 { font-size: var(--h3-size); font-weight: 500; }
h4 { font-size: var(--h4-size); font-weight: 500; }
h5 { font-size: var(--h5-size); font-weight: 500; }
h6 { font-size: var(--h6-size); font-weight: 500; }

p {
    font-size: var(--font-size-base);
    margin-bottom: 15px;
    color: var(--primary-charcoal);
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--dark-gold);
    text-decoration: none;
}

/* Header Styles */
.header-section {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--dark-burgundy) 100%);
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: var(--navbar-brand-size) !important;
    font-weight: 600;
    color: var(--primary-gold) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
    color: var(--primary-cream) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px !important;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover {
    background-color: var(--primary-gold);
    color: var(--primary-charcoal) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--dark-forest) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--primary-cream);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-antique.webp') center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: var(--font-size-lg);
    margin-bottom: 25px;
    color: var(--light-cream);
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.py-5 {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--primary-cream) !important;
}

/* About Section */
.about-section {
    background-color: var(--light-cream);
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-card h4 {
    color: var(--primary-charcoal);
    margin-bottom: 15px;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    color: var(--primary-charcoal);
    margin-bottom: 15px;
}

.service-price {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-top: 15px;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--dark-forest) 100%);
    color: var(--primary-cream);
}

.feature-item {
    text-align: center;
    padding: 25px;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-item h4 {
    color: var(--light-cream);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--primary-cream);
}

/* Price Plan Section */
.priceplan-section {
    background-color: var(--light-cream);
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.price-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.price-card h4 {
    color: var(--primary-charcoal);
    margin-bottom: 20px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.price-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--primary-cream);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-top: 20px;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-cream) 100%);
}

.team-card {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary-gold);
}

.team-card h4 {
    color: var(--primary-charcoal);
    margin-bottom: 10px;
}

.team-card p {
    color: var(--primary-burgundy);
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--dark-burgundy) 100%);
    color: var(--primary-cream);
}

.reviewsSwiper {
    padding: 50px 0;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-card p {
    font-size: var(--font-size-lg);
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-cream);
}

.review-card h5 {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Case Studies Section */
.casestudy-section {
    background-color: var(--light-cream);
}

.case-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-card h4 {
    color: var(--primary-charcoal);
    padding: 20px 20px 10px;
}

.case-card p {
    padding: 0 20px 20px;
    color: var(--light-charcoal);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--dark-forest) 100%);
    color: var(--primary-cream);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.process-number {
    background: var(--primary-gold);
    color: var(--primary-charcoal);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
}

.process-item h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

/* Timeline Section */
.timeline-section {
    background-color: var(--primary-cream);
}

.timeline-wrapper {
    position: relative;
}

.timeline-event {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow-light);
}

.timeline-year {
    background: var(--primary-burgundy);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 30px;
    min-width: 80px;
    text-align: center;
}

.timeline-event h4 {
    color: var(--primary-charcoal);
    margin-bottom: 10px;
}

/* Career Section */
.career-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
}

.career-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.career-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.career-card h4 {
    color: var(--primary-charcoal);
    margin-bottom: 15px;
}

.career-card span {
    background: var(--primary-gold);
    color: var(--primary-charcoal);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* Core Info Section */
.coreinfo-section {
    background: linear-gradient(135deg, var(--primary-charcoal) 0%, var(--dark-charcoal) 100%);
    color: var(--primary-cream);
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.info-card h4 {
    color: var(--light-cream);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--dark-burgundy) 100%);
    color: var(--primary-cream);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.contact-form .btn-primary {
    background: var(--primary-gold);
    border: none;
    color: var(--primary-charcoal);
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-form .btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.contact-info {
    padding: 40px 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

.contact-item p {
    color: var(--light-cream);
    margin: 0;
}

/* Blog Section */
.blog-section {
    background-color: var(--light-cream);
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    color: var(--primary-charcoal);
    margin-bottom: 15px;
}

.blog-content a {
    color: var(--primary-burgundy);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-cream) 100%);
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    color: var(--primary-charcoal);
    font-weight: 500;
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-gold);
    color: var(--primary-charcoal);
}

.accordion-body {
  overflow-x: hidden;
    background: var(--light-cream);
    padding: 20px 25px;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--primary-charcoal);
    padding: 60px 0;
}

.gallery-item {
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer-section {
    background-color: #838383;
    color: var(--primary-cream);
}

.footer-section h3,
.footer-section h5,  
.footer-section small {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

footer small {
    color: var(--primary-gold) !important;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--light-cream);
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-section hr {
    border-color: var(--light-charcoal);
    margin: 40px 0 20px;
}

.footer-section small {
    color: var(--light-charcoal);
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--primary-cream);
    border-bottom: 2px solid var(--primary-gold);
}

.breadcrumb-image {
    height: 40px;
    object-fit: contain;
}

/* Space Section */
.space-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Additional Page Specific Styles */
.page-section {
    padding: 60px 0;
}

.collection-item,
.restoration-item,
.resource-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    text-align: center;
}

.collection-item:hover,
.restoration-item:hover,
.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.collection-item img,
.restoration-item img,
.resource-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.collection-item h4,
.restoration-item h4,
.resource-item h4 {
    padding: 20px 20px 10px;
    color: var(--primary-charcoal);
}

.collection-item p,
.restoration-item p,
.resource-item p {
    padding: 0 20px 20px;
    color: var(--light-charcoal);
}

.process-step,
.insight-card,
.appraisal-service,
.workshop-service,
.acquisition-service,
.consultation-service,
.shipping-service {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
}

.process-step:hover,
.insight-card:hover,
.appraisal-service:hover,
.acquisition-service:hover,
.consultation-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.process-step i,
.insight-card i,
.appraisal-service i,
.acquisition-service i,
.consultation-service i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.workshop-service img,
.shipping-service img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Utility Classes */
.text-gold { color: var(--primary-gold); }
.text-burgundy { color: var(--primary-burgundy); }
.text-forest { color: var(--primary-forest); }
.text-charcoal { color: var(--primary-charcoal); }

.bg-gold { background-color: var(--primary-gold); }
.bg-burgundy { background-color: var(--primary-burgundy); }
.bg-forest { background-color: var(--primary-forest); }
.bg-charcoal { background-color: var(--primary-charcoal); } 