/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #04AA6D; /* Green color for the active tab */
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

/* Style the header image */
.hero-image {
  background-image: url('assets/IMG_4946.jpg'); /* Add your image link here */
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 75vh; /* Adjust the height as you like */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Style the header text */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text h1 {
  font-size: 50px; /* Adjust the size as needed */
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 30px; /* Smaller font size on smaller screens */
    }
}

/* Green color theme */
body {
    background-color: #e8f5e9; /* Light green background */
    color: #333;
    font-family: Arial, sans-serif;
}

h3 {
    color: #2e7d32; /* Darker green for headings */
}
