@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #eaf8ff;
  color: #0f172a;
}

/* ================= HEADER ================= */
.header {
  background: #00c2ff;
  padding: 50px 20px 160px; /* extra bottom space */
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.header h1 {
  font-size: 42px;
  margin: 0;
}

.header p {
  margin-top: 10px;
  opacity: 0.9;
  font-size: 16px;
}

/* CLOUD FIXED (NO OVERLAP ISSUE) */
.clouds {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: white;
  border-top-left-radius: 100% 70px;
  border-top-right-radius: 100% 70px;
  z-index: 1;
}

/* ================= MAIN CONTAINER ================= */
.container {
  max-width: 1100px;
  margin: 0 auto;               /* ❌ negative margin removed */
  padding: 40px 20px 40px;      /* ✅ safe top padding */
  position: relative;
  z-index: 2;                   /* content always above clouds */
}

/* ================= CARD ================= */
.card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

/* ================= DAILY PLAN ================= */
.daily {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.daily-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
}

/* IMAGES */
.daily img {
  width: 110px;
  border-radius: 14px;
  background: #f1f5f9;
  padding: 10px;
}

/* ================= BUTTON ================= */
.btn {
  background: #22c55e;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* ================= PROGRESS ================= */
.progress-box {
  background: #e5f6ff;
  border-radius: 20px;
  overflow: hidden;
  height: 18px;
  margin-top: 10px;
}

.progress-bar {
  background: linear-gradient(90deg, #22c55e, #4ade80);
  height: 100%;
}

/* ================= SUCCESS ================= */
.success {
  margin-top: 15px;
  background: #dcfce7;
  padding: 16px;
  border-radius: 16px;
  color: #166534;
  font-weight: 600;
}

/* ================= CALENDAR ================= */
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.day {
  background: #f1f5f9;
  padding: 12px;
  text-align: center;
  border-radius: 14px;
  font-size: 14px;
}

.done {
  background: #bbf7d0;
}

/* ================= MOTIVATION ================= */
.motivation {
  text-align: center;
}

.motivation img {
  max-width: 260px;
}
