@charset "UTF-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}
img {
  display: block;
}

#article-title {
  font-family: "magistral", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  padding: 20px 40px 20px 40px; 

}
nav-h1 {
  font-family: "magistral", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 20px 40px 20px 40px; 

}

h1 {
  font-family: "magistral", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 20px 40px 0px 40px; 

}

h2 {
  font-family: "magistral", sans-serif;
  color: black;
}
p {
  font-family: "magistral", sans-serif;
  align-items: center; 
  width: block;
  color: black;
  font-weight: lighter;
  line-height: 1.8; /* Sets line spacing to 1.8 times the font size */
  padding: 20px 40px 20px 40px; 
}
.reduced-padding {
  padding-top: 0.5px;
  width: 33%;
}
#logo-container {
  width: 424.2px;
  height: 74px;

	
}
.heading-background {

  width: 424.2px;

}
.header {
  display: flex;
  justify-content: space-between; /* Pushes logo and nav to opposite ends */
  align-items: center;           /* Vertically centers both */
  padding: 0 5%;
  background-color: #ffb400;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

  height: 74px; 
  
  /* Ensures height includes the padding */
  box-sizing: border-box; 
  

}
nav ul {
  display: flex;
  align-items: center; /* Centers items vertically */
  list-style: none;
  padding: 0;
  margin: 0;	
  gap: 0.5px;
}

.nav-logo {
  height: 40px; /* Adjust to fit your navbar height */
  width: auto;  /* Maintain aspect ratio */
  margin-right: 0.5px;
}
.nav-links {
  display: flex;
  list-style: none;             /* Removes bullet points */
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;        /* Removes underlines */
  color: #ffffff;
  font-weight: Intermediate;
  gap: 20px;
}

.nav-links a:hover {
  color: #000000;               /* Simple hover effect */
}
li {
  font-family: "magistral", sans-serif;
  font-weight: 300;
  font-style: normal;
}
ul {
  display: flex; /* Makes the child list items flex items in a row */
  list-style-type: none; /* Removes default bullets */
  margin: 0; /* Removes default margin */
  padding: 0; /* Removes default padding */
  gap: 20px; /* Adds space between items (modern CSS property) */
}

li {
  /* Additional styling for list items, e.g., padding or colors */
  padding: 0px;
  color: #ffffff;
}
#vertical {
  display: block; /* Default display for list items, so they stack vertically */
  margin-bottom: 10px; /* Adds vertical space between items */
}
a {
  text-decoration: none;
}
 a:link {

  color: #ffffff;

}
 a:hover {

  color: white;

}
a:visited {
  color: whitesmoke;
}
#wrapper {
  background-color: aliceblue;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding doesn't add to the width */
}
.container {
  background-color: aliceblue; /* Adds a light gray background */
  padding: 20px;            /* Adds space inside the border */
  border: 1px solid #ccc;  /* Adds a border */
  width: 100%;              /* Sets the width to 50% of its parent */
  margin: auto;            /* Centers the div horizontally */
}

body, html {
  margin: 0;
  height: 100%;
}

.hero-container {
    /* Full screen height and width */
  height: 50vh;
  width: 100%;
    
    /* Background image settings */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Optional: adds a parallax effect */
    
    /* Centering text */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: "magistral", sans-serif;
}

.hero-text {
  padding: 0 0 40px 0;
  margin: 0;
}
.hero p {
  margin: 0;
  padding: 0;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1px;
}

.hero-text button {
  font-family: "magistral", sans-serif;
  background-color: dodgerblue;
  color: white;
  border-style: solid;
  border: none;
  padding: 10px 20px;
  border-radius: 100vh;  
  outline: none; 
  font-size: 1rem;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #00e495; /* Hover color (Green) */
  color: #ffb400te;
}
.footer {
  display: flex;
  justify-content: center; /* Centers items horizontally (Main Axis) */
  color: white;
  font-family: "magistral", sans-serif;
  font-weight: Intermediate;

  align-items: center;           /* Vertically centers both */
  padding: 0 5%;
  background-color: black;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

  height: 74px; 
  
  /* Ensures height includes the padding */
  box-sizing: border-box; 
	
}
.footer-container {
  display: flex;
  align-items: center; /* Vertically centers the logo and text */
  gap: 15px;           /* Adds space between the logo and text */
}

.footer-logo {
  height: 40px;        /* Adjust this to make the logo small */
  width: auto;         /* Maintains aspect ratio */
}

* {
  box-sizing: border-box; /* */
}

.contact-container {
  font-family: "magistral", sans-serif;
  position: center;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 600px; /* Limits size on desktop */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	    margin: 0 auto;
}

input[type=text], input[type=email], textarea {
  font-family: "magistral", sans-serif;
  width: 100%; /* Makes inputs scale with container */
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical; /* Allows vertical scaling only */
}

input[type=submit] {
  font-family: "magistral", sans-serif;
  background-color: dodgerblue;
  color: white;
  padding: 12px 20px;
  border: none;
	    border-radius: 50px;
  cursor: pointer;
    display: block;
  margin: 0 auto;
	width: 150px; 
			
}

input[type=submit]:hover {
  background-color: #00e495;

}
button, input[type="submit"] {
  width: fit-content;
}
	

