/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #ffcc33, #ff9933);
  color: #333;
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 240px;
  background: linear-gradient(to bottom, #ffcc33, #ff9933);
  color: white;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  padding: 20px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

.sidebar h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: bold;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-link {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.side-link:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
  transform: translateX(5px);
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom right, #fffdf5, #fff3d1);
  padding: 20px;
  text-align: center;
}

/* Welcome Section */
.welcome h1 {
  font-size: 2rem;
  color: #cc6600;
  margin-bottom: 10px;
}

.welcome p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 20px;
}

/* Daily Image in Welcome Section */
/* Daily Image in Welcome Section */
/* Daily Image in Welcome Section */
.welcome-img {
  width: 100%;          /* takes 80% of page width */
  max-width: 1000px;   /* won’t exceed 1000px */
  height: 600px;       /* fixed height for a big display */
  border-radius: 20px;
  margin-top: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  object-fit: cover;   /* fills the box nicely, crops a little if needed */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  text-align: center;
  margin-bottom: 15px;
}

.logo img {
  width: 120px;   /* adjust size */
  height: auto;
  border-radius: 50%; /* makes it circular if the image is square */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}



/* Footer */
/* Footer */
/* Footer */
footer {
  background: #f4b400;
  color: white;
  text-align: center;
  padding: 4px 0;       /* very thin */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.8rem;    /* slightly smaller text */
  border-top: 1px solid #e69500;
  z-index: 100;
}

