/* Main CSS for Curated Online Antiques Auctions Template */

/* ========== COLOR PALETTE ========== */
:root {
  /* Primary Colors */
  --primary-burgundy: #720f39;
  --primary-gold: #d3c23e;
  --primary-cream: #e6e6e3;
  --primary-bronze: #ca7824;
  --primary-sage: #86a078;
  
  /* Light Shades */
  --light-burgundy: #cb5e88;
  --light-gold: #fec05c;
  --light-cream: #FAFAF2;
  --light-bronze: #ce874b;
  --light-sage: #e0eac8;
  
  /* Dark Shades */
  --dark-burgundy: #6c0b1d;
  --dark-gold: #a97621;
  --dark-cream: #f4f5e4;
  --dark-bronze: #986629;
  --dark-sage: #82a16e;
  
  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Lato', sans-serif;
}

/* ========== GLOBAL STYLES ========== */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark-burgundy);
  background-color: var(--light-cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--primary-burgundy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p, .lead {
  color: var(--dark-burgundy);
  margin-bottom: 1rem;
}

/* ========== HEADER STYLES ========== */
.navbar {
  background-color: var(--primary-cream) !important;
  box-shadow: 0 2px 10px rgba(164, 18, 53, 0.10);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-burgundy);
}

.navbar-nav .nav-link {
  color: var(--dark-burgundy);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

.navbar-toggler {
  border: none;
  color: var(--primary-burgundy);
}

/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: var(--light-gold);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: var(--light-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 100px;
}

/* ========== SECTION STYLES ========== */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  color: var(--primary-burgundy);
  margin-bottom: 2rem;
  text-align: center;
}

.section-subtitle {
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-burgundy);
}

/* ========== SERVICES SECTION ========== */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 25px rgba(157, 35, 62, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-cream);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(153, 22, 59, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  color: var(--primary-gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* ========== FEATURES SECTION ========== */
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* ========== TEAM SECTION ========== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-gold);
}

.team-member-name {
  color: var(--primary-burgundy);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-gold);
  font-style: italic;
}

/* ========== TESTIMONIALS/REVIEWS SECTION ========== */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 25px rgba(161, 31, 85, 0.10);
  border-left: 4px solid var(--primary-gold);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--dark-burgundy);
}

.review-author {
  color: var(--primary-burgundy);
  font-weight: 600;
}

/* ========== PRICE PLAN SECTION ========== */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 25px rgba(163, 37, 70, 0.10);
  text-align: center;
  border: 2px solid var(--light-cream);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.price-card .price {
  font-size: 2.5rem;
  color: var(--primary-gold);
  font-weight: 700;
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  margin-bottom: 0.5rem;
  color: var(--dark-burgundy);
}

/* ========== FAQ SECTION ========== */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 15px rgba(139, 21, 56, 0.08);
  border-left: 4px solid var(--primary-burgundy);
}

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

.faq-answer {
  color: var(--dark-burgundy);
  margin: 0;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(114, 20, 39, 0.10);
}

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

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(228, 176, 63, 0.25);
}

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

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

/* ========== FOOTER ========== */
.footer {
  background-color: var(--dark-sage);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--primary-burgundy);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* ========== GALLERY SECTION ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

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

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

/* ========== BLOG SECTION ========== */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(135, 16, 44, 0.10);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--dark-burgundy);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-gold);
}

/* ========== CASE STUDY SECTION ========== */
.casestudy-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 25px rgba(128, 21, 62, 0.10);
  border-top: 4px solid var(--primary-gold);
}

.casestudy-title {
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

/* ========== PROCESS SECTION ========== */
.process-step {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  background: var(--primary-gold);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* ========== TIMELINE SECTION ========== */
.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 15px rgba(114, 25, 51, 0.10);
  border-left: 4px solid var(--primary-gold);
}

.timeline-title {
  color: var(--primary-burgundy);
  margin-bottom: 0.5rem;
}

/* ========== CAREER SECTION ========== */
.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 25px rgba(137, 34, 72, 0.10);
  border: 1px solid var(--light-cream);
}

.career-title {
  color: var(--primary-burgundy);
  margin-bottom: 0.5rem;
}

.career-role {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ========== CORE INFO SECTION ========== */
.coreinfo-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 25px rgba(149, 18, 75, 0.10);
  text-align: center;
  border-top: 4px solid var(--primary-burgundy);
}

.coreinfo-title {
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

/* ========== BREADCRUMB STYLES ========== */
.breadcrumb-section {
  background-color: var(--light-cream);
  padding: 1rem 0;
  border-bottom: 1px solid var(--primary-cream);
}

.breadcrumb-image {
  max-height: 30px;
  width: auto;
}

/* ========== ADDITIONAL PAGE STYLES ========== */
.page-section {
  padding: 4rem 0;
}

.page-section:nth-child(even) {
  background-color: var(--light-cream);
}

.page-section:nth-child(odd) {
  background-color: white;
}

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

/* ========== UTILITIES ========== */
.text-primary-burgundy { color: var(--primary-burgundy); }
.text-primary-gold { color: var(--primary-gold); }
.text-primary-cream { color: var(--primary-cream); }
.text-primary-bronze { color: var(--primary-bronze); }
.text-primary-sage { color: var(--primary-sage); }

.bg-primary-burgundy { background-color: var(--primary-burgundy); }
.bg-primary-gold { background-color: var(--primary-gold); }
.bg-primary-cream { background-color: var(--primary-cream); }
.bg-primary-bronze { background-color: var(--primary-bronze); }
.bg-primary-sage { background-color: var(--primary-sage); } 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
