/* Art Gallery Template - Main CSS */
:root {
  /* Primary Color Palette */
  --primary-1: #2c3e50;      /* Deep Blue-Gray */
  --primary-2: #e8b87a;      /* Warm Gold */
  --primary-3: #34495e;      /* Slate Gray */
  --primary-4: #f39c12;      /* Orange */
  --primary-5: #95a5a6;      /* Light Gray */
  
  /* Light/Dark Shades */
  --primary-1-light: #4a6583;
  --primary-1-dark: #1a252f;
  --primary-2-light: #f2cc9a;
  --primary-2-dark: #d49a5a;
  --primary-3-light: #52677a;
  --primary-3-dark: #2c3e50;
  --primary-4-light: #f5b942;
  --primary-4-dark: #d68910;
  --primary-5-light: #bdc3c7;
  --primary-5-dark: #7f8c8d;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-1);
  margin: 0;
  padding: 0;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-3) 100%);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 20px !important;
  font-weight: var(--font-weight-bold);
  color: var(--primary-2) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: var(--font-weight-medium);
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-2) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-3) 50%, var(--primary-2-dark) 100%);
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-large);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-1);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-desc {
  font-size: var(--font-size-base);
  color: var(--primary-5-dark);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.service-name {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-1);
  margin-bottom: 15px;
}

.service-desc {
  color: var(--primary-5-dark);
  margin-bottom: 20px;
  font-size: var(--font-size-small);
}

.service-price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-4);
  margin-bottom: 15px;
}

.service-features {
  font-size: var(--font-size-small);
  color: var(--primary-3);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid var(--primary-2);
}

.team-name {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-1);
  margin-bottom: 10px;
}

.team-role {
  color: var(--primary-4);
  font-weight: var(--font-weight-medium);
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, var(--primary-5-light) 0%, white 100%);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-2);
  box-shadow: 0 0 0 3px rgba(232, 184, 122, 0.2);
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-4) 0%, var(--primary-4-dark) 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-4-dark) 0%, var(--primary-4) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-3) 100%);
  color: white;
  padding: 50px 0 20px;
}

.footer h5 {
  color: var(--primary-2);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer p, .footer a {
  color: rgba(255,255,255,0.8);
  font-size: var(--font-size-small);
  text-decoration: none;
  line-height: 1.8;
}

.footer a:hover {
  color: var(--primary-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: var(--font-weight-medium);
  color: var(--primary-1);
  border-bottom: 1px solid #f0f0f0;
}

.faq-answer {
  padding: 20px;
  color: var(--primary-5-dark);
  font-size: var(--font-size-small);
}

/* Testimonials */
.testimonial-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  margin: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--primary-3);
}

.testimonial-author {
  font-weight: var(--font-weight-bold);
  color: var(--primary-1);
}

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 20px 0;
  margin: 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; } 