/* ===== GLOBAL STYLES ===== */
body {
  font-family: Arial, sans-serif;
  background: #f3f4f6;
  margin: 0;
}
nav a:hover {
  color: #ef4444;
}
/* ===== HEADER ===== */
header {
  background: #5535e6;
  color: white;
  text-align: center;
  padding: 15px;
}
.hero {
  text-align: center;
  padding: 60px 20px;
}



.hero p {
  max-width: 500px;
  margin: 20px auto;
  color: #5535e6;
}
.features {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px;
  flex-wrap: wrap;
}
.tagline {
  font-style: italic;
  font-weight: bold;
  color: #6b7280;
  margin-top: 10px;
}
/* ===== NAVIGATION ===== */
nav {
  text-align: center;
  background: white;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #5535e6;
  font-weight: bold;
}

/* ===== MAIN CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

/* ===== HEADINGS ===== */
h1 {
  text-align: center;
}

h2 {
  text-align: center;
  color: #666;
}

/* ===== INPUTS + BUTTONS ===== */
input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 8px 12px;
  border: none;
  background: #5535e6;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* ===== TO-DO LIST ===== */
.input-section {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

li {
  list-style: none;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.completed {
  text-decoration: line-through;
  color: gray;
}

/* ===== MEAL PLANNER ===== */
.day {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* ===== CALENDAR ===== */
#calendar {
  max-width: 900px;
  margin: 0 auto;
}

.fc {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fc-toolbar-title {
  font-size: 20px;
  font-weight: bold;
}

.fc-event {
  border: none;
  border-radius: 6px;
  font-size: 12px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav {
    display: flex;
    justify-content: space-around;
  }

  .container {
    margin: 10px;
  }

  button {
    padding: 12px;
  }
}