/* ---------------------------------
   ANALOG MEDIA ROOT VARIABLES
--------------------------------- */
:root {
  --pink-50: #ffe0e9;
  --pink-100: #ffc2d4;
  --pink-200: #ff9ebb;
  --pink-300: #ff7aa2;
  --pink-400: #e05780;
  --pink-500: #b9375e;
  --pink-600: #8a2846;
  --pink-700: #522e38;

  --text-dark: #2b1a22;
  --text-light: #ffffff;

  --radius: 12px;
  --shadow-soft: 0 4px 12px rgba(82, 46, 56, 0.15);
  --shadow-card: 0 6px 18px rgba(82, 46, 56, 0.18);

  --transition: 0.25s ease;
}

/* ---------------------------------
   GLOBAL
--------------------------------- */
body {
  font-family: "Inter", sans-serif;
  background: var(--pink-50);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

/* ---------------------------------
   TV‑BAR HEADER
--------------------------------- */
.site-header {
  width: 100%;
  background: linear-gradient(
    to right,
    #522e38 0% 12.5%,
    #8a2846 12.5% 25%,
    #b9375e 25% 37.5%,
    #e05780 37.5% 50%,
    #ff7aa2 50% 62.5%,
    #ff9ebb 62.5% 75%,
    #ffc2d4 75% 87.5%,
    #ffe0e9 87.5% 100%
  );
  padding: 0.75rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-logo {
  height: 52px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: "Metamorphous", serif;
  font-size: 1.85rem;
  color: var(--pink-50);
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--pink-100);
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link-custom {
  font-family: "Metamorphous", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  transition: opacity 0.2s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  opacity: 0.7;
}

/* ---------------------------------
   TO‑DO APP CARD
--------------------------------- */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0; /* small breathing room */
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.app-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app {
  background: var(--pink-100);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 420px;
  margin: 0 auto;
}

h1 {
  font-family: "Metamorphous", serif;
  text-align: center;
  color: var(--pink-700);
  margin-top:0;
  margin-bottom: 12px;
}

/* ---------------------------------
   INPUTS + BUTTONS
--------------------------------- */
.input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

#todo-input {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius);
  border: 2px solid var(--pink-500);
  background: var(--pink-50);
  color: var(--pink-700);
  font-family: "Unica One", sans-serif;;
}

#todo-input:focus {
  outline: none;
  box-shadow: var(--shadow-soft);
}

button,
.filter-btn,
#add-btn,
.delete-btn {
  font-family: "Metamorphous", serif;
  background-color: var(--pink-500);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius);
  padding: 10px 18px;
  cursor: pointer;
  transition: var(--transition);
}

button:hover,
.filter-btn:hover,
.filter-btn.active,
#add-btn:hover,
.delete-btn:hover {
  background-color: var(--pink-700);
}

/* ---------------------------------
   QUICK SELECT
--------------------------------- */
.quick-select {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius);
  border: 2px solid var(--pink-500);
  background: var(--pink-50);
  color: var(--pink-700);
  margin-bottom: 15px;
  font-family: "Unica One", sans-serif;
}

.quick-select:hover,
.quick-select:focus {
  box-shadow: var(--shadow-soft);
}

/* ---------------------------------
   FILTER BUTTONS
--------------------------------- */
.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* ---------------------------------
   TO‑DO LIST
--------------------------------- */
#todo-list {
  list-style: none;
  padding: 0;
 
}

.todo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid var(--pink-200);
}

.todo-text {
  cursor: pointer;

}

.todo-text.completed {
  text-decoration: line-through;
  color: var(--pink-400);
}

.task-completed {
  opacity: 0.55;
  text-decoration: line-through;
  color: var(--pink-600);
}

.todo-item {
  background: var(--pink-50);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
   font-family: "Unica One", sans-serif;
}