/* Pop-up Art Gallery Logistics Company - Main Styles */

:root {
  /* Color Palette - Pastel High-Contrast Colors */
  --primary-coral: #ff907a;
  --primary-mint: #43bfae;
  --primary-lavender: #b0dccf;
  --primary-peach: #ffdd35;
  --primary-sky: #80adef;
  
  /* Light/Dark Shades */
  --light-coral: #ffa8a8;
  --dark-coral: #b7544f;
  --light-mint: #6ebdb3;
  --dark-mint: #36b2b1;
  --light-lavender: #e0ffec;
  --dark-lavender: #72bf9c;
  --light-peach: #e6dd5a;
  --dark-peach: #d0be2d;
  --light-sky: #b0ccff;
  --dark-sky: #6cbedd;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.4rem;
  --font-size-h4: 1.2rem;
  --navbar-brand-size: 1.3rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #403c3c;
  font-size: var(--font-size-base);
}

/* Conservative Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Navbar Conservative Sizing */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 600;
  color: var(--primary-coral);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-lavender);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 225px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--dark-mint);
  margin-bottom: 1.5rem;
}

.section-desc {
  color: #6d6d6d;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid var(--light-lavender);
}

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

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

/* Features Cards */
.feature-card {
  background: var(--light-sky);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px solid var(--primary-sky);
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 3px solid var(--light-peach);
  margin-bottom: 2rem;
}

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

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 2px solid var(--light-mint);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-mint);
  margin-bottom: 1rem;
}

/* Reviews Cards */
.review-card {
  background: var(--light-lavender);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-lavender);
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border: 2px solid var(--light-peach);
  margin-bottom: 2rem;
}

/* Process Cards */
.process-card {
  background: var(--light-sky);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  border: 2px solid var(--primary-sky);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-coral);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Timeline Cards */
.timeline-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary-mint);
}

/* Career Cards */
.career-card {
  background: var(--light-coral);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid var(--primary-coral);
}

/* Core Info Cards */
.core-info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--light-lavender);
  margin-bottom: 2rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border: 1px solid var(--light-mint);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-coral);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #6d6d6d;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 2px solid var(--light-peach);
}

.form-control {
  border: 2px solid var(--light-mint);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 1rem;
}

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

.btn-primary {
  background: var(--primary-coral);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-coral);
  transform: translateY(-2px);
}

/* Gallery */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

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

/* Footer */
.footer {
  background: var(--primary-coral);
  color: white;
  padding: 50px 0 20px;
}

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

.footer a {
  color: var(--light-coral);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Responsive Design */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 20px 0;
  background: var(--light-lavender);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

/* Utilities */
.text-primary-coral { color: var(--primary-coral); }
.text-primary-mint { color: var(--primary-mint); }
.text-primary-lavender { color: var(--primary-lavender); }
.text-primary-peach { color: var(--primary-peach); }
.text-primary-sky { color: var(--primary-sky); }

.bg-light-coral { background-color: var(--light-coral); }
.bg-light-mint { background-color: var(--light-mint); }
.bg-light-lavender { background-color: var(--light-lavender); }
.bg-light-peach { background-color: var(--light-peach); }
.bg-light-sky { background-color: var(--light-sky); } 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
