
body {
  margin: 0;
  font-family: Kelvinch, TT Hoves;
  background-color: #eaeaea;
}

/* nav bar and header */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;

  padding: 20px 0;
  margin: 0 20px 20px;
  color: #343434;
  border-bottom: 1.5px solid #343434;

  font-family: "Kelvinch", serif;
  font-weight: 400;
  font-style: normal;
}

/*.header-title {
  text-align: center;
  font-size: 60px;
  position: sticky;
  left: 50%;
  transform: translateX(-50%);
}*/

.header-title {
  text-align: center; /* Centers the text */
  font-size: 3rem; /* Relative unit for better scaling */
  position: relative; /* Use relative instead of sticky */
  left: 0; /* Reset left positioning */
  transform: none; /* No need for transform */
  margin: 0 auto; /* Center horizontally */
  line-height: 1.2; /* Adjust line spacing */
}

/* Add responsiveness for mobile */
@media screen and (max-width: 768px) {
  .header-title {
    font-size: 2rem; /* Scale down font size for smaller screens */
    padding: 0 10px; /* Add padding if necessary */
  }
}

.social-links {
  display: flex;
  margin-left: auto;
  gap: 5px;
}

.social-links img {
  width: 20px;
}

#nav-icon {
  display: flex;
  margin-right: auto;
  width: 30px;
  cursor: pointer;
}

/* pop out nav */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #C4B7A6;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 28px;
  color: #151a1f;
  display: block;
  transition: 0.3s;

  font-family: "Kelvinch", serif;
  font-weight: 200;
  font-style: normal;
}

.sidenav .closebtn {
  position: absolute;
  top: 10px;
  right: 100px;
  font-size: 50px;
  margin-left: 50px;
  font-family: sans-serif;
}

.sidenav .top-sidenav {
  margin-top: 40px;
  color: #f2f2f2;
  text-align: left;
}

.bottom-sidenav {
  width: 230px;
  height: 150px;
  text-align: left;

  position: absolute;
  top: 80%;
  transform: translateY(-80%);
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

/* Header */
/*.header-img {
  width: calc(100% - 40px);
  height: 600px;
  margin: 0 20px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: url('fordGT_3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}*/

/* Parent container */
.header-container {
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically (if needed) */
  padding: 0; /* Remove unnecessary padding */
  margin: 0 auto; /* Center the container itself */
}

/* Header Image */
/*.header-img {
  width: calc(100% - 40px); 
  max-width: 100%; 
  height: 600px; 
  border-radius: 10px; 
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; 
  background: url('fordGT_3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto; 
  display: block; 
}*/


/*@media screen and (max-width: 768px) {
  .header-img {
    width: calc(100% - 20px); 
    height: 400px; 
  }
}

@media screen and (max-width: 480px) {
  .header-img {
    height: 300px; 
  }
}*/



/* Main Content Styling */
.main-content {
  padding: 40px 20px;
  font-size: 18px;
  text-align: center;
  line-height: 1.6;
  color: #333;
  font-family: Kelvinch, TT Hoves;
}

/* Header Styling */
.main-content h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Paragraph Styling */
.main-content p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Email Link Styling */
.email-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.email-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
  .main-content {
    padding: 20px 10px;
    font-size: 16px;
  }

  .main-content h1 {
    font-size: 28px;
  }

  .main-content p {
    font-size: 16px;
  }
}
