/* Music Composition Template - Main CSS */

:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-color: #206b1f; /* Deep Forest Green */
  --secondary-color: #d7215c; /* Vibrant Pink */ 
  --accent-color: #ff8200; /* Orange */
  --tertiary-color: #5527b5; /* Deep Purple */
  --quaternary-color: #007c80; /* Teal */
  
  --primary-light: #4c9d56;
  --primary-dark: #276326;
  --secondary-light: #dc83a7;
  --secondary-dark: #960c5e;
  --accent-light: #f1c037;
  --accent-dark: #d14800;
  
  --text-primary: #090909;
  --text-secondary: #655e5d;
  --background-light: #FAFAFA;
  --background-dark: #1a262b;
  --white: #FFFFFF;
  --black: #000000;
  
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-navbar: 1rem;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-secondary: linear-gradient(135deg, var(--accent-color), var(--tertiary-color));
  --gradient-hero: linear-gradient(135deg, var(--primary-color), var(--quaternary-color));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-light);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

.navbar {
  background: var(--white);
  box-shadow: 0 6px 26px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: var(--font-size-navbar) !important;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--text-primary) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 50px !important;
  color: var(--white);
}

.hero h1 {
  padding-top: 50px !important;
  color: var(--white);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-lg);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.about {
  background: var(--background-light);
}

.about-feature {
  text-align: center;
  padding: var(--spacing-md);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-6px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.services {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: var(--spacing-md);
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: var(--spacing-md);
}

.service-price {
  font-size: var(--font-size-h3);
  color: var(--primary-color);
  font-weight: 700;
  margin-top: var(--spacing-sm);
}

/* Features Section */
.features {
  background-color: #65696b !important;
  color: var(--white);
}

.features .section-title,
.features .section-subtitle {
  color: var(--white);
}

.feature-item {
  text-align: center;
  padding: var(--spacing-md);
}

.feature-item i {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

/* Price Plan Section */
.price-plan {
  background: var(--background-light);
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: var(--spacing-md);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card .price {
  font-size: var(--font-size-h2);
  color: var(--primary-color);
  font-weight: 700;
  margin: var(--spacing-sm) 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.price-features li {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid #f0f0f0;
}

.team {
  background: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--spacing-sm);
  border: 5px solid var(--primary-light);
}

.team-member h5 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.team-member p {
  color: var(--text-secondary);
}

.reviews {
  background: var(--background-light);
}

.review-card {
  background: var(--white) !important;
  border-radius: 15px !important;
  padding: var(--spacing-lg) !important;
  margin-bottom: var(--spacing-md) !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

.review-card .stars {
  color: var(--accent-color);
  margin-bottom: var(--spacing-sm);
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: var(--spacing-sm);
}

/* Case Studies Section */
.case-studies {
  background: var(--white);
}

.case-study-card {
  background: var(--background-light);
  border-radius: 15px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process {
 background-color: #2b2b2b !important;
  color: var(--white);
}

.process .section-title,
.process .section-subtitle {
  color: var(--white);
}

.process-step {
  text-align: center;
  padding: var(--spacing-md);
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-large);
  margin: 0 auto var(--spacing-sm);
}

/* Timeline Section */
.timeline {
  background: var(--background-light);
}

.timeline-item {
  border-left: 3px solid var(--primary-color);
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  left: -9px;
  top: 0;
}

/* Career Section */
.career {
  background: var(--white);
}

.career-card {
  background: var(--background-light);
  border-radius: 15px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  border-left: 5px solid var(--primary-color);
}

/* Core Info Section */
.core-info {
  background: var(--background-light);
}

.core-info-item {
  text-align: center;
  padding: var(--spacing-md);
}

.core-info-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* Blog Section */
.blog {
  background: var(--background-light);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: var(--spacing-md);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: var(--spacing-md);
}

/* Gallery Section */
.gallery {
  background: var(--white);
}

.gallery-item {
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.faq {
  background: var(--white);
}

.faq-item {
  background: var(--background-light) !important;
  border-radius: 10px !important;
  margin-bottom: var(--spacing-sm) !important;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  padding: var(--spacing-md) !important;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-dark) !important;
}

.faq-answer {
  padding: var(--spacing-md) !important;
  background: var(--white) !important;
  display: none;
}

.faq-answer.active {
  display: block;
}

.contact {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact .section-title,
.contact .section-subtitle {
  color: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.contact-form .form-control {
  border: 2px solid #e2d6d6;
  border-radius: 10px;
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-base);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(39, 146, 50, 0.25);
}

.contact-form .btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
}

.footer {
  background: var(--background-dark);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer h5 {
  color: var(--primary-light);
  margin-bottom: var(--spacing-md);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light);
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-md);
  text-align: center;
}

.btn-gradient {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  color: var(--white);
}

.breadcrumb {
  background: transparent;
  padding: var(--spacing-md) 0;
}

.breadcrumb img {
  height: 40px;
  width: auto;
}

#space {
  min-height: 80vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.additional-section {
  padding: var(--spacing-xl) 0;
}

.additional-section:nth-child(even) {
  background: var(--background-light);
}

.additional-section:nth-child(odd) {
  background: var(--white);
}

.additional-item {
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.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);
}

.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;
    }
}
