@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Roboto+Condensed:wght@700;900&display=swap');
/* Simple responsive styles for Tradeas landing pages */

:root{--accent:#0066cc;--accent-light:#e6f0ff;--dark:#1a1a1a;--muted:#666;--gold:#d3a200}
*{box-sizing:border-box}
body{font-family:'Outfit', Segoe UI, Roboto, sans-serif;line-height:1.6;margin:0;color:#333;background-color:#fcfcfc}
.container{max-width:1100px;margin:0 auto;padding:1rem}
.site-header{background:#fff;border-bottom:1px solid #eee}
.site-header .container{display:flex;align-items:center;justify-content:space-between;padding:0.75rem 1rem}
.brand{display:flex;align-items:center;text-decoration:none}
.brand img{height:50px;width:auto;transition:transform 0.3s ease}
.brand:hover img{transform:scale(1.05)}
.site-header nav a{margin-left:1.5rem;color:var(--dark);text-decoration:none;font-weight:500;transition:color 0.3s ease}
.site-header nav a:hover{color:var(--gold)}
.hero{background:linear-gradient(90deg, #f7fbff, #ffffff);padding:3rem 0}
.hero h1{margin:0 0 0.5rem;font-size:2rem}
.btn{display:inline-block;padding:0.5rem 0.9rem;background:var(--accent);color:#fff;border-radius:4px;text-decoration:none}
.btn-secondary{background:#eee;color:#111;margin-left:0.5rem}
.features, .product-grid{margin-top:2rem;padding-bottom:3rem}
.swiper{width:100%;height:auto;padding:20px 0 50px}
.swiper-slide{height:auto;display:flex;justify-content:center}
.card, .features article{width:100%;max-width:350px;background:#fff;padding:1.5rem;border-radius:12px;border:1px solid #eee;box-shadow:0 10px 30px rgba(0,0,0,0.05);transition:transform 0.3s ease, box-shadow 0.3s ease;display:flex;flex-direction:column}
.card:hover, .features article:hover{transform:translateY(-5px);box-shadow:0 15px 40px rgba(0,0,0,0.1)}
.card img, .features article img{width:100%;height:220px;object-fit:cover;border-radius:8px;margin-bottom:1rem}
.card h2, .features article h3{font-size:1.25rem;margin:0.5rem 0;color:var(--dark)}
.card p, .features article p{font-size:0.95rem;color:var(--muted);flex-grow:1}
.swiper-pagination-bullet-active{background:var(--gold) !important}
.swiper-button-next, .swiper-button-prev{color:var(--gold) !important}
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 50px 0 0 0;
  font-family: 'Roboto Condensed', 'Outfit', sans-serif;
  border-top: none;
}
.site-footer .container {
  display: block; /* Remove flex from container */
}
.footer-content {
  display: flex;
  flex-wrap: wrap;       /* Allows wrapping on smaller screens */
  justify-content: space-between; /* Spreads sections out horizontally */
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section {
  flex: 1;            /* This makes them share space equally */
  min-width: 200px;   /* Prevents them from getting too squished */
}
.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 0.75rem;
}
.footer-list a, .contact-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.footer-list a:hover, .contact-link:hover {
  opacity: 0.7;
}
.address-text {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  color: #888;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-form label{display:block;margin-bottom:0.5rem}
.contact-form input,.contact-form textarea{width:100%;padding:0.5rem;margin-top:0.25rem;border:1px solid #ddd;border-radius:4px}
@media(max-width:700px){
  .features{flex-direction:column}
  .site-header .container{flex-direction:row;gap:0.5rem}
  .hero h1{font-size:1.4rem}
}
