/* Basic reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f6f6f65c;/* #f6f6f6; */
    color: #222;
}

p {
  line-height: 1.3;
}
/* Layout containers */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* HEADER */
.header {
    background: #F9F8F4;/* #ffffff; */
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-size: 24px;
    font-weight: bold;
}

.header-nav a {
    margin: 0 15px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.header-search {
  position: relative;
  display: inline-block;
}
.header-search input {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#searchResults {
  position: absolute;
  top: 40px;
  left: 0;
  width: 200px;
  background-color: rgb(245, 235, 220);
  border-radius: 8px;
  margin-left: 10px;
  padding: 6px 8px;
  z-index: 100;
  display: none;
}
#searchResults .search-item a {
  display: block;
  padding: 4px 0;
}
.objectives , .objectives a {
  line-height: 1.25 ;
  text-decoration: none;
}
.objectives a {
  color: #c0350b;
  font-size: 20px;
}

#alphabeticalList a {
  color: #c0350b;
  text-decoration: none;
  font-weight: 600;
}
#alphabeticalList div {
  color: black;
  margin: 5px 0;
  padding: 2px 5px;
  background-color: #F9F8F4;
  /* border-top: solid 1px gray; */
/*   border-bottom: solid 1px #ff9b00; */
  width: 90%;
  border-radius: 4px;
}

a.links {
  color: black;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.2;
}
.links {
  list-style: none;
}
.links.side-bar {
  border-radius: 4px;
  padding-top: 4px;
  color: #c0350b;
  /* background-color: rgba(220, 220, 220, 0.699); */
}

.review {
  list-style: none; 
  line-height: 1.4;
}
.reviews-btn, .reviews-btn a {
  padding: 4px;
  text-decoration: none;
  color:#000;
  font-family: sans-serif;
}
#reviewStars {
  margin: 6px 0 15px 10px;
  padding: 2px 5px;
  /* border: 1px solid #ccc;
  border-radius: 4px; */
  display: flex;
  gap: 4px;
  font-size: 18px;
}
.stars {
  display: inline-flex;
  gap: 2px;
}

.str, .hstr {
  width: 25px;
  height: 25px;
  background-size: cover;
}
.str { 
  background-image: url('../img/str50px.png');
}
.hstr {
  background-image: url('../img/hstr50px.png');
}


/* Mobile hamburger */
.header-menu-btn {
    font-size: 24px;
    display: none;
    cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #000;
    text-decoration: none;
}

/* HERO SECTION */
.hero {
    background: #ffffff;
    padding: 15px 30px;
    margin: 30px 0 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #d00000;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff9b00;
}

/* GRID LAYOUT */
.grid-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 25px;
}

/* TILES */
.tile {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tile h2, .tile h3 {
    margin-bottom: 10px;
}

/* SIDEBAR */
.sidebar .tile {
    position: sticky;
    top: 100px;
}

/* ACCORDION */
.accordion-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.accordion-header {
    padding: 15px;
    background: #f0f0f0;
    color: #c0350b;
    cursor: pointer;
    font-weight: bold;
}

.accordion-body {
    display: none;
    padding: 15px;
}

.accordion-item.open .accordion-body {
    display: block;
}

/* FOOTER */
.footer {
    background: #222;
    color: #fff;
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
}

.f-container{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 10px;
}

.footerlinks {
  color: white;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .header-nav, .header-search {
        display: none;
    }

    .header-menu-btn {
        display: block;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}
