@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Anton&family=Archivo+Black&family=Bungee&family=Caprasimo&family=Michroma&family=Righteous&family=Rubik+Mono+One&family=Russo+One&display=swap");

@media (max-width: 575px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body,
  html {
    width: 100%;
    overflow-x: hidden;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}
.img-logo {
  width: 224px;
  height: 70px;
  object-fit: contain;
}
header,
footer {
  background-color: #f5f5f5;
}
.nav-link {
  color: #060606;
  gap: 0.5rem;
}
.nav-link:hover {
  color: #ecb421;
}

/* nav icons hidden by default */
.nav-icon {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

/* reveal on hover or keyboard focus for accessibility */
.nav-link:hover .nav-icon,
.nav-link:focus .nav-icon {
  opacity: 1;
  transform: translateX(0);
}
.hero,
.services {
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    url(img/bg.jpg) center no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 90vh;
  position: relative;
  background-attachment: fixed;
}
.hero h1,
.services h2 {
  font-family: "Michroma", sans-serif;
  background: linear-gradient(135deg, #f5f5f5 0%, #ecb421 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .btn,
.form .btn,
footer .btn {
  background-color: #ecb421 !important;
  color: #060606 !important;
  transition: 0.3s;
}
.hero .btn:hover,
.form .btn:hover,
footer .btn:hover {
  letter-spacing: 2px;
  font-weight: 420;
}

.about .btn {
  color: #ecb421;
  border: solid 1px #ecb421;
  transition: 0.3s;
}

.about .btn:hover {
  letter-spacing: 2px;
  font-weight: 420;
  background-color: #ecb421;
  color: black;
}
.hero .card,
.services .card {
  border: none;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .card:hover,
.services .card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #060606, #ecb4);
  margin: 0 auto 1rem;
}
.hero i,
.story,
.form i,
.services i {
  color: #ecb421;
}
.story-badge {
  background: linear-gradient(45deg, #f5f5f5, #ecb421);
  padding: 0.4rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}
.main-title {
  line-height: 1.2;
  margin: 1rem 0;
}
.content-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.mission {
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    url(img/bg.jpg) center no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  background-attachment: fixed;
}
.form {
  background-color: #060606;
}
.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.form .img-fluid {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.contact-detail {
  font-size: 1.1rem;
}
