:root {
  /* Pastel Color Palette for Musician Gear Rental */
  --primary-purple: #8B7BD8;
  --primary-blue: #7BB3D8;
  --primary-green: #7BD8A3;
  --primary-coral: #D8907B;
  --primary-amber: #D8C47B;
  
  /* Light Shades */
  --light-purple: #B8A8E8;
  --light-blue: #A8D3E8;
  --light-green: #A8E8C3;
  --light-coral: #E8B09B;
  --light-amber: #E8D49B;
  
  /* Dark Shades */
  --dark-purple: #6B5BB8;
  --dark-blue: #5B93B8;
  --dark-green: #5BB883;
  --dark-coral: #B8705B;
  --dark-amber: #B8A45B;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #212529;
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-purple);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-purple);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-blue);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-green);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-coral);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray);
}

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

/* Header Styles */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(139, 123, 216, 0.1);
  transition: all 0.3s ease;
}

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

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

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-blue) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: var(--primary-green);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

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

/* About Section */
#about {
  background-color: var(--light-gray);
}

.feature-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Services Section */
#services {
  background-color: var(--white);
}

.service-item {
  background: var(--light-gray);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-8px);
}

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

.service-content {
  padding: 1.5rem;
}

.price-tag {
  background: var(--primary-purple);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Features Section */
#features {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-amber) 100%);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--light-gray);
}

.price-plan-item {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
}

.price-plan-item:hover {
  transform: translateY(-10px);
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

/* Team Section */
#team {
  background-color: var(--white);
}

.team-member {
  text-align: center;
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-5px);
}

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

/* Reviews Section */
#reviews {
  background: linear-gradient(135deg, var(--light-coral) 0%, var(--light-purple) 100%);
}

.review-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* Case Study Section */
#casestudy {
  background-color: var(--light-gray);
}

.case-study-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* Process Section */
#process {
  background-color: var(--white);
}

.process-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
}

.timeline-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Career Section */
#career {
  background-color: var(--light-gray);
}

.career-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* Core Info Section */
#coreinfo {
  background-color: var(--white);
}

.coreinfo-item {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

/* Contact Section */
#contact {
  background: linear-gradient(135deg, var(--light-amber) 0%, var(--light-coral) 100%);
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background-color: var(--light-gray);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 123, 216, 0.25);
  background-color: var(--white);
}

.btn-primary {
  background: var(--primary-purple);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.contact-info {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Blog Section */
#Blog {
  background-color: var(--light-gray);
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-blue);
}

/* FAQ Section */
#faq {
  background-color: var(--white);
}

.faq-item {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-amber);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--gray);
  margin: 0;
}

/* Gallery Section */
#gallery {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-coral) 100%);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px 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;
}

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

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--light-purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-link:hover {
  color: var(--primary-purple);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
}

/* Utility Classes */
.text-primary-purple { color: var(--primary-purple); }
.text-primary-blue { color: var(--primary-blue); }
.text-primary-green { color: var(--primary-green); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-amber { color: var(--primary-amber); }

.bg-primary-purple { background-color: var(--primary-purple); }
.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-green { background-color: var(--primary-green); }
.bg-primary-coral { background-color: var(--primary-coral); }
.bg-primary-amber { background-color: var(--primary-amber); }

/* Breadcrumb styles */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}


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