/* your_project/static/webapp/CSS/style.css */
body{
    background-color: rgb(255, 255, 255);
    margin-top: 60px;
    animation-name: example;
    animation-duration: 4s;
     
}
@keyframes example {
  from {background-color: #ffffff;}
  to {background-color: rgb(238, 217, 217);}
}

.background-link {
    display: block;
    width: 100vw; /* Full viewport width */
    /*height: 100vh; /* Full viewport height */
    background-image: url('../webapp\images\image3.jpg'); /* Adjust the path based on your project's structure */
    background-size: cover; /* Ensures the image covers the entire viewport */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    position: relative; /* Ensures the div covers the full viewport */
    border: 5px solid gray;
    /*border-radius: 20px; */
    /*padding: 10px 20px;  */
}   

@media(min-width: 768px) {
    .news-input {
        width: 75%;        
    }
    /* Adjust the width of the input field within the input group */
    .news-input .form-control {
        min-width: 200px; /* Set a minimum width for the input field */
        flex: 1 1 auto; /* Allow the input field to grow */
    }

    .news-input button {
        flex: 0 0 auto; /* Prevent the button from growing */
    }

    .expanded-image {
        width: 100%; /* Make sure the image still takes up the full width on larger screens */
        max-width: 100%; /* Remove the max-width restriction on larger screens */
        margin-bottom: 20px;
    }

}

.content {
    margin-top: 20px;
}

.form-container form {
    display: flex;
    flex-direction: column;
}

.form-container {
    max-width: 600px; /* Adjust the max-width as needed */
    margin: 80px auto 40px; /* Adjust margin-top to the height of your navbar */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container h1 {
    text-align: center;
}

.form-container form label {
    margin-bottom: 10px;
}

.form-container form button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.form-container form input,
.form-container form textarea {
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-container button:hover {
    background-color: #0056b3;
}

.footer {
    background-color: #325f32;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Center the text of the welcome title */
.welcome-title, .our-promise, .blog-title{
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    color: green;
}

.welcome-section {
    text-align: center;
    margin-bottom: 30px;
}


/* Style the welcome message */
.welcome-message, .promised-message, .blog-message{
    color: navy; /* Change color to navy */
    font-family: Arial, sans-serif; /* Change font family */
    font-size: 1.2em; /* Change font size */
    text-align: center; /* Center the text */
    justify-content: space-between !important;
   /* margin: 5px; /* Add margin around the paragraph */

}

.content-section2a{
    border: 5px solid coral;
    border-radius: 20px;
    background-color: white;
    margin-bottom: 20px;
    padding: 10px 20px; 
    margin-top: 20px;
    font-weight: bold;
    
}

.content-section1a h1 {
    font-size: 2em;
    font-weight: bold;
    }

.mission-statement {
    font-size: 1.5em; /* Adjust the size to match <h1> */
    font-weight: bold;
    text-align: center; /* Center the text */
    margin: 20px 0; /* Add some margin for spacing */
    color: #333; /* Adjust the color if needed */
    }    
    

.content-section2a h2 {
    font-size: 1.8em;
    font-weight: bold;
}

/* Social media icons */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon {
    margin: 0 10px;
    font-size: 24px;
    color: white; /* Icon color */
}

.social-icon:hover {
    color: green; /* Change color on hover */
}

/* Custom class to expand Explore-Section image */
.expanded-image {
    width: 100%; /* Ensure it doesn't exceed the column width */
   /* height: auto; /* Maintain aspect ratio */
   /* max-width: 500px
    /* transform: scale(1.1); /* Scale the image by 10% */
}

.horizontal-line {
    height: 1px;
    background: blue;
    margin: 20px 0; /* Adjust the margin as needed */
}