/* Art Leasing Corporate Template - Main Styles */

/* CSS Custom Properties - Pastel High-Contrast Color Palette */
:root {
  --primary-sage: #8fa48b;
  --primary-navy: #222e3e;
  --primary-cream: #f8f6f0;
  --primary-terracotta: #c29b63;
  --primary-charcoal: #324150;
  
  /* Light/Dark Shades */
  --sage-light: #bec2bb;
  --sage-dark: #768e72;
  --navy-light: #4b6c7e;
  --navy-dark: #121c27;
  --cream-light: #fdfcf8;
  --cream-dark: #e5e4df;
  --terracotta-light: #d3ae7a;
  --terracotta-dark: #d1b26a;
  --charcoal-light: #506673;
  --charcoal-dark: #212e3d;
}

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

/* Conservative Typography */
h1, .h1 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary-navy);
}

h2, .h2 {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--primary-navy);
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-charcoal);
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
}

p, .text-body {
  font-size: 1rem;
  color: var(--primary-charcoal);
}

/* Header & Navigation */
.navbar {
  background-color: var(--primary-cream);
  box-shadow: 0 2px 4px rgba(56, 72, 91, 0.10);
  padding: 1rem 0;
}

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

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

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

.hero-content {
  padding: 2rem 0;
    padding-top: 275px;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background-color: var(--primary-sage);
  border-radius: 12px;
  z-index: -1;
}

/* Section Styling */
.section-padding {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--cream-dark);
}

/* Services Cards */
.service-card {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.service-card .card-body {
  padding: 2rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-terracotta);
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

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

/* Team Cards */
.team-card {
  background: white;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-image {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

/* Reviews/Testimonials */
.review-card {
  background: white;
  border: none;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.review-stars {
  color: var(--primary-terracotta);
  font-size: 1.2rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Sal.js Animation Setup */
[data-sal] {
  transition-duration: 0.5s;
}

/* Reduced Motion Respect */
@media (prefers-reduced-motion: reduce) {
  [data-sal] {
    animation: none !important;
    transition: none !important;
  }
  
  .service-card,
  .team-card,
  .btn-primary {
    transition: none !important;
    transform: none !important;
  }
}

/* Price Plan Cards */
.priceplan-card {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.priceplan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-terracotta);
}

/* Case Study Cards */
.casestudy-card {
  background: white;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

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

/* Timeline Items */
.timeline-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-sage);
}

/* Career Cards */
.career-card {
  background: white;
  border: none;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Core Info Items */
.coreinfo-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Blog Cards */
.blog-card {
  background: white;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Contact Info Items */
.contact-info-item {
  background: var(--sage-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-info-item i {
  font-size: 2rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
} 


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

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

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

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

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