/*
Theme Name: KOhl Marketing Theme
Theme URI: https://kohlconnect.com
Description: Custom WordPress Child Theme for Kohl Enterprises based on Blocksy.
Author: Kohl Enterprises
Author URI: https://kohlconnect.com
Template: blocksy
Version: 1.0.13
Text Domain: kohl-marketing-theme
*/

/* --- Kohl Enterprises Design System & Global Tokens --- */
:root {
  --kohl-primary-dark: #0B132B;
  --kohl-secondary-dark: #1C2541;
  --kohl-vivid-gold: #F7B801;
  --kohl-electric-cyan: #06B6D4;
  --kohl-light-bg: #F8FAFC;
  --kohl-white: #FFFFFF;
}

/* --- Ensure WordPress Admin Bar Dropdowns Render Above Custom Header --- */
#wpadminbar {
  z-index: 999999 !important;
}

body.admin-bar .kohl-global-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar .kohl-global-header {
    top: 46px !important;
  }
}

/* --- Global Fixed Header Positioning --- */
.kohl-global-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99990 !important;
  background: rgba(11, 19, 43, 0.96) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.kohl-header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 clamp(16px, 4vw, 48px) !important;
  height: 80px !important;
}

/* --- Desktop Header Layout (> 1024px) --- */
.kohl-mobile-toggle,
.kohl-mobile-drawer {
  display: none !important;
}

.kohl-logo-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.kohl-desktop-nav {
  display: flex !important;
  align-items: center !important;
  gap: 36px !important;
}

.kohl-desktop-nav a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}
.kohl-desktop-nav a:hover {
  color: #F7B801 !important;
}

.kohl-cta-btn {
  background: #F7B801 !important;
  color: #0B132B !important;
  padding: 12px 22px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
}
.kohl-cta-btn:hover {
  background: #FFFFFF !important;
  transform: translateY(-2px) !important;
}

/* --- Left-Justified Logo & Prominent Typography --- */
.kohl-logo-stacked {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.kohl-logo-title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  font-size: 25px !important;
  letter-spacing: 3px !important;
  color: #FFFFFF !important;
  margin-bottom: 6px !important;
  display: block !important;
  line-height: 1 !important;
  text-align: left !important;
}

.kohl-logo-subtitle {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 3.5px !important;
  color: #F7B801 !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-top: 2px !important;
  line-height: 1 !important;
  text-align: left !important;
}

.kohl-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(247, 184, 1, 0.25));
  transition: transform 0.2s ease;
}

