/* =====================================================
   ScoreCloud Template - Main CSS
   Cloud Platform for Collaborative Musical-Score Annotation
   ===================================================== */

/* Bootstrap 5 CDN Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Colors - High Contrast Pastels */
  --primary-1: #6064de; /* Indigo */
  --primary-2: #9361fa; /* Purple */
  --primary-3: #18d2d8; /* Cyan */
  --primary-4: #16ceae; /* Emerald */
  --primary-5: #e8b320; /* Amber */
  
  /* Light Shades */
  --primary-1-light: #9bb0ff;
  --primary-2-light: #b6a9ff;
  --primary-3-light: #66efff;
  --primary-4-light: #84f0ca;
  --primary-5-light: #ffe433;
  
  /* Dark Shades */
  --primary-1-dark: #4d50d8;
  --primary-2-dark: #8729ff;
  --primary-3-dark: #10a2b9;
  --primary-4-dark: #0bab71;
  --primary-5-dark: #c46f00;
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #d4dbe3;
  --gray-300: #c1cbd6;
  --gray-700: #4f5a6a;
  --gray-800: #1e273e;
  --gray-900: #111b2d;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--gray-900);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--gray-700);
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-1), var(--primary-3));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
    padding-top: 150px;
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: 1.73rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-lg);
  margin-bottom: 3rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: var(--font-size-3xl);
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--font-size-xl);
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: var(--font-size-lg);
  color: var(--gray-700);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background-color: var(--gray-50);
}

.feature-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.64rem;
  color: var(--primary-1);
  margin-bottom: 1.63rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--primary-1-light), var(--primary-2-light));
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 110px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.60rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-1);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--gray-50);
}

.price-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary-1);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary-1);
  background: linear-gradient(135deg, var(--primary-1-light), var(--primary-2-light));
}

.price-amount {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-1);
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--primary-3-light), var(--primary-4-light));
}

.team-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 112px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-1-light);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--white);
}

.review-card {
  background: var(--gray-50);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 7px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-1);
  height: 100%;
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--gray-50);
}

.case-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 19px 40px rgba(0, 0, 0, 0.15);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--primary-4-light), var(--primary-5-light));
}

.process-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  position: relative;
  height: 100%;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--white);
}

.timeline-card {
  background: var(--gray-50);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-2);
  height: 100%;
}

/* Career Section */
.career-section {
  background-color: var(--gray-50);
}

.career-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--primary-1-light), var(--primary-3-light));
}

.coreinfo-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Form Section */
.contact-section {
  background-color: var(--gray-50);
}

.contact-form {
  background: var(--white);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
}

.form-control {
  border-radius: 0.5rem;
  border: 1px solid var(--gray-300);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(142, 124, 255, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-1-dark), var(--primary-2-dark));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(115, 140, 253, 0.30);
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--gray-50);
}

.accordion-button {
  background-color: var(--white);
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--primary-1-dark);
  box-shadow: none;
}

.accordion-body {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--white);
  padding: var(--section-padding);
}

.gallery-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.65rem;
}

.footer p, .footer small {
  color: var(--gray-300);
}

.footer a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-1-light);
}

/* Bootstrap Grid Extensions */
@media (min-width: 1200px) {
  .col-xl {
    flex: 0 0 auto;
    width: 20%; /* 5-column layout: 100% / 5 = 20% */
  }
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-1-light), var(--primary-2-light));
  opacity: 0.1;
  z-index: 1;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-1), var(--primary-3));
  border-radius: 1rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--font-size-2xl);
}

/* Additional Page Sections */
.add-page-section {
  padding: var(--section-padding);
}

.add-page-section:nth-child(even) {
  background-color: var(--gray-50);
}

.add-page-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.add-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.15);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 24px;
  height: 24px;
  object-fit: cover;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
