/* ===========================
   URBAN SOUNDSCAPE STUDIO CSS
   ===========================*/

/* CSS Variables - Color Palette */
:root {
  --primary-deep: #1a2332;
  --primary-mid: #2d4159;
  --primary-light: #4a6b8a;
  --accent-warm: #e8a87c;
  --accent-bright: #f4d03f;
  --neutral-dark: #2c2c2c;
  --neutral-mid: #666666;
  --neutral-light: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-mid) 100%);
  --gradient-accent: linear-gradient(45deg, var(--accent-warm) 0%, var(--accent-bright) 100%);
  --gradient-hero: linear-gradient(rgba(26, 35, 50, 0.8), rgba(45, 65, 89, 0.6));
}

/* Base Typography */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--white);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header & Navigation */
.navbar {
  background: var(--gradient-primary);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--neutral-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-bright);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.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.8%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: var(--gradient-hero), url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--primary-mid);
  margin-bottom: 1rem;
  text-align: center;
}

.section-desc {
  font-size: 1rem;
  color: var(--neutral-mid);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Feature Cards (for additional pages) */
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-warm);
  margin: 1rem 0;
}

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Reviews/Testimonials */
.review-card {
  background: var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-warm);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.review-author {
  font-weight: 600;
  color: var(--primary-mid);
}

/* FAQ Cards */
.faq-card {
  background: var(--white);
  border: 1px solid var(--neutral-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-light);
  color: var(--white);
  padding: 1rem;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 1rem;
  background: var(--white);
  color: var(--neutral-dark);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 12px;
}

.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 6px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-mid);
  box-shadow: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-accent);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
  background: var(--gradient-accent);
}

.btn-outline-primary {
  border: 2px solid var(--primary-mid);
  color: var(--primary-mid);
  background: transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-mid);
  color: var(--white);
  border-color: var(--primary-mid);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--accent-bright);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-bright);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Utility Classes */
.bg-primary-gradient {
  background: var(--gradient-primary);
}

.bg-accent-gradient {
  background: var(--gradient-accent);
}

.text-primary-deep {
  color: var(--primary-deep);
}

.text-accent-warm {
  color: var(--accent-warm);
}

.text-success {
  color: #28a745;
}

/* Lazy Loading */
.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy.fade-in {
  opacity: 1;
}

/* Loading placeholder for images */
img[data-src] {
  background: linear-gradient(90deg, var(--neutral-light) 25%, transparent 50%, var(--neutral-light) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Price Plans */
.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--accent-warm);
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-light);
}

/* Process Steps */
.process-item {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-mid);
}

/* Career Items */
.career-item {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.career-role {
  color: var(--accent-warm);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Core Info Items */
.coreinfo-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

/* Case Study Items */
.casestudy-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

/* Blog Grid */
#blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: 1.5rem;
} 


/* 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;
    }
}
