@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');

body{
    margin: 0;
}

/* hamburger section for why, gallery and team members */
.menu-container {
	position: relative;
	display: flex;
	justify-content: flex-end;
	padding: 10px;
	border-top-left-radius: 40px;
	/* Adjusted to make the corner rounded on the opposite side */
	border-bottom-left-radius: 40px;
	/* Adjusted to make the corner rounded on the opposite side */
}

.hamburger-menu {
	width: 30px;
	height: 24px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 1001;
	/* Ensure it stays on top */
}

.bar {
	height: 3px;
	width: 100%;
	background-color: black;
	transition: all 0.3s ease;
}

.menu-items {
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 40px;
	right: 0;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
	width: 180px;
	z-index: 1000;
	background-color: #48A860;
	align-items: center;
  	visibility: hidden; /* Initially hidden */
	
}
.menu-items.active {
	visibility: visible; /* Show when active */
	transform: translateX(0); /* Slide in from right */
  }

/* for each menu-items */
.responsive-div1 {
	width: 100%;
	text-align: center;
	line-height: 28px;
}

.responsive-div1 h1 {
	padding: 10px;
	font-size: 27px;
	margin: 0;
    font-family: "Montserrat", "Helvetica", Arial, sans-serif;
    font-weight: 200;
}

.responsive-div1 a {
	text-decoration: none;
	color: inherit;
}

.menu-items .responsive-div1 {
	margin-bottom: 5px;
}

.menu-items .responsive-div1 h1 a {
	text-decoration: none;
	color: black;
}

.menu-items .responsive-div1:hover {
    background-color: #3e8b51; /* A darker shade of the original background color */
}


/* Styles for when the menu is open */
.menu-open .bar:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.menu-open .bar:nth-child(2) {
	opacity: 0;
}

.menu-open .bar:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

.menu-open .menu-items {
	transform: translateX(0);
	padding: 0;
}

/* for home bar */
.responsive-div {
	background-color: #48A860;
	color: black;
	height: 80px;
	width: 250px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	position: absolute;
	display: flex;
	align-items: center;
	z-index: 1;
}

.responsive-div h1 {
	padding: 8px;
	margin: 0;
    font-family: "Montserrat", "Helvetica", Arial, sans-serif;
    font-weight: 200;
    font-size: 3.15rem;
}

.responsive-div a {
	text-decoration: none;
	color: inherit;
}

.responsive-div img {
	height: 32px;
    vertical-align: middle;
}

/* responsiveness for home bar and hamburger */
/* Adjustments for smaller screens */

@media (max-width: 768px) {

	.responsive-div,
	.responsive-div1 {
		width: 18%;
		height: 50px;
	}

	.responsive-div h1,
	.responsive-div1 h1 {
		font-size: 1.7rem;
	}

	.responsive-div img {
		height: 13.7px;
	}
}

@media (max-width: 820px) {

	.responsive-div,
	.responsive-div1 {
		width: 19%;
		height: 50px;
	}

	.responsive-div h1,
	.responsive-div1 h1 {
		font-size: 1.9rem;
	}

	.responsive-div img {
		height: 17px;
	}
}

@media (max-width: 912px) {

	.responsive-div,
	.responsive-div1 {
		width: 18%;
		height: 45px;
	}

	.responsive-div h1,
	.responsive-div1 h1 {
		font-size: 2rem;
	}

	.responsive-div img {
		height: 17px;
	}
}


@media (max-width: 1024px) {

	.responsive-div,
	.responsive-div1 {
		width: 21%;
		height: 60px;
	}

	.responsive-div h1,
	.responsive-div1 h1 {
		font-size: 2.5rem;
	}

	.responsive-div img {
		height: 26.5px;
	}
}

@media (max-width: 480px) {

	.responsive-div,
	.responsive-div1 {
		width: 31%;
		height: 45px;
	}

	.responsive-div h1,
	.responsive-div1 h1 {
		font-size: 1.5rem;
	}

	.responsive-div img {
		height: 16px;
	}
}
@media (max-width: 740px) {

	.responsive-div,
	.responsive-div1 {
		width: 35%;
		height: 45px;
	}

	.responsive-div h1,
	.responsive-div1 h1 {
		font-size: 1.5rem;
	}

	.responsive-div img {
		height: 16px;
	}
}
@media (max-width: 915px) {
	
	.responsive-div,
	.responsive-div1 {
		width: 30%;
		height: 45px;
	}

	.responsive-div h1,
	.responsive-div1 h1 {
		font-size: 1.5rem;
	}

	.responsive-div img {
		height: 17px;
	}
}

@media (max-width: 420px) {
	
	.responsive-div,
	.responsive-div1 {
		width: 18%;
		height: 45px;
	}

	.responsive-div h1,
	.responsive-div1 h1 {
		font-size: 1.5rem;
	}

	.responsive-div img {
		height: 16px;
	}
}
@media (max-width: 430px) {
	
	.responsive-div1 {
		width: 100%;
		height: 45px;
		padding: 0;
	}
	.responsive-div {
		width: 35%;
		height: 45px;
	}

	.responsive-div h1,
	.responsive-div1 h1 {
		font-size: 1.5rem;
	}

	.responsive-div img {
		height: 16px;
	}
}
/* Styles to ensure single-line text for smaller screens */
@media (max-width: 600px) {
	.menu-items {
	  display: block; /* Display the menu items */
	  width: 150px;
	}
  
	.menu-items .responsive-div1 h1 {
	  white-space: nowrap; /* Prevent text wrapping */
	}
  
	/* Optional: Adjust font size and padding for better fit */
	.menu-items .responsive-div1 {
	  padding: 5px;
	}
  
	.menu-items .responsive-div1 h1 {
	  font-size: 1.2rem;
	}
  }