/* contact 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="contact.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%);
    }
}


/* Body Section */

#image-table-container{
    padding-top: 50px;
    padding-bottom: 50px;
}

.image-table {
  width: 400px;
  margin: 0 auto;
}

.table-header {
  text-align: center;
}

.image-table img {
  width: 250px;
  height: auto;
}

.image-table-container .right{
    text-align: right;
    padding: 10px;
}

.image-table-container .left{
    text-align: left;
    padding: 10px;
}

.image-table-container .name{
    text-align: center;
}

#image-table-container #title{
    font-family: 'Trebuchet MS',sans-serif;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

/* Body Section2 */

.contact-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #333;
}

form {
  display: grid;
  grid-gap: 15px;
}

label {
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  resize: vertical;
}

input[type="submit"] {
  background-color: #ffcc00;
  color: black;
  font-family: 'Trebuchet MS',sans-serif;;
  cursor: pointer;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
}

input[type="submit"]:hover {
  background-color: yellow;
}

/* 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;
}
