/* Custom Variables */
:root {
    --primary-color: #ffffff; /*dark green*/
    --text-color: #222; /*black*/
    --bg-color: #008081; /*chesapeake blue/green*/
    --white: #bda277; /*tan/
    --focus-outline: #f5f5dc;  /*beige*/
    --lgreen:#87ae73;   /*light green*/

a {
  color: #06402B; /* Sets all links to Green */
}



    /*home page og color- seahawks green -- #008081 --- f4f4f4 ---*/
}


img, object, embed, video {
    max-width: 100%;
}

/* website banner */
.site-header img {
  width: 100%;
  height: auto;
  display: block;
}

.home-link {
  display: block;
  cursor: pointer;
}


/* Reset & Accessibility Basics */
* { box-sizing: border-box; }
body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: var(--text-color);
    background-color: var(--focus-outline);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Skip Link - Hidden until Tabbed */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 10px;
    z-index: 100;
}
.skip-link:focus { top: 0; }

/* Navigation */
header {
    background: var(--bg-color);
    padding: 1rem 0;
    border-bottom: 2px solid #ddd;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

/* Interactive Elements & Accessibility */
a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Ensure clear focus for keyboard users */
a:focus, button:focus {
    outline: 3px solid var(--focus-outline);
    outline-offset: 4px;
}

/* Responsive Grid */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}




.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card2-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


.card {
    height: min-content; /* Card stops at the end of content */
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    
}


.card2 {
    height: min-content; /* Card stops at the end of content */
    background: var(--lgreen);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    
}


.btn {
    background: var(--primary-color);
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    background: #333;
    color: white;
}

/*new css*/

/* 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 chesapeke blue background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #008081;
}

/* 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;
}