/* Main CSS File */


/* FONT */
.gabriela-regular {
  font-family: "Gabriela", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

html {
  font-family: "Gabriela", serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: black;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  overflow: visible;
  gap: 16px;
  padding: 0px 24px;
  box-sizing: border-box;
  width: 100%;
  height: 64px;
}

    /* LEFT */
.header-left {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

    /* CENTER */
.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

    /* RIGHT */
.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid white;
  border-radius: 10px;
  background: transparent;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.menu-toggle:hover {
  filter: brightness(1.1);
}

.logo {
  display: inline-block;
  margin: 0;
  font-family: "Gabriela", serif;
  font-weight: 700;
  text-decoration: none;
  color: #d4af37; /* Gold */
  font-size: 1.4rem;
}

    /* MIDDLE */
.site-search {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.site-search input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
}

.site-search input:focus {
  border-color: #888;
}

.site-search input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.site-search .search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.site-search .search-btn i {
  font-size: 16px;
  color: #000;
  opacity: 0.7;
}

    /* RIGHT */
.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  background: none;
  font-size: 1.2rem;
  transition: color 400ms ease-in-out;
}

.socials a:hover {
  color: #d4af37; /* Gold */
  background: none;
}
/* END OF HEADER */

/* SIDEBAR LAYOUT WRAPPER */
.site-layout {
  margin-top: 64px;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 64px;
  left: 0;
  bottom: 0;
  width: 220px;
  background: black;
  border-right: 1px solid rgba (255, 255, 255, 0.2);
  padding-top: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* NAV LIST INSIDE SIDEBAR */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* EACH SIDEBAR ITEM */
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  margin: 2px 10px;
  text-decoration: none;
  font-family: "Gabriela", serif;
  font-size: 15px;
  color: #f5f5f5;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

/* ICON SIZE */
.sidebar-item i {
  font-size: 18px;
}

/* ACTIVE PAGE */
.sidebar-item.active {
  background: #1c1c1c;
  color: #d4af37; /* Gold */
}

/* HOVER EFFECT */
.sidebar-item:hover {
  background: #1c1c1c;
  color: #d4af37; /* Gold */
  transform: translateX(2px);
}

/* FOOTER LINKS AT BOTTOM OF SIDEBAR */
.sidebar-footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px 20px;
  font-size: 12px;
}

.sidebar-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.sidebar-footer-links a:hover {
  color: #d4af37; /* Gold */
}

/* COLLAPSED SIDEBAR STATE */
.sidebar.is-collapsed {
  width: 64px;
}

.page-content.is-collapsed {
  margin-left: 64px;
}

/* HIDE TEXT LABELS WHEN COLLAPSED */
.sidebar.is-collapsed .sidebar-item span,
.sidebar.is-collapsed .sidebar-footer-links {
  display: none;
}
/* END OF SIDEBAR */

/* MAIN PAGE CONTENT POSITIONING */
.page-content {
  margin-left: 220px; /* same width as sidebar */
  padding: 24px
}

/* BODY */
body {
  padding-top: 64px;
  background: black;
}

/* TO DO LIST */
.to-do-container {
  width: 80%;
  margin: 50px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.5);
  color: white;
}

.to-do-container h1 {
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.to-do-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}

.to-do-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.to-do-list li:hover {
  color: #d4af37; /* Gold */
}

.to-do-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  font-size: 1.1rem;
  line-height: 1;
}

.to-do-list li.done {
  padding-left: 22px;
}

.to-do-list li.done::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #d4af37; /* Gold */
  font-size: 1rem;
}

.meme {
  display: flex;
  justify-content: space-around;  
  text-align: center;
  max-width: 100%;
}

.meme img {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 100%;
  height: auto;
  max-height: 700px;
}
