@charset "utf-8";
/* CSS Document */
 body {
            background-color: NONE;
            margin: 0;
            overflow-x: hidden;
        }
        h1 {
            color: #231942;
            text-align: center;
			font-size: 48px; 
        }
        header {
            display: flex;
			text-align: center;
            justify-content: space-between;
            padding: 10px 20px;
            color: #231942;
			font-size: 48px; 
        }

#box1 {
   font-size: 96px; 
  color: #231942;
  display: flex;  
	margin-top: 25px; 
  align-items: center;
  justify-content: center;
  text-align: center; 
 text-decoration: bold; 
  background: none; 
}

/* Grid Container */
.grid-container {
  display: grid;  
  grid-template-columns: repeat(20, 1fr);  
  grid-auto-rows: 300px;  
  gap: 20px;  
  margin: 50px;
}

/* General Grid Item */
.grid-item {
  display: flex;  
  align-items: center;  
  justify-content: center;  
  color: white;
  font-size: 24px;
}

/* Row 1 */

.item1 {
  grid-row: 1 / span 2;
  grid-column: 1 / span 9;
  background-image: url('../images/dancing-acrylic_paintingc.jpeg'); /* Corrected path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.item2 {
  grid-row: 1 / span 2;
  grid-column: 12 / span 9;
  background-image: url('../images/IMG_2628c.jpg'); /* Corrected path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Row 2 */
.item3 {
  grid-row: 3 / span 2;
  grid-column: 4 / span 15;
  background-image: url('../images/IMG_2890c.jpg'); /* Corrected path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Row 3 */
.item4 {
  grid-row: 5 / span 2;
  grid-column: 2 / span 9;
  background-image: url('../images/dogoilpaintingc.jpg'); /* Corrected path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.item5 {
  grid-row: 5 / span 2;
  grid-column: 11 / span 9;
  background-image: url('../images/IMG_2632c.jpg'); /* Corrected path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Row 4 */
.item6 {
  grid-row: 7 / span 2;
  grid-column: 2 / span 9;
  background-image: url('../images/IMG_2773c.jpg'); /* Corrected path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.item7 {
  grid-row: 7 / span 2;
  grid-column: 11 / span 9;
  background-image: url('../images/IMG_2781c.jpg'); /* Corrected path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Row 5 */
.item8 {
  grid-row: 9 / span 2;
  grid-column: 4 / span 15;
  background-image: url('../images/IMG_2537c.jpg'); /* Corrected path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Row 6 */
.item9 {
  grid-row: 11 / span 2;
  grid-column: 1 / span 9;
  background-image: url('../images/IMG_2782c.jpg'); /* Corrected path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.item10 {
  grid-row: 11 / span 2;
  grid-column: 12 / span 9;
  background-image: url('../images/IMG_2635c.jpg'); /* Corrected path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Lightbox Modal */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-content {
  width: 80%;  /* Adjust width for the image */
  height: 80%; /* Adjust height for the image */
  max-width: 90%;  /* Restrict maximum width */
  max-height: 90%; /* Restrict maximum height */
  background-size: contain; 
  background-position: center;
  background-repeat: no-repeat;
}

.logo {
    font-size: 18px;
    color: #231942;
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 70px;
  cursor: pointer;
}
  .menu-container {
            position: relative;
        }
     .menu-button {
            background: none;
            color: #231942;
            border: #231942;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
			margin-left: 35px; 
			font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            background: #FFFFFF;
            border-radius: 5px;
			text-decoration: none;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            list-style: none;
            padding: 10px 0;
            min-width: 150px;
        }

        .dropdown-menu a {
            color: black;
  			padding: 12px 16px;
  			text-decoration: none;
  			display: block;
			font-size: 15px; 
        }
        .dropdown-menu a:hover {
            background: #F0F0F0;
			text-decoration: none; 
        }
        .menu-container:hover .dropdown-menu {
            display: block;
        }