body {
  background: url("../media/background.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #232946;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  background: #f4d35e;
  color: #232946;
  padding: 0.5em 1em;
  border-radius: 5px;
}
.hero {
  background: rgba(35,41,70,0.85);
  color: #fff;
  padding: 3rem 0;
}
footer {
  background: #232946;
  color: #fff;
  padding: 1rem 0;
  margin-top: 2rem;
}
main {
  min-height: 70vh;
  background: rgba(255,255,255,0.92);
  border-radius: 1rem;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}
.playful-img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.15);
  border-radius: 2rem;
  transition: transform 0.3s;
}
.img-sari {
  transform: rotate(-6deg) scale(1.08);
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin-right: -2rem;
  border: 6px solid #f4d35e;
}
.img-edina {
  transform: rotate(8deg) scale(1.05);
  margin-top: 3rem;
  margin-left: -2rem;
  border: 6px solid #ee964b;
}
.img-sari:hover, .img-edina:hover {
  transform: scale(1.13) rotate(0deg);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.22);
  z-index: 2;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.gallery-item {
  width: 180px;
  border: 1px solid #fff;
  border-radius: 1rem;
  overflow: hidden;
  background: transparent; /* No black background */
  transition: box-shadow 0.2s;
}
.gallery-item:hover {
  box-shadow: 0 0 10px #f4d35e;
}
.gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.gallery-item .desc {
  color: #232946; /* dark text for visibility on light backgrounds */
  text-align: center;
  padding: 0.5em 0.2em;
  font-size: 1em;
  background: transparent; /* Make the description background transparent */
}
.table-responsive {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2rem;
  background: #fff;
}
caption {
  caption-side: top;
  text-align: left;
  font-weight: bold;
  padding-bottom: 0.5em;
}
th, td {
  border: 1px solid #aaa;
  padding: 0.75em;
  text-align: center;
}
th {
  background: #f4d35e;
}
details summary {
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px; /* or your preferred height */
  background-size: cover;
  background-position: center;
  z-index: 0;
}
header {
  padding-top: 0;
  position: relative;
  z-index: 1;
}
nav, .navbar {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .playful-img { width: 220px; height: 220px; }
  .img-sari, .img-edina { margin: 1rem 0; }
}
@media (max-width: 575px) {
  .playful-img { width: 140px; height: 140px; }
}
