/* ========== 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: var(--hp-dark);
  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;
}

.font48px {
  font-size: 48px !important;
}

.font24px {
  font-size: 24px !important;
}
.wide750 {
  max-width: 750px !important;
}

/* ========== Buttons ========== */
.btn-nav {
  background-color: #ff6700;
  border-color: #ff6700;
  font-weight: 500;
  font-family: "Satoshi-Medium", Helvetica, sans-serif;
  font-size: 19px;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  color: #ffffff !important;
  transform: translateY(-13px);
  height: 48px;
  width: 211px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

/* ========== Buttons ========== */
.btn-estimate {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #ff6700;
  border-color: #ff6700;
  font-weight: 500;
  font-family: "Satoshi-Medium", Helvetica, sans-serif;
  font-size: 21px;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  color: #ffffff !important;
  height: 72px;
  width: 304px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.btn-gallery {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #ff6700;
  border-color: #ff6700;
  font-weight: 500;
  font-family: "Satoshi-Medium", Helvetica, sans-serif;
  font-size: 20px;
  height: 72px;
  width: 225px;
  transition: all 0.3s ease;
}

.btn-gallery:hover {
  border-color: #ff8731;
  color: #ff6700;
  transform: translateY(-3px);
}

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

/* ========== Button Icon ========== */
.learn-more-btn {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #ffffff; 
  color: #e95e00 !important; 
  font-family: 'Satoshi-Medium', Helvetica; 
  font-weight: 500; 
  font-size: 21px; 
  letter-spacing: 0; 
  line-height: 27px; 
  display: block; 
  border: none; 
  border-color: transparent; 
  width: 400px; 
  margin: 0 auto; 
  height: 60px;
  transition: transform 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #ffffff;
  transform: translateY(-5px);
}

.learn-more-btn:hover::after {
  transform: translateY(-0px);
  transition: transform 0.3s ease;
}

.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;
}

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

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

.navbar-nav {
  gap: 40px !important;
}

.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;
  margin: 0px !important;
  padding: 0px !important;
  color: #0f1a23 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  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-image: url('../img/stage.png');
  background-attachment: fixed;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
}

@media (max-width: 1200px) {
  .hero {
    background-image: url('../img/stage-2.png');
    background-size: contain;
  }
  
}
@media (max-width: 960px) {
  .hero {
    background-image: url('../img/stage-3.png');
    background-size: contain;
  }
  
}
/*
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('../img/stage.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: -1;
}
*/
.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: var(--hp-dark);
  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: var(--gray-6) !important;
}

.bg-grey {
  background-color: var(--gray-2);
}

/* ========== Footer ========== */
.bg-dark {
  background-color: var(--hp-dark) !important;
}

footer a {
  transition: color 0.3s ease;
}

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

/* ========== Utilities ========== */
.text-secondary {
  color: var(--gray-1) !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;
  }
}



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

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

.WhiteText {
  color: #fff !important;
}
.HeaderPhone {
  color: #ff6700 !important; 
  font-weight: 700 !important;
}