@font-face {
font-family: "RaleRegular";
src: url(../assets/fonts/Raleway-VariableFont_wght.ttf) format("truetype");
font-weight: normal;
}

@font-face {
font-family: "Roboto";
src: url(../assets/fonts/Roboto-VariableFont_wdth,wght.ttf) format("truetype");
font-weight: normal;
}

/* === GENERAL RESET === */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: RaleRegular, sans-serif;
background-color: #f8f8f8;
color: #333;
}

/* === NAVBAR === */
.header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 10px 50px;
    background-color: #fff;
    font-family: "RaleRegular";
}

.navbar a {
    font-size: 16px;
    color: #267E2F;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar a:hover {
    background-color: #54A13E;
    color: white;
}

.subnav {
    position: relative;
}

.subnavbtn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: #267E2F;
    font-size: 16px;
    font-family: "RaleRegular";
    padding: 14px 20px;
    transition: color 0.3s ease;
}

.subnavbtn:hover {
    color: #54A13E;
}

.subnavcontent {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #54A13E;
    min-width: 200px;
    border-radius: 6px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.subnavcontent a {
    display: block;
    color: white;
    padding: 10px 20px;
    transition: background 0.3s ease;
}

.subnavcontent a:hover {
    background-color: #3d7c2c;
}

.subnav:hover .subnavcontent {
    display: block;
}

.Login, .Logout {
margin-left: auto;
color: white !important;
background-color: #266E2F;
padding: 8px 16px !important;
border-radius: 6px;
font-weight: 500;
transition: all 0.3s ease;
}

.Login:hover, .Logout:hover {
background-color: #FAB221;
color: #fff !important;
}

/* === MAIN CONTENT === */
.content-Container {
display: flex;
flex-direction: column;
gap: 3rem;
padding: 2rem 10%;
}

/* --- Introduction Section --- */
.Introduction {
background-color: #ffffff;
border-radius: 16px;
padding: 3rem 2rem;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
text-align: center;
transition: transform 0.3s ease;
}

.Introduction:hover {
transform: translateY(-3px);
}

.Introduction h1 {
font-size: 48px;
color: #FAB221;
margin-bottom: 1rem;
font-weight: 700;
}

.Introduction p {
font-size: 18px;
color: #444;
width: 90%;
margin: 0 auto 2rem auto;
line-height: 1.6;
}

.Img-con {
display: flex;
justify-content: center;
margin-top: 2rem;
}

.Img-con img {
width: 80%;
max-width: 900px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* --- Goals Section (Mission + Vision) --- */
.Goals {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
gap: 2rem;
}

.Mission, .Vision {
flex: 1;
min-width: 300px;
background-color: #ffffff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 2rem;
text-align: center;
transition: transform 0.3s ease;
}

.Mission:hover, .Vision:hover {
transform: translateY(-5px);
}

.Mission h1, .Vision h1 {
color: #FAB221;
font-size: 36px;
margin-bottom: 1rem;
}

.Mission p, .Vision p {
font-size: 18px;
color: #444;
line-height: 1.6;
}

/* =======================
   FOOTER
======================= */
.Footer {
    background-color: #266E2F;
    color: white;
    padding-top: 40px;
}

.Web-name h1 {
    color: #FAB221;
    text-align: center;
    font-size: 48px;
}

.Footer-Content {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.Footer-Content div {
    display: flex;
    flex-direction: column;
}

.Footer-Content h2 {
    margin-bottom: 10px;
}

.Footer-Content a {
    color: white;
    text-decoration: none;
    margin: 8px 0;
    transition: color 0.3s ease;
}

.Footer-Content a:hover {
    color: #FAB221;
}

.FooterBoot {
    background-color: #54A13E;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.FooterBoot p {
    font-weight: 300;
}

/* === RESPONSIVENESS === */
@media (max-width: 768px) {
.navbar {
flex-wrap: wrap;
}
.Goals {
flex-direction: column;
align-items: center;
}
.Introduction p {
width: 100%;
}
.Img-con img {
width: 100%;
}
}
