* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: url('images/pond.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  font-family: Arial, sans-serif;
}

.menu-toggle {
  display: none;
  background: #000;
  color: white;
  padding: 15px 20px;
  font-size: 1.2em;
  cursor: pointer;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  text-align: left;
}

.side-menu {
  width: 220px;
  background-color: rgba(0, 0, 0, 0.85);
  padding-top: 60px;
  position: fixed;
  height: 100vh;
  transition: transform 0.3s ease-in-out;
  top: 0;
  left: 0;
  z-index: 1000;
}

.side-menu a {
  display: block;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  font-size: 1.1em;
  transition: background 0.3s;
}

.side-menu a:hover,
.side-menu a.active {
  background-color: rgba(255, 255, 255, 0.2);
}

.side-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5em;
  cursor: pointer;
  color: white;
}

.top-logo-bar {
  position: fixed;
  top: 0;
  right: 0;
  height: 56px;
  z-index: 1002;
  background-color: #000;
  display: flex;
  align-items: center;
  padding: 5px 15px;
}

.top-logo-bar img {
  height: 50px;
  transition: transform 0.3s;
}

.top-logo-bar img:hover {
  transform: scale(1.05);
}

.main-content {
  margin-left: 220px;
  padding: 100px 30px 30px;
}

h1 {
  font-family: 'Pacifico', cursive;
  font-size: 4em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  text-align: center;
}

.caption {
  font-size: 1.8em;
  margin-top: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  text-align: center;
}

.intro-box {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.intro-box p {
  font-size: 1.2em;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(0,0,0,0.6);
  color: #ccc;
  font-size: 0.9em;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .side-menu {
    transform: translateX(-100%);
  }

  .side-menu.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    padding: 100px 20px 20px;
  }

  .menu-toggle {
    display: block;
  }
}