/* =====================================
   MURAL ARTIST BOOKING PLATFORM - MAIN CSS
   ===================================== */

/* CSS Variables - Mural Artist Color Palette */
:root {
  /* Primary Colors - Pastel High-Contrast */
  --primary-1: #5d7dff;     /* Electric Blue */
  --primary-2: #9f52bb;     /* Artistic Purple */
  --primary-3: #ff4832;     /* Vibrant Red */
  --primary-4: #ffb00c;     /* Creative Orange */
  --primary-5: #40cf82;     /* Fresh Green */
  
  /* Light Shades */
  --primary-1-light: #9f9bf9;
  --primary-2-light: #c9b4d0;
  --primary-3-light: #f0977a;
  --primary-4-light: #ffbf69;
  --primary-5-light: #74d290;
  
  /* Dark Shades */
  --primary-1-dark: #454dc5;
  --primary-2-dark: #90439b;
  --primary-3-dark: #a81d27;
  --primary-4-dark: #ea9d26;
  --primary-5-dark: #25934e;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #545c67;
  --dark-gray: #484f59;
  --black: #000000;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  
  /* Typography */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
  
  /* Borders */
  --border-radius: 8px;
  --border-radius-lg: 16px;
}

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

/* Section Spacing */
.section {
  padding: var(--section-padding);
}

/* Header Styles */
.navbar-brand {
  font-size: 1.58rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-1);
}

.navbar-nav .nav-link {
  font-weight: var(--font-weight-medium);
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-1-light) 0%, var(--primary-2-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.23rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

/* Button Styles */
.btn-primary-custom {
  background-color: var(--primary-1);
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 30px;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-1-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-custom {
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
  background: transparent;
  border-radius: var(--border-radius);
  padding: 10px 28px;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--primary-1);
  color: var(--white);
}

/* Card Styles */
.card-custom {
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-custom:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.card-custom .card-header {
  background-color: var(--primary-1);
  color: var(--white);
  border: none;
  padding: 1.5rem;
}

.card-custom .card-body {
  padding: 2rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-1-dark);
}

.service-card h3 {
  font-size: 1.53rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--medium-gray);
  margin-bottom: 1.63rem;
}

.service-price {
  font-size: 1.91rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-3);
}

/* Team Member Cards */
.team-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
}

.team-card .team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card .team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-card h4 {
  font-size: 1.36rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-1-dark);
  margin-bottom: 0.61rem;
}

.team-card .team-role {
  color: var(--medium-gray);
  font-size: 0.92rem;
}

/* Review Cards */
.review-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-2);
}

.review-card .review-text {
  font-style: italic;
  color: var(--medium-gray);
  margin-bottom: 1rem;
  font-size: 1.20rem;
}

.review-card .review-author {
  font-weight: var(--font-weight-bold);
  color: var(--primary-1-dark);
}

/* FAQ Cards */
.faq-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-card .faq-question {
  background-color: var(--primary-1-light);
  color: var(--primary-1-dark);
  padding: 1.5rem;
  margin: 0;
  font-weight: var(--font-weight-bold);
}

.faq-card .faq-answer {
  padding: 1.5rem;
  color: var(--medium-gray);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.contact-form .form-control {
  border-radius: var(--border-radius);
  border: 2px solid var(--light-gray);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(103, 93, 255, 0.25);
}

.contact-form .form-label {
  font-weight: var(--font-weight-medium);
  color: var(--dark-gray);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-1-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-1-light);
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-1);
}

.text-secondary-custom {
  color: var(--primary-2);
}

.bg-primary-custom {
  background-color: var(--primary-1);
}

.bg-light-custom {
  background-color: var(--light-gray);
}

/* Section Titles */
.section-title {
  font-size: 2.53rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.33rem;
  color: var(--medium-gray);
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  color: var(--medium-gray);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Decorative Elements */
.decorative-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.decorative-shape.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: var(--primary-3);
  border-radius: 50%;
}

.decorative-shape.shape-2 {
  bottom: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: var(--primary-4);
  border-radius: 20px;
  transform: rotate(45deg);
}

/* Lazy Loading Styles */
.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy.loaded {
  opacity: 1;
}

/* Responsive adjustments are handled in responsive.css */ 


/* 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;
}

.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;
    }
}
