* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  padding: 20px;
  background-color: #faa3a9;
  background-image: url('images/Adita Club.jpg');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 70% auto;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;

  /* Desktop layout - customize this to change positioning */
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "text image2";
}

/* Assign each element to a grid area */
.image-2 {
  position: fixed;
  top: 15vw;
  left: 2vw;
  width: 60vw;
  z-index: 10;
}

.text-block { grid-area: text; }

.content {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.text-block h1 {
  margin-bottom: 16px;
  color: #333;
}

.text-block p {
  color: #666;
}

/* Mobile layout */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "image2";
  }

  body {
    background-position: right top;
    background-size: 120% auto;
  }

  .image-2 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 60vw;
  }
}

/* ===========================================
   POSITIONING GUIDE - Edit grid-template-areas
   ===========================================

   Desktop examples (2 columns):

   Side by side images, text below:
   grid-template-areas:
     "image1 image2"
     "text text";

   Text on left, images stacked on right:
   grid-template-areas:
     "text image1"
     "text image2";

   All in one column:
   grid-template-columns: 1fr;
   grid-template-areas:
     "image1"
     "text"
     "image2";

   =========================================== */
