@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: "Poppins", sans-serif; color: white; background: #fff; }

a { text-decoration: none; transition: all 0.3s ease; }
ul, li { list-style: none; }
img { width: 100%; }

/* LAYOUT */
.container       { max-width: 1120px; margin-inline: auto; padding: 0 15px; }
.container-fluid { width: 100%; padding: 0 15px; }

/* HEADER */
.header {
  width: 100%;
  background-color: #252525;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #e8e3e1;
  letter-spacing: 1px;
}

.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
}

.nav-toggler span { display: block; width: 22px; height: 2px; background: #555; border-radius: 2px; }

.nav-links ul { display: flex; gap: 5px; }

.nav-links ul li a {
  padding: 8px 14px;
  font-size: 14px;
  color: #c1bebe;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links ul li a:hover,
.nav-links ul li.active a { color: #f76d37; }

/* SERVICES */
.back-img {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("https://html.design/demo/grandcoffee/images/services-bg.png") center / cover no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  margin-bottom: 0.625rem;
}

.text h1 {
  font-size: 2.5rem;
  padding-top: 5rem;
  text-align: center;
}

.text p {
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  color: rgb(188, 190, 190);
}

.Services {
  display: flex;
  gap: 1.875rem;
  margin-top: 3.125rem;
  margin-inline: 1.875rem;
  padding-bottom: 5rem;
}

.service-part {
  background-color: #f76d37;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
}

.service-part img { width: 2.8125rem; }

#mocha { height: 3.125rem; }

.service-part h3 {
  font-size: 1.25rem;
  padding-top: 1.875rem;
  padding-bottom: 0.625rem;
  text-align: center;
  color: #000;
  font-weight: 500;
}

.service-part p {
  font-size: 0.9375rem;
  text-align: center;
  padding-bottom: 1.25rem;
}

.service-part:hover { background-color: white; color: black; cursor: pointer; }

.btn {
  font-size: 1.25rem;
  border: none;
  padding: 0.3125rem 0.9375rem;
  border-radius: 0.3125rem;
  font-weight: 540;
  background-color: #dedddd;
  cursor: pointer;
}

.btn:hover { background-color: black; color: white; }

/* FOOTER */
.footer { background: #252525; padding: 60px 0; color: #999; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-text { font-size: 14px; color: #999; line-height: 24px; }

.footer-menu li { padding: 4px 0; }
.footer-menu li a { color: #999; font-size: 14px; transition: color 0.3s; }
.footer-menu li a:hover { color: #f76d37; }

.footer-contact li { padding: 5px 0; }
.footer-contact li a { color: #999; font-size: 14px; transition: color 0.3s; }
.footer-contact li a:hover { color: #f76d37; }

/* COPYRIGHT */
.copyright { background: #fff; padding: 18px 0; border-top: 1px solid #eee; }
.copyright-text { font-size: 15px; color: #252525; text-align: center; }
.copyright-text a { color: #252525; }
.copyright-text a:hover { color: #f76d37; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-toggler { display: flex; }
  .nav-links { width: 100%; display: none; }
  .nav-links.open { display: block; }
  .nav-links ul { flex-direction: column; gap: 0; padding: 10px 0; }
  .nav-links ul li a { display: block; padding: 10px 16px; }

  .Services { flex-wrap: wrap; margin-inline: 0; }
  .back-img { min-height: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .text h1 { font-size: 2rem; }
}