/* Sound Merch Template - Main CSS */
:root {
  /* Primary Color Palette - Sound Theme */
  --primary-purple: #7144aa;
  --primary-orange: #ff8f0f;
  --primary-cyan: #11abd1;
  --primary-emerald: #18c07f;
  --primary-rose: #f7567f;
  
  /* Light Shades */
  --light-purple: #d8cef7;
  --light-orange: #FFF7ED;
  --light-cyan: #ECFEFF;
  --light-emerald: #ECFDF5;
  --light-rose: #FFF1F2;
  
  /* Dark Shades */
  --dark-purple: #4f1ea1;
  --dark-orange: #d56818;
  --dark-cyan: #0b8aa1;
  --dark-emerald: #09754e;
  --dark-rose: #d6306a;
  
  /* Additional Colors */
  --gradient-bg: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
  --text-dark: #222c37;
  --text-light: #737888;
  --white: #FFFFFF;
  --black: #000000;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17.00px;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography - Conservative Sizes */
h1, .h1 {
  font-size: 2.54rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.05rem;
}

h2, .h2 {
  font-size: 2.14rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.97rem;
}

h3, .h3 {
  font-size: 1.61rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.72rem;
}

h4, .h4 {
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.57rem;
}

p {
  font-size: 1.11rem;
  margin-bottom: 1.05rem;
  max-width: 65ch;
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(19px);
  border-bottom: 1px solid rgba(94, 72, 183, 0.10);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.61rem;
  font-weight: 700;
  color: var(--primary-purple) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-bg);
  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('../YIJ_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.54rem;
  font-weight: 800;
  margin-bottom: 1.68rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.38rem;
  margin-bottom: 2.21rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.13rem;
  margin-bottom: 2.55rem;
  opacity: 0.8;
}

/* Button Styles */
.btn-primary-custom {
  background: var(--primary-orange);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--dark-orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(248, 154, 45, 0.30);
  color: var(--white);
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.54rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 1.05rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.38rem;
  color: var(--primary-cyan);
  margin-bottom: 1.68rem;
  text-align: center;
}

.section-desc {
  font-size: 1.13rem;
  color: var(--text-light);
  margin-bottom: 3.23rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.17rem;
}

.service-card {
  background: var(--white);
  border-radius: 23px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 49, 178, 0.10);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-11px);
  box-shadow: 0 21px 40px rgba(113, 78, 190, 0.20);
}

.service-icon {
  font-size: 3.03rem;
  color: var(--primary-purple);
  margin-bottom: 1.68rem;
}

.service-name {
  font-size: 1.61rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.05rem;
}

.service-price {
  font-size: 2.14rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1.05rem;
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 1.68rem;
  max-width: none;
}

.service-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-emerald);
  position: absolute;
  left: 0;
}

/* About Section */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.17rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-purple);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: var(--primary-purple);
  color: var(--white);
}

.feature-icon {
  font-size: 2.54rem;
  color: var(--primary-purple);
  margin-bottom: 1.05rem;
}

.feature-item:hover .feature-icon {
  color: var(--white);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.17rem;
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 23px 40px rgba(96, 63, 173, 0.20);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-purple);
}

.team-name {
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.57rem;
}

.team-role {
  color: var(--primary-cyan);
  font-weight: 500;
}

/* Reviews/Testimonials */
.reviews-slider {
  margin-top: 3.17rem;
}

.review-item {
  background: var(--white);
  border-radius: 23px;
  padding: 2.5rem;
  margin: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.review-text {
  font-size: 1.13rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2.21rem;
  line-height: 1.7;
  max-width: none;
}

.review-author {
  font-weight: 600;
  color: var(--primary-purple);
  font-size: 1.13rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.05rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--light-purple);
  padding: 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-purple);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-purple);
  color: var(--white);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-light);
  border-top: 1px solid rgba(98, 56, 190, 0.10);
  display: none;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2.22rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.17rem;
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(106, 71, 180, 0.20);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.05rem;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1.05rem;
  max-width: none;
}

.blog-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 500;
}

/* Contact Section */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.68rem;
}

.form-control {
  border: 2px solid rgba(109, 73, 196, 0.10);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1.11rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(84, 62, 194, 0.25);
  outline: none;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.21rem;
}

.footer-section h4 {
  color: var(--primary-orange);
  margin-bottom: 1.05rem;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.57rem;
}

.footer-link:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.12rem;
  text-align: center;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-bg);
}

.shadow-custom {
  box-shadow: 0 20px 40px rgba(123, 79, 183, 0.20);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Breadcrumb Image */
.breadcrumb-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 2rem 0;
}



/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
