@charset "utf-8";

h2 {
	font-family: "DM Serif Display", serif;
	font-size: 35px;
	font-weight: bold;
}

p {
	line-height: 1.6;
	margin-bottom: 15px;
	font-family: "Outfit", sans-serif;
}

.logo-container {
	float: left;
	margin-right: 20px;
}

.logo-container img {
	height: 80px;
}

.text-container {
	position: relative;
	top: 30%;
	left: 70%;
	width: 50%;
	height: 70%;
	transform: translate(-50%, -50%);
	background-color: #FFFBFB;
	z-index: 1;
	padding: 4%;
	border: 1px solid #000000;
	border-radius: 20px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
	overflow-y: hidden;
}

.text-container h2 {
	font-size: 40px;
	text-align: center;
	width: 50%;
	margin: 0 auto;
}

.image-container {
	padding: 2%;
	position: relative;
	width: 50%;
	float: left;
}

.image-container img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.container {
	width: 100%;
	margin: auto;
	padding: 1%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.navi {
	list-style: none;
	font-family: "Outfit", sans-serif;
	display: flex;
	justify-content: center;
	align-content: space-between;
	padding-bottom: 1%;
	gap: 7%;
}

.navi a:link, a:visited {
	font-size: 1.55em;
	color: #000000;
	text-decoration: none;
}

.navi a:hover, a:active {
	color: #313628;
	text-decoration: underline;
}

.main-photo {
	width: 100%;
	height: 1000px;
	border-radius: 20px;
	display: block;
	margin: 0;
}
.text-on-image {
	width: 100%;
	height: 1000px;
	background-image: url("images/Forest_img_01.jpg");
	border-radius: 20px;
	background-size: contain;
	background-position: center center;
    color: white; 
    font-size: 115px;
	font-family: "DM Serif Display", serif;
    display: flex; 
    justify-content: center;
    align-items: center;
    text-align: center;
	position: relative;
}

.btn-submit {
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	padding: 1% 2%;
	border: 3px solid;
	border-radius: 100px;
	background-color: transparent;
	position: absolute;
	top: 18px;
	right: 5px;
	
}

.btn-submit:hover {
	color: white;
	background-color: #5D7977;
}

.title {
  font-family: "DM Serif Display", serif;
  font-size: 55px;
  font-weight: bold;
  margin: 0;
  text-align: center;
  padding-top: 2%;
}

.subtitle {
  font-size: 20px;
  margin: 0;
  color: #666;
  text-align: center;
}

.image-02 img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.card-container {
	display: flex;
    justify-content: center;
	column-gap: 2%;
	overflow-x: auto;
	padding: 2%;
}

/* Card Styles */
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 300px;
  height: 550px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 10px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.card-image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
  font-family: "DM Serif Display", serif;
  margin: 10px 0;
  font-size: 18px;
  color: #333;
}

.card-content p {
  margin: 5px 0 15px;
  color: #666;
  font-size: 14px;
}

/* Button Styles */
.learn-more {
  padding: 10px 20px;
  font-size: 14px;
  color: #000;
  border: 2px solid #000;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.learn-more:hover {
  background: #000;
  color: #fff;
}

/*footer*/
footer {
  background-color: #857F74; 
  padding: 20px;
  text-align: center;
}

.footer-container {
	max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
	text-align: left;
}

.footer-content {
  width: 45%;
}


footer h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #FFFFFF;
  font-family: "Outfit", sans-serif;
}

footer p {
  margin-bottom: 5px;
  color: #FFFFFF;
  font-family: "Outfit", sans-serif;
}

/*page 2*/

.row {
	display: flex; 
}

.column {
	min-width: 30%;
	padding: 2%;
	box-sizing: border-box;
}

.column h3 {
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
}

.image-03 {
	max-width: 100%;
	height: auto;
	padding: 5%;
}

.footer {
	height: 90px;
	text-align: center;
	font-size: 10pt;
	padding-top: 3%;
	font-family: "Outfit", sans-serif;
	color: #FFFFFF;
}

