/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Urbanist", sans-serif;
}

:root {
  --white: #fff;
}

/* Header Styles */
.custom-header {
  background-color: #ffffff;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 9;
}

/* Logo Image Styling */
.logo-img {
  max-height: 50px;
  /* Adjust as per your logo size */
  width: auto;
}

/* Navbar Nav Adjustments */
.custom-header .navbar-nav {
  gap: 24px;
}

.custom-header .navbar-nav .nav-item .nav-link {
  color: #000000B2;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  transition: color 0.3s ease;
}

.custom-header .navbar-nav .nav-item .nav-link:hover{color: #8E7B47;}

/* Download Brochure Button */
.btn-brochure {
  background-color: #8E7B47;
  color: #ffffff;
  border-radius: 0;
  /* Square button as per design */
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #8E7B47;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 13px;
}

.cta-buttons a:nth-child(2) {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-brochure:hover,
.btn-brochure:focus,
.btn-brochure:active {
  background-color: #8E7B47 !important;
  color: #ffffff !important;
  border-color: #8E7B47;
}


/* Responsive adjustments for mobile view */
@media (max-width: 991px) {
  .custom-header {
    padding: 10px 0;
  }

  .custom-header .navbar-collapse {
    background-color: #ffffff;
    padding: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .btn-container {
    margin-top: 15px;
  }

  .btn-brochure {
    width: 100%;
    text-align: center;
  }
}