/* --- MOBILE & TABLET RESPONSIVE NAVIGATION (<= 1024px) --- */
@media (max-width: 1024px) {
  .kohl-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 72px !important;
    padding: 0 16px !important;
  }

  /* 1. Left Hand Side: Hamburger Menu Button */
  .kohl-mobile-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    order: 1 !important;
    margin-right: 0 !important;
  }

  .kohl-toggle-bar {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background-color: #F7B801 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
  }

  .kohl-mobile-toggle.active .kohl-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .kohl-mobile-toggle.active .kohl-toggle-bar:nth-child(2) {
    opacity: 0 !important;
  }
  .kohl-mobile-toggle.active .kohl-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  /* 2. Logo and Text Left-Justified */
  .kohl-logo-link {
    order: 2 !important;
    gap: 8px !important;
    margin-left: 12px !important;
    margin-right: auto !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .kohl-logo-img {
    height: 40px !important;
  }

  .kohl-logo-title {
    font-size: 20px !important;
    margin-bottom: 4px !important;
    text-align: left !important;
  }

  .kohl-logo-subtitle {
    font-size: 10px !important;
    letter-spacing: 3px !important;
    text-align: left !important;
  }

  /* Hide Desktop Links */
  .kohl-desktop-nav {
    display: none !important;
  }

  /* 3. Right Hand Side: Connect With Us Button */
  .kohl-header-cta-wrap {
    order: 3 !important;
    margin-left: auto !important;
  }

  .kohl-cta-btn {
    padding: 9px 14px !important;
    font-size: 10.5px !important;
    letter-spacing: 0.5px !important;
  }

  /* Mobile Drawer Navigation Overlay */
  .kohl-mobile-drawer {
    display: block !important;
    max-height: 0 !important;
    overflow: hidden !important;
    background: rgba(11, 19, 43, 0.98) !important;
    border-bottom: none !important;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .kohl-mobile-drawer.open {
    max-height: 380px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .kohl-mobile-nav {
    display: flex !important;
    flex-direction: column !important;
    padding: 20px 24px 28px !important;
    gap: 16px !important;
  }

  .kohl-mobile-link {
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 10px !important;
  }

  .kohl-mobile-cta {
    display: block !important;
    background: #F7B801 !important;
    color: #0B132B !important;
    text-align: center !important;
    padding: 12px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    margin-top: 8px !important;
  }
}

/* --- HIDE BLOCKSES NATIVE THEME HEADERS & FOOTERS TO PREVENT DUPLICATES --- */
header.ct-header,
#header,
.site-header,
footer.ct-footer,
#footer,
.site-footer,
.ct-footer {
  display: none !important;
}

/* --- HIDE DEFAULT THEME PAGE TITLES & ENTRY HEADERS --- */
.entry-title,
.entry-header,
.page-title,
.page-header,
.hero-description,
header.entry-header,
.ct-page-title {
  display: none !important;
}

/* --- UNCONSTRAIN ALL MAIN CONTAINERS FOR 100% EDGE-TO-EDGE FULL BLEED HERO --- */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

main,
#main,
.ct-main,
.ct-container,
.ct-container-full,
article,
.entry-content,
.kohl-homepage-wrapper,
.kohl-solutions-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
}

/* Full Bleed Edge-to-Edge Hero */
.nl-hero,
.kohl-spotlight-hero-plugin-area {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  height: 100vh !important;
  min-height: 600px !important;
  box-sizing: border-box !important;
}

/* Glassmorphism Card Style */
.kohl-glass-card {
  background: rgba(28, 37, 65, 0.65) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Hover Lift & Glow Accent */
.kohl-hover-lift:hover {
  transform: translateY(-8px) !important;
  border-color: #F7B801 !important;
  box-shadow: 0 12px 30px rgba(247, 184, 1, 0.15) !important;
}

/* Infinite Marquee Animation & Vertical Centering */
@keyframes kohlMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.kohl-marquee-container {
  position: relative;
  background: #F7B801;
  overflow: hidden;
  height: 52px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.kohl-marquee-track {
  display: flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  animation: kohlMarquee 24s linear infinite !important;
  height: 100% !important;
}
.kohl-marquee-track span {
  display: inline-flex !important;
  align-items: center !important;
  height: 100% !important;
  line-height: 1 !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  color: #0B132B !important;
  text-transform: uppercase !important;
  padding-right: 40px !important;
}

/* Gold Accent Line */
.kohl-accent-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #F7B801;
  vertical-align: middle;
}

/* --- Clean, Unclipped Contact Form Select & Option Styling --- */
select,
select.kohl-select,
.kohl-homepage-wrapper select {
  background-color: #0B132B !important;
  color: #FFFFFF !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 12px 8px !important;
  font-size: 15px !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1.5 !important;
  height: auto !important;
  min-height: 48px !important;
  border-radius: 0 !important;
  outline: none !important;
  cursor: pointer !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

select:focus,
select.kohl-select:focus {
  border-bottom-color: #F7B801 !important;
}

select option,
select.kohl-select option,
.kohl-homepage-wrapper select option {
  background-color: #0B132B !important;
  color: #FFFFFF !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

select option:checked,
select option:hover,
select option:focus,
.kohl-homepage-wrapper select option:checked {
  background-color: #F7B801 !important;
  color: #0B132B !important;
  font-weight: 700 !important;
}
