/* How to force SSL access in cPanel */

/* https://www.youtube.com/watch?v=KG9Tpd6G_08 */

/* How to add website to Google search results */

/* https://www.youtube.com/watch?v=fIlqRZbzLH8 */


/* Base styles for the margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles for the body element */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0;
}

main {
  padding: 20px;
  margin: 0;
}

h1, h2, h3 {
  text-align:center;
}

/* Styles for centered images*/
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 40%;
  max-height: 40%;
  border-radius: 5%;
  margin: auto;
  object-fit: contain;
}

.image-container-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container-2 img {
  max-width: 30%;
  max-height: 30%;
  margin: auto;
  object-fit: contain;
}

.index-container {
  width: 55%; /* Set the width of the container */
  margin: 0 auto; /* Center the container */
  display: flex; /* Enable Flexbox */
  justify-content: space-between; /* Space images evenly */
  align-items: center; /* Align images vertically if needed */
}

.image-left,
.image-right {
  max-width: 100%; /* Optional: Prevent images from exceeding their containers */
  height: auto; /* Maintain aspect ratio */
}

/* Base styles for the nav element */
nav {
  background-color: rgba(233, 233, 233, 0.9);
  padding: 20px 20px;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: space-around;
  align-items: center;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: #212020;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

/* Hover styles for nav element */
nav ul li a:hover {
  color: #61972a;
}

/* Styles for Zenith logo bar element */
.zenith-bar { 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background-color: #000000;
  color: white;
  padding: 10px; /* Increased padding */
  height: auto; /* Allows for flexibility if needed */
}

.zenith-bar-img {
  height: 150px; /* Increased height */
  width: auto; /* Maintains aspect ratio */
}

/* Styles for top bar element */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background-color: #61972a;
  color: white;
  padding: 20px;
}

.top-bar-img {
  height: 100px;
  width: auto;
}

/* Custom hyperlink stylings*/
.top-link {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.top-link:hover {
  color: #000000;
}

/* Custom hyperlink stylings*/
a.custom-link {
  text-decoration: none;
  color: #61972a;
  transition: color 0.3s ease-in-out;
}

a.custom-link:hover {
  color: #86e12c;
}

/* Base styles for the p element */
p {
  font-size: 18px;
  margin: 20px;
  color: #555;
}

.special {
  color: #ed018d;
}

.special2 {
  color: #61972a;
}

/* Base styles for the unordered list */
ul {
  width: 50%;
  margin: 0 auto;
  padding: 0 15px;
}

/* Base styles for two column layout */
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.left-column,
.right-column {
  width: 48%; /* Adjust as needed to control column width */
  padding: 20px;
  box-sizing: border-box;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  p {
    font-size: 17px;
    margin: 20px;
    color: #555;
  }
}

/* Base styles for the footer element */
footer {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 20px;
  display: block;
}

/* Base styles for the email form */
.email-form {
  max-width: 600px; /* Larger form for bigger screens */
  margin: 0 auto; 
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  border-radius: 10px;
}

/* Label styles */
.email-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 16px;
}

/* Input, textarea, and button styles */
.email-form input,
.email-form textarea,
.email-form button {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px; /* Default font size for larger screens */
}

/* Responsive styles for smaller screens */
@media (max-width: 1000px) {
  .email-form {
    max-width: 100%; /* Form takes up full width */
    margin: 0 10px;
  }

  .email-form input,
  .email-form textarea {
    font-size: 25px; /* Increased font size for smaller screens */
  }
}


.email-form button {
  background-color: #61972a;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-form button:hover {
  background-color: #86e12c;
}

.error {
  color: red;
  font-size: 0.9em;
}

@media (min-width: 1000px) {
  .container img {
    max-width: 20%;
  }

/* Limiting .container styles to specific sections where the class is applied */
.container {
  margin: 20px auto;
  max-width: 65%;
}
}

/* Slideshow */
.slideshow-container {
  position: relative;
  max-width: 50%;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  border-radius: 8px;
}

.fade {
  animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

@media (min-width: 1000px) {
  .slideshow-container {
    margin: 20px auto;
    max-width: 65%;
  }

}