body {
    font-family: 'Lato','Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f0f0; /* Changed body background color */
    color: #333; /* Dark text color */
    font-size: 1.32rem; /* Increased body text size */
}

.container {
    width: 60%;
    margin: 0 auto; /* Center the container horizontally */
    padding: 15px;
    background-color: #fff; /* White container background */
}

.header {
    background-color: #2C5E2E; /* Green color for header */
    text-align: center;
    padding: 40px 20px; /* Increased padding */
}

.header-text {
    color: #fff; /* White text color for header */
    font-size: 3.8rem; /* Increased font size */
    font-style: italic; /* Italic style */
    letter-spacing: 1.5px; /* Increased letter spacing */
    font-weight: bold; /* Bold font weight */
    transform: skewX(-10deg); /* Added slant */
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    line-height: 1.5;
}

a {
    color: #2C5E2E; /* Green color for links */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition */
}

a:hover {
    color: #4CAF50; /* Lighter color on hover */
}

.footer {
    width: 60%; /* Same width as container */
    margin: 0 auto; /* Center the footer horizontally */
    padding: 15px;
    background-color: #c1c1c1; /* Grey background for footer */
    text-align: center;
}

.footer p {
    font-size: 1.1rem; /* Decreased font size for last line of footer */
}

.button {
    display: inline-block;
    padding: 16px 28px; /* Increased padding */
    background-color: #2C5E2E; /* Green color for button */
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.32rem; /* Increased button text size by 20% */
    border-radius: 10px; /* Slightly rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* Center the button */
.button-container {
    text-align: center;
}

.button:hover {
    background-color: #44883b; /* Lighter green color on hover */
    color: #fff; /* White text color on hover */
}


.gallery {
    display: flex;
    flex-wrap: wrap;
}

.thumbnail {
    width: 150px;
    height: 150px;
    margin: 10px;
    cursor: pointer;
    background-size: cover; /* Scale and crop the background image to cover the entire container */
    background-position: center; /* Center the background image */
}

.full-image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    text-align: center;
}

.full-image-container img {
    max-width: 80%;
    max-height: 80%;
    margin-top: 50px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/*STAR*/
.star-container {
    display: flex;
/*    align-items: center;*/
    justify-content: center;
  }
  
  .star {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 0.5em;
    color: gold;
    border-right: 0.3em solid transparent;
    border-bottom: 0.7em solid currentColor;
    border-left: 0.3em solid transparent;
    font-size: 0.5em;
    /* Adjust vertical alignment */
    transform: translateY(0.1em);
  }

  .star:before, .star:after {
    content: '';
    position: absolute;
    top: 0.6em;
    left: -1em;
    width: 0;
    height: 0;
    border-right: 1em solid transparent;
    border-bottom: 0.7em solid currentColor;
    border-left: 1em solid transparent;
    transform: rotate(-35deg);
  }

  .star:after {
    transform: rotate(35deg);
  }

  /* Add vertical alignment for the text */
  .star-container span {
    display: inline-block;
    vertical-align: middle;
  }

/* Media Queries for Responsive Design */

@media only screen and (max-width: 768px) {
    .container {
        width: 90%; /* Adjust width for tablets */
    }

    .header-text {
        font-size: 3.5rem; /* Decrease header text size for tablets */
    }

    .button {
        font-size: 1.1rem; /* Decrease button text size for tablets */
    }

    .footer {
        width: 100%; /* Same width as container */
        padding: 5px;

    }
    .footer p {
    font-size: .95rem; /* Decreased font size for last line of footer */
    }
}

@media only screen and (max-width: 480px) {
    .container {
        width: 90%; /* Adjust width for phones */
    }

    .header-text {
        font-size: 3rem; /* Decrease header text size for phones */
    }

    .button {
        font-size: 1rem; /* Decrease button text size for phones */
        padding: 12px 24px; /* Adjust button padding for phones */
    }

    .footer {
        width: 100%; /* Same width as container */
        padding: 5px;

    }
    .footer p {
    font-size: .95rem; /* Decreased font size for last line of footer */
    }

}
