body {
  background-image: url('watercover.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  font-family: Times, sans-serif;
  margin: 0;
  color: #111;
}

.menu {
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 1rem;
  position: sticky;
  top: 0;
}

.menu a {
  margin: 0 1rem;
  color: #3b005f;
  text-decoration: none;
  font-weight: bold;
}

.section {
  max-width: 1900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.section h2 {
  color: #3b005f;
  text-align: left;
  margin-bottom: 1rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  padding: 1rem;
  width: calc(50% - 1rem);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.card h3 {
  margin-top: 0;
  color: #6d4aff;
}

.card p {
  font-size: 1rem;
  line-height: 1.4;
}

body.blue-box {
  background-color: #1a237e;
  color: white;
  border: 2px dashed #90caf9;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 10px;
  box-shadow: 4px 4px 0 #0d47a1;
}

@media (max-width: 600px) {
  .card {
    width: 100%;
  }
}  





body.weed {
  background-color: #116611;
  color: black;
  font-family: Verdana, sans-serif;
  padding: 2rem;
}
.left-box-weed {
  flex: 2;
  background-color: #228B22; /* green marihuana vibe */
  padding: -5rem;
  border-radius: 0;
  min-height: 900px;
}

.small-box-weed {
  background-color: #228B22;
  padding: 8rem;
  border-radius: 0;
}






body.movies {
  background-image: url('moviescover.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  color: white;
  font-family: Verdana, sans-serif;
  padding: 2rem;
}
.left-box-movies {
  flex: 2;
  background-color: black;
  padding: -5rem;
  border-radius: 0;
  min-height: 900px;
}

.small-box-movies {
  background-color: black;
  padding: 8rem;
  border-radius: 0;
}






body.aboutme {
  background-image: url('aboutmecover.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  color: black;
  font-family: Verdana, sans-serif;
  padding: 0rem;
}

.about-layout {
  display: flex;
  gap: 1rem;
  max-width: 1100px;
  margin: 1rem auto; 
}

.left-box {
  flex: 2;
  background-color: rgb(128, 0, 32); 
  padding: -5rem;
  border-radius: 0;
  min-height: 900px; 
}

.right-boxes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.small-box {
  background-color: rgb(128, 0, 32);
  padding: 8rem;
}