

/* Reset & General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}



html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding-top: 30px; /* Adjust for sticky header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
}

button, .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}





/* Sticky Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #406b8d;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    gap: 10px;
    z-index: 1000;
}

.menu-logo {
    height: 20px;
    width: auto;
}

.menu {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: auto; /* Push menu to the right */
    transition: padding-right 0.3s ease-in-out;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Search Bar */
.search-bar {
    display: flex;
}

.search-bar input {
    padding: 5px;
    border: none;
    border-radius: 4px;
    width: 320px; 
    max-width: 100%;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #222;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transition: 0.3s;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 15px;
    font-size: 18px;
}

.mobile-menu a:hover {
    background: #444;
}

/* Search Bar in Mobile Menu */
.mobile-menu .search-bar {
    padding: 10px;
    margin: 10px;
    background: #333;
    border-radius: 5px;
}

.mobile-menu input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px;
}

/* Show Slide-Out Menu */
.mobile-menu.show {
    left: 0;
}


/* Shrink spacing as viewport gets smaller */
@media (max-width: 1000px) {
    .menu {
        gap: 10px; 
        padding-right: 10px;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    
    .menu-logo {
        height: 20px;
        width: auto;
    }
}









.main-content {
    flex: 1;
}



.title {
    text-align: center;
    text-decoration: none;
    color: #000;


}
.title a {
    text-decoration: none;
     color: #000;
}
.title a:hover {
    text-decoration: none;
     color: #000;
}

.title a:visited {
    text-decoration: none;
     color: #000;
}

.intro-blurb {

    font-weight: 500;
    width: 50%;
    margin: 20px auto;

}

.tagline {

font-size: 1.2rem; 

}






.blurb {
    background-color: #eee;
    justify-content: center;
    font-size: 1.1rem; 
    font-weight: 500;
    width: 92%;
    border-radius: 12px;
    padding: 12px;
    margin: 16px auto; 
}

.sources {
    justify-content: center;
    font-size: 0.9rem; 
    width: 92%;
    margin: 16px auto; 
}





.btntxt {
    font-size: 0.9rem; 
	color: #222;
    font-weight: bold;

}

.sub_company {
    font-size: 1.3rem; 
}



.status-yes {
    color: green;
    font-weight: bold;
}

.status-no {
    color: red;
    font-weight: bold;
}

.status-unknown {
    color: #222;
    font-weight: bold;
}


/* Banner container */
.banner {
    display: flex; /* Use flexbox to align images horizontally */
    justify-content: center; /* Center images horizontally */
    width: 100%;
    height: 300px; /* Adjust height as needed */
    overflow: hidden;
}

/* Style each image */
.fade-image {
    width: 33.33%; /* Ensure the images are side by side */
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Start with the images hidden */
    animation: fadeIn 1s ease-in-out forwards; /* Change animation duration to 0.33s */
}

/* Animation keyframes for fading images */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1; /* End with the image fully visible */
    }
}

/* Add delay to each image to stagger their appearance */
.fade-image:nth-child(1) {
    animation-delay: 0s; /* First image shows immediately */
}

.fade-image:nth-child(2) {
    animation-delay: 0.50s; /* Second image fades in after 0.33s */
}

.fade-image:nth-child(3) {
    animation-delay: 1s; /* Third image fades in after 0.66s */
}

/* Center the search container */
.search-container {
    background: #f2f3f5;
    border: 1px;
    border-style: solid;
  border-color: #406b8d;
    border-radius: 50px;
    padding: 5px 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Twice as long */
    width: 100%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    position: relative; /* Needed for absolute positioning of suggestions */
}

/* Makes input take up most of the space */
.search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
  font-weight: bold;
      font-size: 1rem;
    color: #3366cc;
    box-shadow: none;
}

.btn-mag {
    background-color: transparent !important;
    border: none !important;
}


.donation-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.donation-option {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none; 
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    background: #ddd;
    text-align: center;
    min-width: 80px;
    user-select: none; 
}

.donation-option input {
    display: none;
}

.donation-option.selected {
    background-color: #0A3871; /* Dark blue */
    border: none;
    color: white;
}



.custom-amount {
    display: inline-block;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
    width: 120px;
    text-align: center;
    font-size: 16px;
}

.donation-button {
    display: block;
    margin: 20px auto;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background-color: #0A3871;
    color: white;
    cursor: pointer;
    text-align: center;
}
      

/* Suggestions box */
.suggestions-box {
    position: absolute;
	z-index: 1000;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;

}

/* Each suggestion */
.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.suggestion-item:hover {
    background: #f0f0f0;
}



/* Match the search form style */
.suggestion-container {
    background: #f2f3f5;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Style form elements */
.suggestion-container input,
.suggestion-container textarea {
    width: 100%;
    border: none;
    background: #fff;
    outline: none;
    font-size: 1rem;
    color: #3366cc;
    padding: 8px;
    box-shadow: none;
    border-bottom: 2px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease-in-out;
}

/* Focus effect */
.suggestion-container input:focus,
.suggestion-container textarea:focus {
    border-color: #3366cc;
}

/* Button styling */
.suggestion-container button {
    background: #3366cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-top: 10px;
}

.suggestion-container button:hover {
    background: #27408b;
}

/* hCaptcha styling */
.suggestion-container .h-captcha {
    margin-top: 10px;
}

.warning {
  background: #ffe6ff;
  padding: 20px;
    border: none;
    border-radius: 20px;
}

.footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    font-size: 0.7rem;
    text-align: center;
    width: 100%;
}
.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
.footer a:hover {
    text-decoration: underline;
}
