/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Afacad Flux', sans-serif;
    height: 100%;
    scroll-behavior: smooth;
    background-color: white;
    color: black;
}

/* Navbar styles */
nav {
    font-family: 'MyCustomFont', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #004d00;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

nav a{
    align-content: center;
    justify-content: center;
    vertical-align: center;
}

.logo {
    color: #004d00;
    font-size: 28px;
    font-weight: bold;
}

.shopping-bag {
    background: white;
    color: #004d00;
    padding: 1px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #004d00;
    height: 35px;
    width: 35px;
}

/* Scrolled styles */
.scrolled nav ul li a, .scrolled .logo {
    color: white !important;
}

.scrolled .shopping-bag {
    background: #004d00;
    color: white;
    border-color: white;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    text-align: center;
    color: white;
    height: 90vh;
    background: url('https://media.giphy.com/media/xUA7biAmbpRS5yeajK/giphy.gif?cid=ecf05e47xiizvect9ukx41pcx8bsnv36oitdjuz3kv7qvgql&ep=v1_gifs_search&rid=giphy.gif&ct=g') no-repeat center center/cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 77, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'MyCustomFont', cursive;
}

.hero-content button {
    background-color: #7db16d;
    border: none;
    padding: 15px 30px;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content button:hover {
    background-color: #445f3e;
}

/* Sections */
section {
    padding: 50px;
    text-align: center;
}

.section-info {
    background-color: #f4f4f4;
}

.section-info h2 {
    margin-bottom: 20px;
    color: #004d00;
    font-family: 'MyCustomFont', cursive;
}

.section-info p {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.address-section {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Align content to the center */
    background-color: #7db16d;
    padding: 50px 10%;
}

.address-section h2 {
    margin-bottom: 20px;
    color: #004d00;
    font-family: 'MyCustomFont', cursive;
}

.address-section-left {
    width: 50%;
    text-align: left;
}

.address-section-left p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

.address-section-left button {
    background-color: #004d00;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.form-container {
    width: 100%; /* Ensure the form takes the full width */
    margin-top: 20px; /* Add space between the heading and form */
    display: flex;
    justify-content: center; /* Center form items */
}

.address-form {
    display: flex;
    gap: 10px; /* Add spacing between input and button */
}

.address-form input {
    padding: 10px;
    width: 300px; /* Set input width */
}

.address-form button {
    padding: 10px 20px;
    background-color: #004d00; /* Keep the same button color */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.address-form button:hover {
    background-color: darkgreen; /* Hover effect */
}

#plant-address1{
    text-align: left;
}

/* Container for the section */
.address-section-1 {
    display: flex; /* Flexbox layout */
    justify-content: space-between; /* Space between text and slideshow */
    align-items: flex-start; /* Align items at the top */
    margin: 20px;
    gap: 20px; /* Space between text and slideshow */
}

/* Left-side text */
/* Add this to your existing CSS file */

/* Add Flexbox layout to the section containing text and slideshow */
.address-section-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Ensure the left section takes 50% of the width */
.address-section-left-1 {
    flex: 1;
}

/* Optional styling for the text */
.address-section-left-1 h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.address-section-left-1 p {
    font-size: 16px;
    line-height: 1.5;
}

.address-section{
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Align content to the center */
    background-color: #7db16d;
    padding: 50px 10%;
}

.address-section h2 {
    margin-bottom: 20px;
    color: #004d00;
    font-family: 'MyCustomFont', cursive;
}

.address-section-left {
    width: 50%;
    text-align: left;
}

.address-section-left p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

.address-section-left button {
    background-color: #004d00;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.form-container {
    width: 100%; /* Ensure the form takes the full width */
    margin-top: 20px; /* Add space between the heading and form */
    display: flex;
    justify-content: center; /* Center form items */
}

.address-form-1 {
    display: flex;
    gap: 10px; /* Add spacing between input and button */
}

.address-form-1 input {
    padding: 10px;
    width: 300px; /* Set input width */
}

.address-form-1 button {
    padding: 10px 20px;
    background-color: #004d00; /* Keep the same button color */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.address-form-1 button:hover {
    background-color: darkgreen; /* Hover effect */
}

.address-form {
    text-align: center;
}

.address-form input[type="text"] {
    padding: 10px;
    width: 80%;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.address-form button {
    background-color: #004d00;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background-color: #004d00;
    color: white;
    margin-top: 20px;
    margin-bottom: 0px;
}

/* Overall Progress Wrapper */
#overall-progress-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100px; /* Adjust height as needed */
    margin: 20px 0; /* Space above and below */
}

/* Overall Progress Container */
#overall-progress-container {
    text-align: center;
    background-color: #7db16d; /* Light background for contrast */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Space inside the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    width: 1000px;
    margin-bottom: 30px;
}

/* Progress Bar Styles */
#overall-progress-bar {
    width: 100%; /* Full width */
    height: 20px; /* Height of the progress bar */
    border-radius: 10px; /* Rounded corners */
    margin: 10px 0; /* Space above and below the bar */
}

