/* Local Art Leasing Template - Main Styles */
:root {
  --primary-color: #2d455a;
  --secondary-color: #d7eaed;
  --accent-color: #a3451f;
  --text-color: #3f4e65;
  --light-color: #f8f9fa;
  --dark-color: #232f36;
  --gallery-bg: #f7f7f7;
  --card-shadow: 0 2px 8px rgba(42, 58, 68, 0.10);
  --transition: all 0.3s ease;
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-color);
}

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

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header */
.navbar {
  background-color: var(--light-color);
  box-shadow: var(--card-shadow);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

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

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

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* Decorative shapes */
.decorative-shape {
  position: absolute;
  background: var(--accent-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 15%;
}

.shape-2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 10%;
}

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

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

/* Cards */
.custom-card {
  border: none;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(47, 72, 87, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* Services */
.service-card {
  text-align: center;
  padding: 2rem 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
}

/* Features */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

/* Price Plans */
.price-card {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  transition: var(--transition);
}

.price-card:hover {
  border-color: var(--accent-color);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Team */
.team-member {
  text-align: center;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--secondary-color);
}

/* Reviews */
.review-card {
  padding: 2rem;
  border-left: 4px solid var(--accent-color);
  background: var(--light-color);
  margin-bottom: 1rem;
}

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

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

/* Timeline */
.timeline-item {
  position: relative;
  padding: 1.5rem 0;
  border-left: 3px solid var(--accent-color);
  margin-left: 1rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 2rem;
  width: 14px;
  height: 14px;
  background: var(--accent-color);
  border-radius: 50%;
}

/* Contact Form */
.contact-form {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 8px;
}

.form-control {
  border: 2px solid var(--secondary-color);
  border-radius: 4px;
  padding: 0.75rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(127, 69, 16, 0.25);
}

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

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

/* FAQ */
.faq-card {
  border: 1px solid var(--secondary-color);
  margin-bottom: 1rem;
  border-radius: 8px;
}

.faq-question {
  background: var(--secondary-color);
  padding: 1rem;
  margin: 0;
  font-weight: 500;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.faq-answer {
  padding: 1rem;
  margin: 0;
  background: white;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

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

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

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer a {
  color: #d2d2d2;
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: white;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--secondary-color);
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

/* Utilities */
.text-accent {
  color: var(--accent-color);
}

.bg-accent {
  background-color: var(--accent-color);
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-subtitle {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

.hero-section h1 {
    padding-top: 275px;
}


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