/* Your existing CSS styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 0;
  background-color: #1C1501;
  color: #FFF;
  font-family: verdana, arial, sans-serif;
  text-align: left;
  letter-spacing: 1px;
  overflow-x: hidden;
}

a {
  color: #FFF;
  font-size: 14px;
  text-decoration: none;
}

a:hover {
  color: #63552F;
}

.more {
  float: left;
}

.clear {
  clear: both;
}

p {
  margin: 20px 0;
  line-height: 16px;
  font-size: 14px;
}

#container {
  margin: 0 auto;
  width: 873px;
}

#menu {
  background-image: url(images/menu.gif);
  width: 862px;
  height: 90px;
  position: relative;
}

#menu li {
  position: absolute;
  top: 50px;
  list-style-type: none;
}

#m01 {
  left: 160px;
}

#m02 {
  left: 305px;
}

#m03 {
  left: 450px;
}

#m04 {
  left: 590px;
}

#m05 {
  left: 730px;
}

#menu a {
  font-family: verdana, arial, sans-serif;
  font-size: 12px;
  font-weight: bolder;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
}

#menu a:hover {
  color: #63552F;
}

#header {
  background-image: url(images/header.gif);
  background-repeat: repeat-y;
  width: 873px;
}

#logo {
  width: 240px;
  height: 46px;
  margin: 10px 0 0 80px;
  float: left;
  display: inline;
}

#dj {
  background-image: url(images/dj.jpg);
  width: 498px;
  height: 405px;
  float: right;
  margin-right: 40px;
  display: inline;
}

#welcome {
  width: 210px;
  margin: 30px 0 0 90px;
  float: left;
  display: inline;
}

#welcome h2 {
  margin: 0 0 20px;
}

#welcome p {
  width: 200px;
}

#welcome img {
  border: solid 3px #FFFFFF;
}

#middle,
#middle2 {
  background-image: url(images/middle.gif);
  width: 873px;
  height: 21px;
}

#middle2 {
  background-image: url(images/middle2.gif);
  height: 22px;
}

#content {
  background-image: url(images/content.gif);
  width: 873px;
}

#left {
  float: left;
  width: 435px;
  margin: 0 0 0 85px;
}

#right {
  float: right;
  width: 258px;
  margin: 0 62px 20px 0;
}

#footer {
  background-image: url(images/footer.gif);
  background-repeat: no-repeat;
  width: 873px;
}

#footer p {
  height: 58px;
  width: 873px;
  text-align: center;
  margin: 0;
  padding: 30px 0 0;
  font-size: 11px;
}

#footer a {
  font-size: 11px;
}

/* Modal styles */
#modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Black background with transparency */
  overflow: auto; /* Enable scroll if needed */
}

.photo {
  transition: transform 0.2s ease-out; /* Smooth transition */
}

.photo:hover {
  transform: scale(1.1); /* Scale up by 10% on hover */
}

/* Modal content */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  max-height: 80%;
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #
