/* ===== Global Styles ===== */
body {
  margin: 0;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  font-family: 'Source Sans Pro', 'Inter', system-ui, sans-serif;

  background-color: #1a1a1a;
  color: #f0f0f0;
}

p {
text-align: left;
}

/* html {
  scroll-behavior: smooth;
} */

/* navbar branding */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.nav-logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  text-align: left;
}

.tagline {
  font-size: 0.75rem;
  color: #C7A008;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Navigation ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #111;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #C7A008;
}

.nav-logo {
  height: 40px;
  width: auto;
}
.nav-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.brand-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #C7A008;
}
.tagline {
  font-size: 0.75rem;
  color: #C7A008;
  letter-spacing: 1px;
  text-transform: uppercase;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  color: #f0f0f0;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  font-weight: 500;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #C7A008;
  transition: width 0.3s ease-in-out;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #C7A008;
  cursor: pointer;
  margin-left: auto; /* ensures it's pushed right */
}

/* ===== Header & Hero ===== */
#home {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}


.hero-overlay h2 {
  font-size: 1rem;
  font-weight: 300;
}

.text-container {
  background-color: rgba(0, 0, 0, 1);
  border: 2px solid #C7A008;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(199, 160, 8, 0.4);
  max-width: 800px;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* Fade-in animation */
@keyframes fadeInHero {
  0% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-overlay {
  opacity: 0;
  animation: fadeInHero 2.5s ease-out forwards;
}


/* ===== Updated Sections ===== */
.section-dark {
  background-color: #1a1a1a;
}

.section-darker {
  background-color: #111111;
}

section {
  border-top: 2px solid #C7A008;
  padding-top: 3rem;
  padding: 4rem 2rem;
}
.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 2px solid #C7A008;
  border-radius: 6px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #C7A008;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 1rem;
  background-color: #111;
  box-shadow: 0 0 6px rgba(199, 160, 8, 0.2);
  position: relative;
  z-index: 10; /* ensures it's above any scrolling effect */
}



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


.about, .services, .cta {
  max-width: 1000px;
  margin: auto;
  padding-top: 5rem; /* gives breathing room */
  position: relative;
  z-index: 2;
  }

.services h2, .about h2, .cta h2 {
  color: #C7A008;
  text-align: center;
}

/* ===== Buttons ===== */
.btn {
  background-color: #C7A008;
  color: black;
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.cta {
  text-align: center;
  margin-top: 4rem;
}

.cta .btn {
  font-size: 1.1rem;
}

/* ===== Footer ===== */
footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem;
}
.copyright {
  text-align: center;
}
/* ===== Services & Privacy ===== */
.service-item,
.privacy {
  background-color: #2a2a2a;
  margin: 1rem 0;
  padding: 1rem;
  border-left: 5px solid #C7A008;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(199, 160, 8, 0.2);
}

/* ===== Benefits Section ===== */
.benefits {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.benefits-heading {
  color: #C7A008;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.benefit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #C7A008;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #1a1a1a;
  color: #CCCCCC;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.benefit-box:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
}

.benefit-box .text {
  flex-grow: 1;
  color: #DDDDDD;
}

.benefit-box .arrow {
  font-size: 1.2rem;
  color: #C7A008;
  transition: transform 0.2s ease;
}

.benefit-box:hover .arrow {
  transform: translateX(4px);
}


/* accordion */
.benefit-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  background-color: #2a2a2a;
  padding: 0 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid #C7A008;
  color: #ccc;
  font-size: 0.95rem;
}

.benefit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem;
  border: 1.5px solid #C7A008;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.benefit-box .text {
  flex-grow: 1;
  color: #DDDDDD;
  font-weight: 500;
}

.benefit-box .arrow {
  font-size: 1.2rem;
  color: #C7A008;
  transition: transform 0.3s ease, margin-right 0.3s ease;
  margin-left: auto;
  padding-left: 1rem;
}

/* When the accordion is open */
.benefit-box.open .arrow {
  transform: rotate(90deg); /* makes → look like ↓ */
  margin-right: 0.5rem;
}


/* ===== Contact Form ===== */
.contact-form {
  background-color: #111;
  padding: 3rem 1.5rem;
  color: #f0f0f0;
}

.contact-form h2 {
  color: #C7A008;
  text-align: center;
  margin-bottom: 0.75rem;
}

.contact-form p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ccc;
  font-size: 0.95rem;
}
.contact-form h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ccc;
  font-size: 0.95rem;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem; /* more space between label and input */
  font-weight: 600;
  font-size: 1rem;
  color: #f0f0f0;
  padding-left: 0.15rem; /* optional: slight left indent */
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: #1a1a1a;
  border: 1px solid #C7A008;
  color: #f0f0f0;
  border-radius: 4px;
  font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.contact-form .btn {
  display: block;
  margin: 1rem auto 0;
  padding: 0.5rem 1.25rem;
  background-color: #C7A008;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form .btn:hover {
  background-color: #b08e07;
}
/* wave animation for services section */

@keyframes waveIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease-out;
}

.service-item.visible {
  animation: waveIn 0.6s ease-out forwards;
}

/* ===== Responsive Styles ===== */
@media screen and (max-width: 768px) {
  #services{
    display: none;
  }
  .about{
    text-align: center;
  }
  .form-group input,
  .form-group textarea {
    text-align: left;
  }
  .form-group label {
    text-align: left;
    width: 100%;
  }
  .form-group {
    align-items: flex-start;
    text-align: left;
  }
  .about h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    color: #C7A008;
  }
  .about h3 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    padding: 0 1rem;
  }
  #home {
    display: none;
  }
  .contact-form {
    padding: 2rem 1rem;
    border-radius: 0;
    margin: 0;
  }
  
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #C7A008;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    z-index: 1001;
  }
  nav {
    flex-wrap: wrap;
  }
  .nav-branding {
    flex: 1;
  }
  .nav-toggle {
    margin-left: auto;
  }
  nav ul.menu {
    display: none;
    flex-direction: column;
    align-items: flex-end; /* Aligns links to the right */
    text-align: right;
    width: 100%;
    background-color: #111;
    padding-right: 1.5rem; /* adds some spacing from edge */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    
  }

  nav ul.menu.active {
    display: flex;
    max-height: 500px; /* adjust as needed */
    opacity: 1;
  }
  html {
    scroll-behavior: smooth;
  }
  nav ul.menu li {
    padding: 1rem 0;
    width: auto; /* makes each item only as wide as it needs */
  }
  nav ul.menu li a {
    font-weight: bold;
  }
  
  nav ul.menu li a:hover {
    background-color: #222;
  }
  .logo {
    align-items: flex-start;
    flex-direction: row;
  }

  .nav-text {
    text-align: left;
  }

  .tagline {
    font-size: 0.7rem;
  }
  #hero-video {
    display: none;
  }

  .hero-overlay h1 {
    font-size: 1.6rem;
  }

  .hero-overlay h2 {
    font-size: 1rem;
  }

  .text-container {
    width: 100%;
    padding: 1rem;
  }

  .benefit-box,
  .service-item,
  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .hide-mobile {
    display: none;
}

/* ===== iPhone 16 Pro / Pro Max Targeting (max-width ~430px) ===== */
@media screen and (max-width: 430px) {
  .hero-overlay {
    background-color: #000;
    padding: 4rem 1rem;
    min-height: 100vh;
  }

  .text-container {
    padding: 1.25rem;
    width: 100%;
    font-size: 0.9rem;
  }

  .hero-overlay h1 {
    font-size: 1.5rem;
  }

  .hero-overlay h2 {
    font-size: 1rem;
  }

  .contact-form .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

  footer {
    font-size: 0.85rem;
    padding: 1rem;
  }

  nav ul.menu li {
    padding: 0.75rem 0;
  }
}

/* contact form */
.contact-form form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 1rem; /* prevent overflow at small sizes */
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
}


/* ===== About Banner (with logo) ===== */
.about-banner-text {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #C7A008;
  border-bottom: 2px solid #C7A008;
  padding: 2rem 1rem;
}

.about-banner-text .banner-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-wrap: wrap; /* keeps layout clean on smaller screens */
}

.banner-logo {
  width: 100px;
  height: auto;
  margin-right: 2rem; /* space between logo and text */
  filter: drop-shadow(0 0 8px rgba(199,160,8,0.25));
}

.banner-text {
  text-align: left;
}

.banner-title {
  margin: 0 0 .6rem;
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1;
}

.banner-subtitle {
  margin: 0;
  font-family: 'Source Sans Pro', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gold-box {
  background-color: #C7A008;
  color: #111;
  padding: .35rem .75rem;
  display: inline-block;
  box-shadow: 0 0 10px rgba(199,160,8,.25);
}

.gold-box.thin {
  padding: .25rem .6rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-banner-text {
    padding: 1.25rem .75rem;
  }
  .banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .banner-logo {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 80px;
  }
  .banner-title {
    font-size: 1.25rem;
  }
  .banner-subtitle {
    font-size: .8rem;
  }
}

@media (min-width: 769px) {
  .banner-title {
    font-size: 2rem;
  }
  .banner-subtitle {
    font-size: 1rem;
  }
}


/* Mobile tweaks */
@media screen and (max-width: 768px) {
  .about-banner {
    padding: 1rem 0.5rem;
  }
  .about-banner-img {
    max-width: 100%;
  }
}
