
body {
  background-color: white;
  color: black;
  background-image: url("fishbackground.jpg");
  background-size: cover;
  background-position: center;
  font-family: Verdana;
}
/* 1. The Header Container */
.main-header {
  position: relative;
  width: 100%;
  height: 300px; /* Adjust this to make your header taller or shorter */
  
  /* THIS CENTERS THE TEXT */
  display: flex;
  justify-content: center; 
  align-items: center;
  
  /* THE BACKGROUND + THE DARK OVERLAY */
  /* The first part (rgba 0,0,0,0.4) is your transparent black layer */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('headerr.jpg');
  background-size: cover;
  background-position: center;
  
  font-family: 'Sniglet', cursive;
  overflow: hidden; /* Keeps the "peeking" contained */
}

.header-content h1 {
  margin: 0;
  font-size: 3.5rem;
  color: white;
  z-index: 5;
  text-align: center;
}

/* BASE SETTINGS FOR SIDE DRAWINGS */
.side-drawing {
  position: absolute;
  height: 10px; /* Change this to make the drawings bigger/smaller */
  width: auto;
  z-index: 10;
}

/* FIXING THE LEFT IMAGE (Duck) */
.left-peek {
  left: 20px;
  top: 20px; /* INCREASE this number to move it DOWN, DECREASE to move it UP */
}

/* FIXING THE RIGHT IMAGE (Peeking Drawing) */
.right-peek {
  right: -20px; /* Negative pushes it off the edge to "peek" */
  bottom: -25px; /* INCREASE this number to move it UP, DECREASE to move it DOWN */
}
.grid-container {
  display: grid;
  /* Creates 3 columns: sidebars are smaller (200px), middle takes the rest */
  grid-template-columns: 200px 1fr 200px; 
  gap: 15px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px;
}

/* General Box Styling (Bubbly + Pinterest Retro Style) */
.box {
  background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent */
  border: 3px solid #4a6fd4;      /* Neon Green border like the reference */
  border-radius: 15px;
  padding: 15px;
  color: white;
  font-family: 'Sniglet', cursive;
  box-shadow: 4px 4px 0px #000;   /* Hard shadow for that pop */
}

/* Make the bottom box span all 3 columns */
.bottom-full {
  grid-column: 1 / 4; 
  text-align: center;
}

/* Responsive fix: Stack them on top of each other on mobile */
@media (max-width: 800px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
  .bottom-full {
    grid-column: 1;
  }
}

/* Container for the whole calendar */
.cute-calendar {
  background-color: #fffaf0; /* Very light cream/pink */
  border: 1px solid #ffb6c1; /* Light pink border */
  padding: 5px;
  font-family: 'Sniglet', cursive; /* Keeping your bubbly font! */
  color: #d87093; /* Pale violet red text */
}

/* The Month/Year header (The yellow part in your screenshot) */
.cal-header {
  background-color: #fffacd; /* Lemon chiffon yellow */
  border: 1px solid #ffb6c1;
  text-align: center;
  padding: 3px 0;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

/* The days of the week row */
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  color: #a9a9a9;
  margin-bottom: 5px;
}

/* The grid for the numbers */
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.8rem;
  
}

/* Styling the current day to stand out */
.cal-today {
  background-color: #ffb6c1;
  color: white;
  border-radius: 50%; /* Makes it a circle */
}


/* The main body of the iPod */
.ipod {
  background-color: #f0f0f0; /* Classic silver/white */
  border-radius: 15px;
  padding: 15px 10px 25px 10px;
  width: 140px; /* Perfectly sized for your sidebar */
  margin: 0 auto;
  box-shadow: inset -2px -2px 5px rgba(0,0,0,0.2), 3px 3px 5px rgba(0,0,0,0.5);
  font-family: 'Arial', sans-serif; /* System font for that tech look */
}

/* The glowing retro screen */
.ipod-screen {
  background-color: #9eab88; /* Retro LCD green */
  border: 3px solid #333;
  border-radius: 5px;
  height: 60px;
  margin-bottom: 20px;
  padding: 5px;
  color: #111;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
}

/* The main circular wheel */
.ipod-wheel {
  background-color: #ffffff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  position: relative;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Positioning the fake button text */
.wheel-label {
  position: absolute;
  font-size: 0.5rem;
  font-weight: bold;
  color: #aaa;
}
.top-label { top: 8px; left: 50%; transform: translateX(-50%); }
.bottom-label { bottom: 8px; left: 50%; transform: translateX(-50%); }
.left-label { left: 8px; top: 50%; transform: translateY(-50%); }
.right-label { right: 8px; top: 50%; transform: translateY(-50%); }

/* The working center button! */
.ipod-center-btn {
  background-color: #e0e0e0;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Keeps it dead center */
  box-shadow: inset 1px 1px 2px #fff, inset -1px -1px 3px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: 0.1s; /* Makes the click look smooth */
}

/* Makes the button look like it's being pressed */
.ipod-center-btn:active {
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4);
}