/* Progress Bar Color */
#overall-progress-bar::-webkit-progress-bar {
    background-color: #e0e0e0; /* Light gray for the empty part */
    border-radius: 10px; /* Rounded corners */
}

#overall-progress-bar::-webkit-progress-value {
    background-color: #004d00; /* Dark green for the filled part */
    border-radius: 10px; /* Rounded corners */
}

/* Progress Text Styles */
#overall-progress-text {
    font-size: 16px; /* Font size for progress text */
    color: #004d00; /* Dark green color */
    font-weight: bold; /* Bold text */
}

#progress-text{
    justify-content: center;
    align-content: center;
    font-family: 'MyCustomFont', cursive;
    padding-left: 35%;
    color: #004d00;
    padding-bottom: 15px;
    padding-top: 15px;
}

.button-link {
    color: white; /* Make the text white */
    text-decoration: none; /* Remove the underline */
}

button {
    background-color: #4CAF50; /* Example button background color */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button a {
    color: inherit; /* Inherit the color from the button */
    font-size: 16px; /* Adjust the text size */
    font-family: 'Afacad Flux';
}

button:hover {
    background-color: #45a049; /* Optional: change button color on hover */
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #dddddd;
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Main content styles */
.about-us-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    margin: 50px auto;
    max-width: 1200px;
}

.about-us-column {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.about-us-column img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #004d00; /* Dark green border */
}

.about-us-column h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #004d00; /* Dark green */
    font-family: 'MyCustomFont', cursive; /* Applying Londrina Sketch to headers */
}

.about-us-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column;
        align-items: center;
    }
    .about-us-column {
        margin-bottom: 30px;
    }
}

.social-links li {
    list-style: none;
    display: inline-block;

}
.social-links li a {
    height: 50px;
    width: 50px;
    display: block;
    float: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: relative;
}
.social-links li a ion-icon {
    position: absolute;
    font-size: 26px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}
.social-links li a:hover {
    color: #111;
    transition: all 0.3s;
}

@font-face {
    font-family: 'MyCustomFont';
    src: url('../fonts/ChicagoMakers-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Flexbox layout for the section to align text and slideshow side by side */
.address-section-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

/* Style for the left section containing the text */
.address-section-left-1 {
    flex: 1;
}

/* Style for the slideshow container */
.slideshow {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%; /* To prevent overflow */
    position: relative;
}

/* Style for the images */
.slideshow img {
    max-width: 50%;
    height: auto;
    position: absolute;
    transition: opacity 0.5s ease;
}

/* Active slide styling */
.active-slide {
    opacity: 1;
    z-index: 2;
}

/* Inactive slide styling */
.inactive-slide {
    opacity: 0;
    z-index: 1;
}

