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

:root {
  /* Primary Color Palette - Antique Theme */
  --antique-gold: #D4A574;
  --antique-gold-light: #E6C196;
  --antique-gold-dark: #B8935C;
  
  --deep-burgundy: #6B2737;
  --deep-burgundy-light: #8B4355;
  --deep-burgundy-dark: #4A1B26;
  
  --warm-cream: #F5F2E8;
  --warm-cream-light: #FAFAF7;
  --warm-cream-dark: #E8E2D4;
  
  --sage-green: #8FA68E;
  --sage-green-light: #A8BAA7;
  --sage-green-dark: #7A9179;
  
  --charcoal: #2C2C2C;
  --charcoal-light: #484848;
  --charcoal-dark: #1A1A1A;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
}

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

/* Header Styles */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 600;
  color: var(--deep-burgundy);
}

.navbar {
  background-color: var(--warm-cream-light);
  border-bottom: 1px solid var(--antique-gold-light);
}

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

.navbar-nav .nav-link:hover {
  color: var(--deep-burgundy);
}

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

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--deep-burgundy);
  margin-bottom: 1rem;
    padding-top: 275px;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--antique-gold-dark);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: var(--font-size-base);
  color: var(--charcoal-light);
  margin-bottom: 2rem;
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--deep-burgundy);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--antique-gold-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: var(--font-size-base);
  color: var(--charcoal-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Styles */
.custom-card {
  background: var(--warm-cream-light);
  border: 1px solid var(--antique-gold-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(107, 39, 55, 0.1);
}

.card-title {
  font-size: var(--font-size-h4);
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 1rem;
}

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

/* Services Section */
.services-item {
  text-align: center;
  padding: 2rem;
  background: var(--warm-cream-light);
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid var(--antique-gold-light);
}

.services-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--antique-gold-dark);
  margin-top: 1rem;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--antique-gold);
  margin-bottom: 1rem;
}

.team-name {
  font-size: var(--font-size-h5);
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: var(--font-size-base);
  color: var(--charcoal-light);
}

/* Process Timeline */
.process-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--antique-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* FAQ Section */
.faq-item {
  background: var(--warm-cream-light);
  border: 1px solid var(--antique-gold-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 1rem;
}

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

/* Gallery */
.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

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

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

/* Contact Form */
.contact-form {
  background: var(--warm-cream-light);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--antique-gold-light);
}

.form-control {
  border: 1px solid var(--antique-gold-light);
  border-radius: 4px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--antique-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.btn-primary {
  background-color: var(--deep-burgundy);
  border-color: var(--deep-burgundy);
  font-weight: 600;
  padding: 0.75rem 2rem;
}

.btn-primary:hover {
  background-color: var(--deep-burgundy-dark);
  border-color: var(--deep-burgundy-dark);
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* Blog Section */
.blog-item {
  background: var(--warm-cream-light);
  border: 1px solid var(--antique-gold-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-3px);
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-h5);
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 1rem;
}

.blog-excerpt {
  font-size: var(--font-size-base);
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

/* Price Plan */
.price-plan-item {
  background: var(--warm-cream-light);
  border: 2px solid var(--antique-gold-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-plan-item:hover {
  transform: translateY(-5px);
  border-color: var(--antique-gold);
}

.price-plan-name {
  font-size: var(--font-size-h4);
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 1rem;
}

.price-plan-price {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--antique-gold-dark);
  margin-bottom: 1.5rem;
}

.price-plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--antique-gold-light);
}

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

.breadcrumb-item img {
  height: 24px;
  width: auto;
}

/* Utilities */
.text-antique-gold { color: var(--antique-gold); }
.text-deep-burgundy { color: var(--deep-burgundy); }
.text-sage-green { color: var(--sage-green); }

.bg-warm-cream { background-color: var(--warm-cream); }
.bg-warm-cream-light { background-color: var(--warm-cream-light); }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Decorative Elements */
.decorative-shape {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
}

.shape-1 {
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--antique-gold);
  border-radius: 50%;
}

.shape-2 {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--sage-green);
  transform: rotate(45deg);
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

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

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

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

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

.x-link i {
    display: none;
}

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