@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  /* Corporate Blue Palette */
  --primary-dark: #0f172a; /* Slate 900 */
  --primary-blue: #1e3a8a; /* Blue 900 - Header */
  --accent-blue: #2563eb;  /* Blue 600 - Buttons/Links */
  --accent-blue-hover: #1d4ed8; /* Blue 700 */
  --bg-color: #f8fafc;     /* Slate 50 - Main Background */
  --surface-color: #ffffff; /* Card Background */
  --text-main: #1e293b;    /* Slate 800 - Body Text */
  --text-muted: #64748b;   /* Slate 500 - Subtext */
  --border-color: #e2e8f0; /* Slate 200 */
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--accent-blue);
  transition: color 0.2s ease;
}

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

/* Header & Navigation */
.site-header {
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.site-logo span {
  color: #93c5fd; /* Light blue accent for logo */
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: #ffffff;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--accent-blue-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-color), #ffffff);
}

.hero-tagline {
  display: inline-block;
  background-color: #e0e7ff;
  color: var(--accent-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  color: var(--accent-blue);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-actions .btn-outline {
  border-color: var(--border-color);
  color: var(--text-main);
}
.hero-actions .btn-outline:hover {
  border-color: var(--text-muted);
  background-color: transparent;
}

/* Brands / Services Section */
.section-brands {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Corporate Cards */
.card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  background-color: #eff6ff;
  color: var(--accent-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.footer-nav a {
  color: #cbd5e1;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .main-nav { display: none; }
}

/* =====================================================
   KADENCE THEME GLOBAL OVERRIDES
   These styles restyle the existing Kadence theme elements
   on ALL pages (About, Contact, Privacy Policy, Cart, etc.)
   ===================================================== */

/* --- Kadence Header Override --- */
#masthead,
.site-header,
header.site-header {
  background-color: var(--primary-blue) !important;
  box-shadow: var(--shadow-md) !important;
}

/* Kadence header inner container */
.site-header .site-header-inner-wrap,
.site-header .site-header-wrap,
.site-header .site-header-row-container-inner {
  background-color: var(--primary-blue) !important;
}

/* Kadence site title/branding */
.site-branding .site-title,
.site-branding .site-title a,
.site-header .site-title a,
.kadence-site-branding .site-title a {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
}

/* Kadence logo image */
.site-branding img,
.custom-logo {
  max-height: 80px !important;
  width: auto !important;
}

/* Kadence navigation links */
.site-header .main-navigation a,
.site-header .navigation a,
.site-header nav a,
.header-navigation a,
#primary-menu a,
#primary-menu li a,
.menu-item a {
  color: #e2e8f0 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  transition: color 0.2s ease !important;
}

.site-header .main-navigation a:hover,
.site-header nav a:hover,
#primary-menu a:hover,
.menu-item a:hover {
  color: #ffffff !important;
}

/* Kadence header button/CTA */
.site-header .button,
.site-header .wp-block-button__link,
.header-button a {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.site-header .button:hover,
.site-header .wp-block-button__link:hover,
.header-button a:hover {
  border-color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* --- Kadence Main Content Area --- */
.site-main,
.entry-content,
.content-area {
  font-family: 'Inter', sans-serif !important;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Outfit', sans-serif !important;
  color: var(--primary-dark) !important;
}

/* Page titles */
.entry-hero-container-inner,
.entry-hero .entry-header {
  background: linear-gradient(to bottom, var(--bg-color), #ffffff) !important;
  padding: 4rem 2rem !important;
  text-align: center !important;
}

.entry-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 3rem !important;
  font-weight: 800 !important;
  color: var(--primary-dark) !important;
}

/* --- Kadence Footer Override --- */
#colophon,
.site-footer,
footer.site-footer {
  background-color: var(--primary-dark) !important;
  color: #94a3b8 !important;
  font-family: 'Inter', sans-serif !important;
}

.site-footer a,
.site-footer .footer-navigation a,
#colophon a {
  color: #cbd5e1 !important;
}

.site-footer a:hover,
.site-footer .footer-navigation a:hover,
#colophon a:hover {
  color: #ffffff !important;
}

.footer-widget-area,
.site-footer .widget {
  color: #94a3b8 !important;
}

.site-footer .widget-title,
.site-footer h2,
.site-footer h3 {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
}

/* Footer bottom bar */
.site-footer .site-footer-bottom-wrap,
.site-info,
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #94a3b8 !important;
}

.site-info a {
  color: #cbd5e1 !important;
}

/* --- WooCommerce Overrides --- */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button {
  background-color: var(--accent-blue) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 0.75rem 1.5rem !important;
  transition: all 0.3s ease !important;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background-color: var(--accent-blue-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* WooCommerce product titles */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Outfit', sans-serif !important;
  color: var(--primary-dark) !important;
}

/* WooCommerce product cards */
.woocommerce ul.products li.product {
  background: var(--surface-color) !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-hover) !important;
}

/* WooCommerce prices */
.woocommerce .price,
.woocommerce .amount {
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
}

/* WooCommerce form inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-input-wrapper input,
.woocommerce-input-wrapper select {
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  padding: 0.75rem !important;
  font-family: 'Inter', sans-serif !important;
}

/* --- WPForms / Contact Form Overrides --- */
.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form textarea {
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  padding: 0.75rem !important;
  font-family: 'Inter', sans-serif !important;
}

.wpforms-container .wpforms-form button[type="submit"],
.wpforms-submit {
  background-color: var(--accent-blue) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 0.75rem 1.5rem !important;
}

.wpforms-container .wpforms-form button[type="submit"]:hover {
  background-color: var(--accent-blue-hover) !important;
}

/* --- General WordPress Overrides --- */
.wp-block-button__link {
  background-color: var(--accent-blue) !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
}

.wp-block-button__link:hover {
  background-color: var(--accent-blue-hover) !important;
}

/* Remove Kadence theme credit */
.site-footer .powered-by-developer,
.site-info .developer-credits {
  display: none !important;
}
