@import 'https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap';

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: poppins, sans-serif
}

html {
  scroll-behavior: smooth
}

ul {
  list-style: none
}

a {
  text-decoration: none
}

button {
  cursor: pointer;
  background: 0 0;
  border: none
}

img {
  width: 100%
}

/* ========== Constant Variables ======== */


/* =========== Header Start ========== */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: #ffffff;
  color: #26201b;
}

.logo img {
  width: 291px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar ul li a {
  text-decoration: none;
  color: #26201b;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.navbar ul li a:hover,
.mobile-menu ul li a:hover {
  color: #f98a60;
}

.contact {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  outline: none;
  padding: 8px 18px;
  border-radius: 20px;
  background-color: #f98a60;
  color: #ffffff;
}

.contact i {
  margin-right: 5px;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: white;
  background-color: black;
  padding: 8px 10px 5px;
  border-radius: 4px;
  transition: background-color 0.4s ease;
}


.menu-toggle.active {
  background-color: #f98a60;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.mobile-menu.active {
  left: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.mobile-logo img {
  width: 200px;
}

.mobile-menu ul {
  list-style: none;
  padding: 34px 0px;
  text-align: center;
}

.mobile-menu ul li {
  margin-bottom: 24px;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #26201b;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.mobile-menu ul li a:hover {
  color: #f98a60;
}

/* =========== Header End ========== */

/* ============ Footer Start ========== */

.footer {
  background-color: #26201b;
  color: #ffffff;
  padding: 80px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-column {
  padding: 10px;
}

.footer-title {
  font-size: 24px;
  color: #f98a60;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-list,
.footer-contact-info {
  list-style-type: none;
  padding: 0;
}

.footer-list-item,
.footer-contact-item {
  margin-bottom: 10px;
}

.footer-list-link,
.footer-contact-item {
  color: #d1d1d1;
  text-decoration: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-list-link:hover,
.footer-contact-item:hover {
  color: #ffffff;
}

.footer-social-links {
  margin-top: 20px;
}

.footer-social-link {
  margin-right: 10px;
  color: #ffffff;
  font-size: 20px;
}


.footer-icon {
  color: #f98a60;
  font-size: 18px;
}

/* ============ Footer End ========== */


/* 
=================================================================
     RESPONSIVE DESIGN MEDIA QUERRY
=================================================================     
*/


@media (max-width: 992px) {

  .logo img {
    width: 280px;
  }

  .navbar,
  .contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .footer-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {

  .logo img {
    width: 200px;
  }

  header {
    padding: 15px 20px;
  }

  .footer-row {
    grid-template-columns: 1fr;
  }
}
