/* To connect this CSS file, add the following line in the <head> section of your HTML files:
   <link rel="stylesheet" href="styles.css">
*/



/* custom-fonts.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?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');

body {
  font-family: 'Poppins', sans-serif;
}

/* Optional: Define utility classes for different font weights */
.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

  

/* Example: Custom button style */
.custom-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.custom-button:hover {
    background-color: #45a049;
}



/* Add space at the top of the page to prevent content from hiding under the header */
body {
    padding-top: 80px; /* Adjust this value to match your header height */
}

/* Make sure the header stays on top */
#header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}