/* Basic Reset and Font Setup */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0; /* Removes margin from the html and body */
    padding: 0; /* Adjusted for typo correction, originally 'padding: 50;' */
    font-family: 'Custom-Light', sans-serif; /* Sets the font for the page */
    height: 100vh; /* Full viewport height to center vertically in the viewport */
    width: 100vw; /* Full viewport width */
    margin: 0; /* Removes default margin */
}

/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  /* Modal Content */
  .modal-content {
    background-color: var(--container-bg, #fff);
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
  }
  
  /* Close Button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--primary-color, #4a4a4a);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background: transparent;
    border: none;
  }
  
  /* Modal Title */
  .modal-content h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5em;
    color: var(--primary-color, #4a4a4a);
  }
  
  /* Form Styles inside Modal */
  #filter-options-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  #filter-options-form label {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--primary-color, #4a4a4a);
  }
  
  #filter-options-form input[type="text"],
  #filter-options-form select {
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  /* Fieldset for Advanced Filtering */
  #filter-options-form fieldset {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    margin-top: 15px;
  }
  
  #filter-options-form fieldset legend {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color, #4a4a4a);
  }
  
  /* Submit Button */
  #filter-options-form button[type="submit"] {
    padding: 10px;
    background-color: var(--secondary-color, #3498db);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
  }
  
  #filter-options-form button[type="submit"]:hover {
    background-color: var(--secondary-hover, #2980b9);
  }

/* Font Face Definition */
@font-face {
    font-family: 'Custom-Bold';
    src: url('../Fonts/Custom-Bold.woff2') format('woff2'), /* Assuming Fonts folder is at root */
         url('../Fonts/Custom-Bold.woff') format('woff'),
         url('../Fonts/Custom-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Custom-Light';
    src: url('../Fonts/Custom-Light.woff2') format('woff2'),
        url('../Fonts/Custom-Light.woff') format('woff'),
        url('../Fonts/Custom-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Custom-Black';
    src: url('../Fonts/Custom-Black.woff2') format('woff2'),
        url('../Fonts/Custom-Black.woff') format('woff'),
        url('../Fonts/Custom-Black.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Custom-Light', sans-serif; /* Primary font for text */
    font-size: 15px;
    color: #333;
    line-height: 1.3;
    background: #fff;
}

h1 {
    font-size: 2.5em; /* Example size for main headings */
}

h2 {
    font-family: 'Custom-Bold', sans-serif; /* Specific font for secondary headings */
    font-size: 2.0em; /* Example size for secondary headings */
}
h3 {
    font-family: 'Custom-Bold', sans-serif; /* Specific font for secondary headings */
    font-size: 2.0em; /* Example size for secondary headings */
    text-align: center;
}

