/* Studio Lighting Gear Rental - Main Styles */
:root {
  /* Primary Color Palette - 5 colors with light/dark shades */
  --primary-gold: #D4AF37;
  --primary-gold-light: #E8C96F;
  --primary-gold-dark: #B8941A;
  
  --primary-slate: #334155;
  --primary-slate-light: #64748B;
  --primary-slate-dark: #1E293B;
  
  --primary-cream: #FEF7ED;
  --primary-cream-light: #FFFBF5;
  --primary-cream-dark: #F97316;
  
  --primary-navy: #1E3A8A;
  --primary-navy-light: #3B82F6;
  --primary-navy-dark: #1E40AF;
  
  --primary-charcoal: #111827;
  --primary-charcoal-light: #374151;
  --primary-charcoal-dark: #030712;
  
  /* Typography */
  --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Conservative font sizes */
  --navbar-brand-size: 1.5rem;
  --h1-size: 2.25rem;
  --h2-size: 1.875rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --p-size: 1rem;
}

/* Base Typography */
body {
  font-family: var(--body-font);
  font-size: var(--p-size);
  line-height: 1.6;
  color: var(--primary-charcoal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

/* Conservative navbar brand sizing */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 700;
  color: var(--primary-gold);
}

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

.hero-content {
  z-index: 2;
    padding-top: 175px;
}

.hero-image {
  position: relative;
}

/* Decorative shapes for hero */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-gold);
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  background: var(--primary-navy);
}

/* Services Cards */
.service-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

.service-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.service-price {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 1.5rem;
}

/* Team Cards */
.team-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-card .card-img-top {
  height: 280px;
  object-fit: cover;
}

/* Review Cards */
.review-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: var(--primary-cream);
}

/* Price Plan Cards */
.price-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.price-card.featured {
  border: 3px solid var(--primary-gold);
  transform: scale(1.05);
}

/* FAQ Cards */
.faq-card {
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

/* Gallery Section */
.gallery-image {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.02);
}

/* Contact Form */
.contact-form {
  background: var(--primary-cream);
  border-radius: 16px;
  padding: 2rem;
}

.form-control {
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
}

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

.btn-outline-primary {
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}

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

/* Footer */
.footer {
  background-color: var(--primary-charcoal);
  color: white;
}

.footer h5 {
  color: var(--primary-gold);
}

.footer a {
  color: #9CA3AF;
  text-decoration: none;
}

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

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

/* Breadcrumb */
.breadcrumb-image {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

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



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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

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



/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

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

.x-link i {
    display: none;
}

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