/* ========== Custom NueCoat Painting Styles ========== */
/* This file contains brand-specific overrides and enhancements to Bootstrap 5 */

:root {
  --bs-warning: #ff6700;
  --bs-warning-rgb: 255, 103, 0;
}

/* ========== Typography ========== */
body {
  font-family: "Satoshi-Regular", Helvetica, sans-serif;
  color: #0f1a23;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Satoshi-Bold", Helvetica, sans-serif;
  font-weight: 700;
}

.display-4, .display-5, .display-6 {
  font-family: "Satoshi-Black", Helvetica, sans-serif;
  font-weight: 900;
}

.lead {
  font-family: "Satoshi-Medium", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}

/* ========== Buttons ========== */
.btn-warning {
  background-color: #ff6700;
  border-color: #ff6700;
  font-weight: 500;
  font-family: "Satoshi-Medium", Helvetica, sans-serif;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-warning:hover {
  background-color: #ff8731;
  border-color: #ff8731;
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3);
}

.btn-outline-warning {
  color: #ff6700;
  border-color: #ff6700;
  font-weight: 600;
  font-family: "Satoshi-Medium", Helvetica, sans-serif;
}

.btn-outline-warning:hover {
  background-color: #ff8731;
  border-color: #ff8731;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

/* ========== Navigation Bar ========== */
.navbar {
  padding: 0 !important;
}

.navbar-brand img {
  max-height: 122px;
}

.nav-link {
  font-family: "Satoshi-Medium", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 23px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff8731;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff8731 !important;
}

.nav-link:hover::after {
  width: 100%;
}

/* Button styling - no underline, smooth lift animation */
.nav-link.btn {
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.nav-link.btn::after {
  display: none;
}

.nav-link.btn:hover {
  transform: translateY(-3px);
}

/* Logo responsive sizing */
@media (min-width: 992px) {
  .logo-desktop {
    height: 122px !important;
  }
}

/* Phone Bar */
.phone-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  height: auto;
}

@media (min-width: 992px) {
  .phone-bar {
    height: 60px;
    padding: 0;
  }
}

/* ========== Hero Section ========== */
.hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.0);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 2rem 1rem !important;
  }
  
  .display-4 {
    font-size: 2rem;
  }
}

/* ========== Cards ========== */
.card {
  transition: all 0.3s ease;
  border-radius: 0.75rem;
}

.card:hover {
  transform: translateY(-5px);
}

.card-body {
  padding: 0px;
}

.card-title {
  color: #0f1a23;
  font-weight: 700;
  font-size: 32px;
}

/* Service Icon Wrapper */
.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background-color: #ff6700;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
}

/* ========== Sections ========== */

.wideMax-centered {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.sectionHeaders {
  font-size:18px !important
}

section {
  border-radius: 0;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-grey {
  background-color: rgba(79, 79, 79, 1);
}

/* ========== Footer ========== */
.bg-dark {
  background-color: #0f1a23 !important;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ff6700 !important;
}

/* ========== Utilities ========== */
.text-secondary {
  color: #535353 !important;
}

.border-0 {
  border: 0 !important;
}

/* ========== Spacing ========== */
.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 5rem !important;
}

@media (min-width: 768px) {
  .py-md-8 {
    padding-top: 2rem !important;
    padding-bottom: 5rem !important;
  }
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 576px) {
  .display-5 {
    font-size: 1.75rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .container-lg {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ========== Button Icon ========== */
.learn-more-btn {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-icon-wrapper {
  position: relative;
  width: 14px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon-arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* ========== Accessibility ========== */
a:focus-visible {
  outline: 3px solid #ff6700;
  outline-offset: 2px;
}

button:focus-visible {
  outline: 3px solid #ff6700;
  outline-offset: 2px;
}
