/* Art Leasing Corporate Website - Main CSS */
/* Bootstrap 5 + Custom Art Leasing Theme */

@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Art Leasing Color Palette */
:root {
  --primary-color: #8B7355;     /* Warm brown - sophisticated */
  --secondary-color: #6B5B73;   /* Muted purple - artistic */
  --accent-color: #D4B996;      /* Light gold - luxury */
  --text-dark: #2C2C2C;         /* Deep gray */
  --text-light: #F8F6F3;        /* Warm white */
  
  /* Light/Dark Variations */
  --primary-light: #A68B70;
  --primary-dark: #6D5A44;
  --secondary-light: #8A7489;
  --secondary-dark: #524158;
  --accent-light: #E5D4B5;
  --accent-dark: #B89F7A;
  
  /* Neutrals */
  --bg-light: #FDFCFA;
  --bg-section: #F5F3F0;
  --border-color: #E8E4DF;
  
  /* Conservative Typography */
  --font-family: 'Inter', sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* Reduced Motion 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;
  }
}

/* Typography - Conservative Sizes */
h1 { font-size: var(--font-size-3xl); font-weight: 600; line-height: 1.3; }
h2 { font-size: var(--font-size-2xl); font-weight: 600; line-height: 1.4; }
h3 { font-size: var(--font-size-xl); font-weight: 500; line-height: 1.4; }
h4 { font-size: var(--font-size-lg); font-weight: 500; line-height: 1.5; }
h5 { font-size: var(--font-size-base); font-weight: 500; line-height: 1.5; }
h6 { font-size: var(--font-size-sm); font-weight: 500; line-height: 1.5; }

p { font-size: var(--font-size-base); margin-bottom: 1rem; }

/* Header & Navigation */
.navbar {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--font-size-xl); /* Conservative size */
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 400;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: var(--accent-light);
  opacity: 0.1;
  border-radius: 50% 0 0 50%;
  transform: translateX(20%);
}

.hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: var(--text-dark);
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

.section:nth-child(even) {
  background-color: var(--bg-section);
}

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

.section-subtitle {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  text-align: center;
}

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

/* Services Cards */
.service-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

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

.service-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-sm);
}

.service-price {
  color: var(--accent-dark);
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  background: var(--accent-light);
  border-radius: 4px;
}

/* About Features */
.feature-item {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

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

.team-card-body {
  padding: 1.5rem;
  text-align: center;
}

.team-card h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--secondary-color);
  font-size: var(--font-size-sm);
}

/* Reviews/Testimonials - Static Cards Only */
.review-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: 1rem;
  font-family: serif;
}

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

.review-author {
  color: var(--primary-color);
  font-weight: 500;
  text-align: right;
}

/* FAQ Cards - Simple Static Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
}

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

.faq-answer {
  color: var(--text-dark);
  font-size: var(--font-size-sm);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.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: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.25);
}

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

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

/* Contact Info */
.contact-info {
  background: var(--bg-section);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

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

.contact-info p {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  width: 1.2rem;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer p {
  color: var(--text-light);
  opacity: 0.9;
  font-size: var(--font-size-sm);
}

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

.footer a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

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

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

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

.blog-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.blog-card p {
  color: var(--text-dark);
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

.blog-card a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
}

.blog-card a:hover {
  color: var(--primary-color);
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.price-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price-card .price {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

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

.price-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: var(--font-size-sm);
}

.price-card li:last-child {
  border-bottom: none;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--bg-section);
  border-radius: 8px;
  margin: 2rem 0;
}

/* Utility Classes */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: --accent-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }

/* Animation Support - Sal.js (DISABLED) */
/*
[data-sal] {
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

/* No animations on mobile - as per requirements */
/*
@media (max-width: 768px) {
  [data-sal] {
    animation: none !important;
    transition: none !important;
  }
}
*/


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

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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