/*
Theme Name: RLTA-Theme
Theme URI: https://rlta.com
Template: astra
Author: RLTA
Description: Custom child theme for Reverse Logistics Trading Associates
Version: 1.0
*/

/* Your Brand Colors from the logo */
:root {
  --rlta-primary: #1CA68D;
  --rlta-accent: #04D99D;
  --rlta-secondary: #55D9A8;
  --rlta-light: #A7F2DD;
  --rlta-neutral: #F2F2F2;
  --rlta-gradient: linear-gradient(135deg, #2CBCA1 0%, #63DEC1 87%, #FFFFFF 100%);
}

/* Container widths for different screens */
.ast-container {
  max-width: 1400px !important;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

/* 4K monitors support */
@media (min-width: 2000px) {
  .ast-container {
    max-width: 1600px !important;
  }
  body { font-size: 18px; }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .ast-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--rlta-primary);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
}

/* Links and buttons */
a {
  color: var(--rlta-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--rlta-accent);
}

.wp-block-button__link,
.ast-button,
.button {
  background-color: var(--rlta-accent) !important;
  color: white !important;
  padding: 14px 28px !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

.wp-block-button__link:hover,
.ast-button:hover,
.button:hover {
  background-color: var(--rlta-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 166, 141, 0.3);
}

/* Hero section with gradient */
.hero-gradient {
  background: var(--rlta-gradient);
  padding: 100px 0;
  color: white;
}

.hero-gradient h1,
.hero-gradient h2,
.hero-gradient p {
  color: white !important;
}

/* Card styling for services */
.service-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(28, 166, 141, 0.15);
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Footer background */
.site-footer {
  background: var(--rlta-neutral);
  border-top: 1px solid #e0e0e0;
}
