/*.align-center { border: 0; text-align: center;}
        Global styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
			font-size: 1em; line-height: 1.4;
        }
        
        header {
            background-color: #f4f4f4;
            color: #555;
            padding: 10px 0;
            text-align: center;
        }

        header h1 {
            margin: 0;
            font-size: 2.5em;
			text-align: center;
			color: #555;
        }

        .h2 {
            margin: 0;
			text-align: center;
			color: #555;
        }
        .p {
            margin: 0;
			text-align: center;
			color: #555;
        }

/* Style only the link with class 'special-link' */
        .link-strong {
			font-family: Arial, sans-serif;
            color: #555;
            font-size: 20px;
            font-weight: bold;
			font-size: 1em; line-height: 1.4;
			text-decoration: none;  /* Remove default underline */
    		border-bottom: 2px dotted rgba(0, 0, 0, 0.3); /* Light dotted underline */
			padding-bottom: 1px; /* Add spacing between text and the dotted line */
    		transition: border-color 0.3s ease; /* Smooth transition for color change */
        }

        /* Hover effect for the link with class 'special-link' */
        .link-strong:hover {
            color: #000; /* Darker tomato color */
            transform: scale(1.1); /* Slightly enlarge the link */
        }

        /* Active state of the 'special-link' */
        .link-strong:active {
            color: #C71585; /* Dark magenta color */
        }


nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.menu {
  list-style: none;
  display: flex;
  justify-content: center;
}

.menu li {
  margin: 0 10px;
}

.menu a {
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
}

.menu a:hover {
  background-color: white;
  border-radius: 4px;
}

.menu-icon {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #333;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .menu li {
    margin: 10px 0;
  }

  .menu-icon {
    display: block;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }
}



        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
			text-align: center;
			color: #555;
        }

        /* Responsive grid for images and text */
        .row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
			text-align: center;
        }

        .column {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-radius: 8px;
			text-align: center;
        }

        .column img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .column h2 {
            font-size: 1.5em;
            margin-top: 10px;
			color: #555;
        }

        .column p {
            font-size: 1em;
            line-height: 1.5;
			text-align: center;
			color: #555;
        }

        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 20px 0;
            margin-top: 20px;
        }

.left { border: 0; float:left; 
	margin-left: 20px;
	}

        @media (max-width: 600px) {
            header h1 {
                font-size: 1.8em;
            }

            .column {
                padding: 15px;
            }

            .column h2 {
                font-size: 1.3em;
            }

            footer {
                font-size: 0.9em;
            }
        }


    .responsive-img {
      float: right;
      max-width: 100%; /* Adjust based on desired image size */
      height: auto; /* Maintains aspect ratio */
      margin: 0 0 10px 10px; /* Margin to add space around the image */
    }

    /* Clearfix to handle float within the container */
    .clearfix::after {
      content: "";
      display: table;
      clear: both;
    }

    /* Responsive behavior for smaller screens */
    @media (max-width: 768px) {
      .responsive-img {
        float: none;
        display: block;
        margin: 10px auto; /* Centers the image on smaller screens */
        max-width: 100%; /* Makes the image full-width on small screens */
      }
    }




.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thumbnail {
  width: 300px; /* Thumbnail size */
  height: auto; /* Maintain aspect ratio */
  cursor: pointer; /* Change cursor to pointer */
  transition: transform 0.2s; /* Smooth transition for hover effect */
}

.thumbnail:hover {
  transform: scale(1.05); /* Slightly enlarge thumbnail on hover */
}

.modal {
  /* Start hidden by default */
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);

  /* Flexbox for centering */
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
