/* ==========================================================================
   STAND OUT WITH PATRICK UDUMA - MAIN STYLESHEET
   Matching original Wix design layout & visual identity
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary-dark: #000000;
  --header-bg: #000000;
  --accent-gold: #cddc39;
  --accent-gold-hover: #c0ca33;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header, .main-header {
  background-color: #000000;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
}

.brand-logo-box {
  background: #ffffff;
  padding: 6px 12px;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.nav-link-custom {
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.6rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link-custom:hover {
  color: var(--accent-gold) !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 0.6rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--accent-gold) !important;
}

/* ==========================================================================
   HERO SECTION (Matching Wix full-bleed background photo)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background-image: url('/static/images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content-container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-subtitle-text {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 400;
  max-width: 650px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   ABOUT & CONTENT SECTIONS
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.about-img-box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.section-header .sub-tag {
  color: #9cb000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 8px;
}

/* ==========================================================================
   CARDS & COMPONENTS
   ========================================================================== */
.service-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 35px 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: #f4f8c4;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.btn-accent {
  background-color: var(--accent-gold);
  color: #000000;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  border: 2px solid var(--accent-gold);
}

.btn-accent:hover {
  background-color: var(--accent-gold-hover);
  color: #000000;
}

/* ==========================================================================
   FLOATING CHAT WIDGET (Matching Wix float button)
   ========================================================================== */
.floating-chat-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #cddc39;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  transition: var(--transition);
}

.floating-chat-btn:hover {
  transform: scale(1.1);
  background-color: #c0ca33;
  color: #000000;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-section {
    min-height: 70vh;
  }
}
