@charset "utf-8";
/* CSS Document */

/* ===== Global Styles ===== */
body {
  font-family: "Helvetica Neue", Tahoma, Trebuchet MS, and Gill Sans, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #333333;   /* dark gray for readability */
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

/* ===== Headings ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue",  Tahoma, Trebuchet MS, and Gill Sans, sans-serif;
  font-weight: 800;
  margin: 1em 0 0.5em;
  color: #222222;
  line-height: 1.3;
}

h1 { font-size: 6rem; }   /* ~40px */
h2 { font-size: 2rem;   }   /* ~32px */
h3 { font-size: 1.75rem;}   /* ~28px */
h4 { font-size: 1.5rem; }   /* ~24px */
h5 { font-size: 1.25rem;}   /* ~20px */
h6 { 
  font-size: 1rem; 
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555555;
}

/* ===== Paragraphs & Text ===== */
p {
  font-size: 1rem;   /* 16px */
  margin: 0 0 1em;
}

small {
  font-size: 0.875rem; /* 14px */
  color: #666666;
}

strong { font-weight: 800; }
em { font-style: italic; }

/* ===== Links ===== */
a {
  color: yellow;
  text-decoration: none;
  font-weight: bold; /* Makes the text bold */
}

a:link {
        color: white;
    }
a:hover { color: red;
        text-decoration: underline; /* Adds an underline on hover */
    }
	
a:active {
        color: green;
    }

a:visited {
        color: #3e6e08;
    }
	

/* ===== Lists ===== */
ul, ol {
  margin: 0 0 1em 2em;
  padding: 0;
}
li {
  margin-bottom: 0.5em;
}

/* ===== Responsive Typography ===== */
@media (max-width: 1024px) { /* Tablets */
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  body { font-size: 15px; }
}

@media (max-width: 768px) { /* Large phones */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.2rem; }
  body { font-size: 15px; }
}

@media (max-width: 480px) { /* Small phones */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  h4 { font-size: 1.1rem; }
  h5 { font-size: 1rem; }
  h6 { font-size: 0.9rem; }
  body { font-size: 14px; }
}

/* Alternate font color */
.alt-color-lt-over-drk {
  color: #d6d9c8; /* very light green */
}


/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}