/* Main CSS for Peer-to-Peer Gear Rental for Musicians */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-mint: #85d6b3;
  --primary-coral: #f09490;
  --primary-lavender: #a48fc0;
  --primary-peach: #ff916a;
  --primary-sky: #90badb;
  
  --light-mint: #c4e6d9;
  --light-coral: #ffb3c2;
  --light-lavender: #d2ccda;
  --light-peach: #ffd193;
  --light-sky: #bed9e1;
  
  --dark-mint: #35c170;
  --dark-coral: #ff6f7b;
  --dark-lavender: #987db3;
  --dark-peach: #f89c5f;
  --dark-sky: #47aad6;
  
  --text-dark: #283449;
  --text-light: #8c9193;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

h1 {
  font-size: 2.25rem; /* Conservative h1 size */
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem; /* Conservative paragraph size */
  margin-bottom: 1rem;
}

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

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decoration:nth-child(1) {
  width: 200px;
  height: 200px;
  background: var(--primary-coral);
  top: 10%;
  right: 15%;
}

.hero-decoration:nth-child(2) {
  width: 150px;
  height: 150px;
  background: var(--primary-peach);
  bottom: 20%;
  left: 10%;
}

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

/* Services Cards */
.service-card {
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .card-header {
  background: var(--primary-mint);
  border: none;
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-coral);
}

/* Features Grid */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-lavender);
  margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: scale(1.05);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.375rem 0.375rem 0 0;
}

/* Reviews/Testimonials */
.review-card {
  border-left: 4px solid var(--primary-coral);
  background: var(--bg-light);
  padding: 1.5rem;
}

/* Price Plan Cards */
.price-card {
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.price-card.featured {
  border-color: var(--primary-mint);
  transform: scale(1.05);
}

.price-header {
  background: var(--primary-lavender);
  padding: 2rem 1rem;
  text-align: center;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

/* FAQ Cards */
.faq-card {
  border-left: 4px solid var(--primary-peach);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 0.5rem;
}

.form-control:focus {
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 0.2rem rgba(118, 255, 177, 0.25);
}

.btn-primary {
  background-color: var(--primary-mint);
  border-color: var(--primary-mint);
  color: var(--text-dark);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-mint);
  border-color: var(--dark-mint);
}

/* Footer - High Contrast Colors Only */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-sky);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-sky);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.5rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

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

/* Completely disable Sal.js animations and make all elements visible */
[data-sal],
[data-sal-delay],
[data-sal-duration],
[data-sal-easing],
.sal-disabled,
.sal-animate {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  visibility: visible !important;
  display: inherit !important;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--bg-light);
}

.breadcrumb-img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

/* Timeline Items */
.timeline-item {
  border-left: 3px solid var(--primary-sky);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--primary-sky);
  border-radius: 50%;
}

/* Case Studies */
.case-study-card {
  background: var(--white);
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.case-study-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Process Steps */
.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
}

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

/* Career Cards */
.career-card {
  border: 1px solid #eff5fb;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-mint);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Core Info Grid */
.core-info-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-lavender);
  margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
} 

.hero-section h1 {
    padding-top: 250px;
}


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

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    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;
    }
}
