/* CUTECORE JAMAICAN THEME */

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(135deg, #8ff5a3, #000000, #ffe97d);
  color: white;
  overflow-x: hidden;
}

/* Banner */
.banner {
  width: 100%;
  padding: 30px;
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(to right, #00cd5e, #000000, #ffd447);
  text-shadow: 3px 3px rgba(0,0,0,0.5);
  margin-left: 260px;
  border-bottom: 4px solid #ffd447;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.4);
}

/* Sidebar */
.sidebar {
  height: 100vh;
  width: 240px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000;
  border-right: 4px solid #ffd447;
  padding-top: 20px;
  box-shadow: 4px 0px 8px rgba(0,0,0,0.5);
}

.sidebar a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 10px;
  margin: 8px;
  transition: 0.3s ease;
}

.sidebar a:hover {
  background-color: #00cd5e;
  padding-left: 30px;
  box-shadow: 0 0 12px #00cd5e;
}

/* Main Content */
.content {
  margin-left: 260px;
  padding: 20px;
  animation: fadeIn 0.6s ease-in-out;
}

/* Cute placeholder box */
.placeholder {
  width: 100%;
  height: 260px;
  background-color: rgba(255, 255, 255, 0.25);
  border: 3px dashed #ffd447;
  border-radius: 20px;
  margin: 25px 0;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 15px;
  background: black;
  border-top: 4px solid #ffd447;
  text-align: center;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
}

/* Floating Music Button (I’ll activate it once you send HTML) */
.music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffd447;
  color: black;
  padding: 13px 17px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  transition: 0.3s ease;
  border: 3px solid white;
}

.music-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #ffd447;
}
.cute-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin: 40px 0 80px 0;
}

/* Polaroid style cards */
.photo-card {
  background: white;
  border-radius: 18px;
  padding: 12px;
  border: 4px solid #ffd447;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

/* Jamaican flag top stripe */
.photo-card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: 10px;
  background: linear-gradient(to right, #009b3a, #000, #f4c600);
  border-radius: 18px 18px 0 0;
}

/* Image inside the polaroid */
.photo-card img {
  width: 100%;
  border-radius: 12px;
}

/* Caption text */
.caption {
  font-family: "Comic Sans MS", "Poppins", cursive;
  color: black;
  margin-top: 10px;
  font-size: 16px;
}

/* Hover animation */
.photo-card:hover {
  transform: translateY(-6px) rotate(1deg) scale(1.04);
  box-shadow: 0 10px 25px rgba(255,212,71,0.6);
}


/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
