html {
  scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.home {
    background-color: red;
    width: 100%;
    height: 100%;
    object-fit: cover ; /* Cover entire area without distortion */
    display: block;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
/* h1 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
} */

.hero {
    height: 100vh;
    background: url('construction.jpg') center/cover;
    position: relative;
}
  
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}
  
.content {
    position: relative;
    color: white;
    padding: 150px;
}

#top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0);
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px; */
    z-index: 1000;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0);
    margin: 0 auto; */
}
#top-bar.scrolled {
  background: #1d1c1c;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* #top-bar {
  padding: 20px 0;
}

#top-bar.scrolled {
  padding: 12px 0;
} */

.logo img {
    height: 100px;
    object-fit: contain;
    margin-top: 14px;
}

.top-contact {
    margin-left: 40px;
    margin-right: auto;
}
  
  .top-contact-ul {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .top-contact-ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f5a623;
    font-size: 14px;
  }
  
  .top-contact-ul a {
    text-decoration: none;
    font-weight: 500;
  }
  
  .top-contact-ul a:hover {
    color: #f5a623;
  }

  
  .nav-links {
    display: block;
    /* align-items: center;
    gap: 25px;
    margin-left: 25px;
    list-style: none; */
  }
  .nav-links ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links li {
    min-width: 110px;
    text-align: center;
  }
/*   
  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
  } */
  
  .lang-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
  }
  

  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    /* background: #f5a623; */
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
.nav-links a:hover {
    color: #f5a623;
}
  .nav-links a[href="#estimate"] {
    background: #f5a623;
    color: #000;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 700;
  }
  
  .nav-links a[href="#estimate"]:hover {
    background: #ffb940;
  }

.hero {
  position: relative;
  height: 100vh;
  background: url("/static/img/hero-landscape.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(15, 15, 15, 0.95) 0%,
      rgba(15, 15, 15, 0.75) 40%,
      rgba(15, 15, 15, 0.4) 70%,
      rgba(245, 166, 35, 0.15) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 758px;
  color: #ffffff;
  margin: 0 auto;
  font-family: 'Bebas Neue';
}

.hero h1 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 100px;
  letter-spacing: -4px;
  margin-top: 24px;
  margin-bottom: 24px;
  text-transform: uppercase;
}


.highlight {
  color: #f5a623;
} 

.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #d1d1d1;
  margin-bottom: 30px;
}

.badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  color: #f5a623;
  padding: 8px 18px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(245, 166, 35, 0.35);
}
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #f5a623;
  color: #000;
  padding: 14px 28px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 5px;
}

.btn-secondary {
  border: 2px solid #f5a623;
  color: #f5a623;
  padding: 14px 28px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 5px;
}
/* Primary Button Hover */
.btn-primary:hover {
  background-color: #ffc72c;   /* lighter shade of yellow for hover */
  color: #000;                 /* keep text black */
  transform: translateY(-3px); /* slight lift effect */
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4); /* subtle glow */
  transition: all 0.3s ease;  /* smooth animation */
}

/* Secondary Button Hover */
.btn-secondary:hover {
  background-color: #f5a623;   /* fill with primary color */
  color: #000;                 /* text turns black for contrast */
  border-color: #f5a623;       /* ensure border matches background */
  transform: translateY(-3px); /* slight lift effect */
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
  transition: all 0.3s ease;
}

.top-bar-inner {
  max-width: 1240px;     /* matches hero content width */
  /* height: 220%; */

  margin: 0 auto;        /* centers it */
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Default quote button style */
.quote-btn {
  display: inline-block;
  background-color: #f5a623;   /* main yellow color */
  color: #000;                 /* text black */
  padding: 14px 28px;          /* size */
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #f5a623;  /* match background for a clean look */
  text-align: center;
  transition: all 0.3s ease;   /* smooth hover animations */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle default shadow */
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* GET A QUOTE */
.quote-btn {
  background-color: #f5a623;
  color: #000;
  padding: 10px 20px;        /* smaller */
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 38px;              /* fixed height */
}

/* Language Button */
.lang-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 12px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  height: 38px;              /* SAME HEIGHT */
  display: flex;
  align-items: center;
}

/* Phone number */
.phone-number {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

/* Hover effect */
.quote-btn:hover {
  background-color: #ffc72c;   /* lighter yellow */
  color: #000;                 /* keep text black */
  transform: translateY(-3px); /* slight lift */
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4); /* glow on hover */
}

.quote-btn:hover {
  animation: glow-pulse 1s infinite alternate;
}

@keyframes glow-pulse {
  from {
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
  }
  to {
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.6);
  }
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  width: 100%;
  white-space: nowrap;
}
.phone-number {
  color: white;
}

.mobile-quote {
  color: black;
}

.mobile-phone {
  display: none;
}
/* Responsive Adjustments */
/* Mobile nav */
@media (max-width: 768px) {
  /* Show hamburger */
  .hamburger {
    display: block;
  }

  /* Hide desktop contact & nav */
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    max-height: 0;         /* collapsed */
    overflow: hidden;
    flex-direction: column;
    background-color: #1a1a1a;
    transition: max-height 0.4s ease, padding 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    max-height: 500px;    /* adjust based on menu */
    padding: 20px 0;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
  }

  .nav-links li a {
    display: block;
    color: #fff;
    font-size: 16px;
    padding: 8px 0;
  }

  /* Mobile quote button inside menu */
  .mobile-quote .quote-btn {
    display: block;
    width: 90%;
    margin: 10px auto;
    background: #f5a623;
    color: #000;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
  }

  /* Hide desktop quote button */
  .top-contact .quote-btn {
    display: none;
  }
  .mobile-quote {
    display: block;
  }

  .top-bar-inner .quote-btn {
    display: none;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 40px;
    right: 10px;
    font-size: 28px;
    background: none;
    border: none;
    color: #f5a623;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-links {
    max-height: 0;            /* collapsed */
    overflow: hidden;
    flex-direction: column;
    position: absolute;
    top: 110px;
    right: 0;
    width: 100%;
    background-color: #1a1a1a;
    text-align: center;
    padding: 0;               /* we'll add padding inside the list */
    transition: max-height 0.4s ease; /* smooth slide */
    z-index: 1000;
  }

    /* Show nav-links when active */
    .nav-links.active {
      max-height: 500px;       /* adjust based on menu height */
      padding: 20px 0;
    }
  
    .nav-links ul {
      flex-direction: column;
      gap: 15px;
      margin: 0;
      padding: 0;
    }
  
    .nav-links li {
      width: 100%;
      padding: 10px 0;
    }
    .nav-links li a {
      color: #fff;
      font-size: 16px;
      display: block;
      text-decoration: none;
    }
  
    /* Mobile quote button inside menu */
    .mobile-quote .quote-btn {
      display: block;
      width: 90%;
      margin: 10px auto;
      padding: 12px;
      background-color: #f5a623;
      color: black;
      border-radius: 6px;
      text-align: center;
    }

    .portfolio-card .portfolio-overlay {
      opacity: 1 !important;       /* ensure it’s fully visible */
      background: rgba(0, 0, 0, 0.1); /* just a slight transparency so text is readable */

      transform: translateY(0);    /* remove hover slide effect */
    }
  
    .portfolio-card:hover .portfolio-overlay {
      transform: translateY(0);
    }
  
    .portfolio-card img,
    .portfolio-card video {
      /* optional: make image/video slightly darker to see overlay text */
      filter:none;
    }
  
    .portfolio-overlay h3,
    .portfolio-overlay span,
    .portfolio-overlay small {
      font-size: 14px;    /* adjust text size for small screens */
    }
    
    .phone-number {
        display: none;
    }
      .mobile-phone {
    display: block;
    text-align: center;
    margin: 10px 0;
  }

  .mobile-phone a {
    color: #f5a623;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .lang-btn {
      margin: 40px;
  }
}

@media (max-width: 480px) {


.hero h1 {
    font-size: 28px;
}

.hero p {
    font-size: 14px;
}

.hero .badge {
    font-size: 14px;
    padding: 6px 15px;
}
}
