/* campaign style */
body, h1, h2, p, ul, table {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Garbata', sans-serif;
}

/* Header */
#header {
    background-color: #ffcc00;
    position: relative;
}

#header img {
    width: 100%;
    height: 300px;
}

/* Navigation */
nav {
    background-color: white;
    text-align: center;
    font-family: 'Trebuchet MS',sans-serif;
    font-size: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
    padding: 10px; /* Add padding for better spacing */
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover,
nav a:active {
    color: #ffcc00;
}

nav a[href="campaign.html"] {
    color: #ffcc00;
}

/* Dropdown Menu */
.has-children {
    position: relative;
}

.has-children .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    text-align: left;
}

.has-children:hover .dropdown {
    display: block;
}

.dropdown li {
    display: block;
}

.dropdown a {
    color: black;
    padding: 10px;
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background-color: #ffcc00;
}

.marquee-text {
    display: inline-block;
    animation: marquee-animation 20s linear infinite;
    color: black;
    font-family: 'Trebuchet MS',sans-serif;
    font-size: 20px;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Intro Section */
#introduction {
    background-color: white;
    margin: 0;
}

#introduction table{
    border-collapse: collapse;
    width: 100%;
    margin: 0;
}

#introduction td{
    padding-top: 10px;
}

#introduction p{
    text-align: center;
    font-family: Garbata;
    font-size: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 20px;
}

#introduction #introtitle{
  text-align: center;
  font-weight: bold;
  font-family: 'Trebuchet MS',sans-serif;
  font-size: 30px;
}

/* image1*/
#image1{
    padding-top: 30px;
}
#image1 table{
    border-collapse: collapse;
    width: 100%;
    margin: 0;
    text-align: right;
}

#image1 td{
    text-align: right;
}

#image1 #image1more{
    text-align: left;
}

#image1 img{
    border: 3px solid black;
    width: 500px; 
    height: auto;
    margin: 10px;
    display: inline-block;
}


/* images2 */
#image2 {
    text-align: center;
    background-color: white;
    padding: 30px;
}
 #image2 img{
    border: 3px solid black;
    width: 500px; 
    height: auto;
    margin: 10px;
    display: inline-block;
}

/* who invovled */
#Whoinvolved {
  background-color: #ffcc00;
}

#Whoinvolved table{
  border-collapse: collapse;
  width: 70%;
  margin: 0 auto;
}

#Whoinvolved p{
    text-align: justify;
    font-family: Garbata;
    font-size: 20px;
    padding-bottom: 10px;
    padding-left: 10px;
}

#Whoinvolved img {
    width: 450px;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

#Whoinvolved #Whoinvolved-title{
  text-align: center;
  font-weight: bold;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 30px;
  padding-bottom: 30px;
}

/* images3 */
#image3 {
    text-align: center;
    background-color: white;
    padding: 30px;
}
 #image3 img{
    border: 3px solid black;
    width: 500px; 
    height: 700px;
    margin: 10px;
    display: inline-block;
}


/* Top button*/
#buttontop table{
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
    background-color: white;
}
#buttontop a{
    text-decoration: none;
    color: black;
    margin: 20px;
    font-size: 25px;
    font-family: 'Trebuchet MS',sans-serif;
    font-weight: bold;
    transition: color 0.3s;
}

#buttontop a:hover,
#buttontop a:active{
    color: #ffcc00;
}

#buttontop td {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Marquee */
.marquee-container1 {
    border: 2px solid black;
    overflow: hidden;
    white-space: nowrap;
    background-color: white;
}

.marquee-text1 {
    display: inline-block;
    animation: marquee-animation 20s linear infinite;
    color: black;
    font-family: 'Trebuchet MS',sans-serif;
    font-size: 20px;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}



/* Footer */
footer {
    background-color: white;
    padding: 0px;
}

footer table {
    width: 100%;
    margin: 0 auto;
}

footer td {
    width: 100px;
}

footer #farmfresh {
    margin-left: 10px;
    margin-top: 4px;
    float: left;
    border: 1px solid #ddd; /* Add a border to the farmfresh image */
    width: 100px;
}

footer #facebook {
    margin-right: 10px;
    margin-top: 2px;
    float: right;
}

footer #instagram {
    margin-right: 10px;
    float: right;
}

footer #youtube {
    margin-right: 10px;
    margin-top: 9px;
    float: right;
}

footer p {
    text-align: center;
    font-family: timesnewroman;
    font-size: 20px;
}
