/*
 Theme Name:   Lifebridge Theme
 Theme URI:    http://lifebridge.sqolax.com
 Description:  A fully custom, premium, full-width e-commerce theme for Lifebridge Wound Care.
 Author:       Antigravity
 Author URI:   #
 Version:      1.0.0
*/

:root {
  --primary: #0A2540;
  --secondary: #00D4FF;
  --accent: #32E0C4;
  --bg-light: #F8FAFC;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --glass: rgba(255, 255, 255, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Full Width Wrappers */
.container-full { width: 100vw; max-width: 100%; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 0;
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.site-brand a {
  font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700;
  color: var(--primary); text-decoration: none;
}
.main-nav ul { list-style: none; display: flex; gap: 2rem; }
.main-nav a {
  text-decoration: none; color: var(--text-dark); font-weight: 500; transition: 0.3s;
}
.main-nav a:hover { color: var(--secondary); }
.header-actions { display: flex; gap: 1.5rem; align-items: center; }
.cart-icon { display: flex; align-items: center; gap: 0.5rem; color: var(--primary); text-decoration: none; font-weight: 600; }
.btn-primary {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: var(--primary); padding: 0.75rem 2rem; border-radius: 50px; text-decoration: none;
  font-weight: 700; transition: 0.3s; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,212,255,0.3); }

/* Split Screen Hero */
.hero-split {
  display: flex; min-height: 90vh; align-items: center;
  background: #fff;
}
.hero-content {
  flex: 1; padding: 4rem 10%;
}
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.25rem; color: var(--text-light); margin-bottom: 2rem; }
.hero-image {
  flex: 1; height: 90vh;
  background-image: url('assets/img/hero.jpg');
  background-size: cover; background-position: center;
  border-radius: 40px 0 0 40px;
  box-shadow: -20px 0 50px rgba(0,0,0,0.1);
}

/* Services */
.services-section { padding: 6rem 0; }
.section-title { text-align: center; margin-bottom: 4rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
}
.service-card {
  background: #fff; border-radius: 24px; padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  transition: 0.4s; border: 1px solid rgba(0,0,0,0.02);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,212,255,0.1); }
.service-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; margin-bottom: 1.5rem; }

/* Footer */
.site-footer { background: var(--primary); color: #fff; padding: 4rem 0 2rem; margin-top: 4rem; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: #fff; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; color: rgba(255,255,255,0.5); }

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-split { flex-direction: column; }
  .hero-content { padding: 4rem 2rem; text-align: center; }
  .hero-image { width: 100%; height: 50vh; border-radius: 0; }
}
@media (max-width: 768px) {
  .main-nav { display: none; } /* Add hamburger logic later if needed */
  .hero-content h1 { font-size: 2.5rem; }
  .header-actions .btn-primary { display: none; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

