@charset "UTF-8";

/* CSS Document Author: Edith Harvey
Purpose: Style Sheet forKen's Country Kitchen North 2022 Redesign */

body {
    background-color: #000000; /* Black */
    color: rgba(246, 246, 4, 0.735); /* yellowish */
    font-family: "Comic Sans MS", "Century Gothic", Arial, sans-serif;
}

/* REMOVED Grid Layout Code For Now */

h1, h2, h3, h4 {
    text-align: center;
}

table {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 1px 5px 10px 5px; /* top 1px, right 5px, bottom 10px, left 5px */
    border-spacing: 0 15px; /* puts a 15px space after each row in the table */
}
tr {
    padding: 0px 0px 10px 0px; /* 0 for top, right and left, 10px for bottom */
}
td {
    vertical-align: top;
}

/* Table Variation Classes */
.excerptmenu {
    border: double 5px;
    padding: 2px;
}
.indexbottom {
    border: solid 2px;
    padding: 2px;
}

/* Variation Classes for Table Cells */
.tdtop {
    vertical-align: top;
}
.tdsubheaders {
    font-weight: bold;
    text-align: center;
    font-size: 1em;
}
.tdborders {
    border: dashed 2px;
    padding: 10px;
}
.tdcenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.td25percent {
    width: 25%;
    vertical-align: top;
    padding: 8px;
}

.td33percent {
    width: 33%;
    vertical-align: top;
}
.td33percent2 {
    width: 30%;
    vertical-align: top;
    padding: 10px;
}
.td50percent {
    width: 50%;
    vertical-align: top;
    padding: 10px;
}
.td75percent {
    width: 75%;
    vertical-align: top;
    padding: 10px;
}
/* END Variation classes for table cells */

img {
    border: 0;
}

/* Classes For Image Center and Text Centering */
.imgcenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.textcenter {
    text-align: center;
}
/* End Classes for Image and Text Centering */

/* TEXT Call to Action (CTA) BUTTON classes */
.btncta {
    border:none;
    background-color: #ffffff;
    color: #000000;
    border-radius: 5px;
    font-size: 110%;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
}
/* On mouse-over */
.btncta:hover {
    background: rgba(246, 246, 4, 0.735); /* Yellowish same as page text */
}
/* END CTA BUTTON classes */

/* Link ANCHOR TAG Styles */
/* all links before clicked */
a:link {
    text-decoration: none;
    color: rgba(246, 246, 4, 0.735); /* yellowish */
}
/* visited link style */
a:visited {
    color: #ffffff; /* white */
}
/* hovering over link style */
a:hover {
    color: #ff0000; /* red */
}
a:active {
    text-decoration: none;
    color: #009900; /* dark green */
}
/* END all CSS for anchor tag styles */

footer {
    font-size: .75em;
    text-align: center;
}

/* CSS needed for social media share icons from AddThis */
.addthis_inline_share_toolbox {
    margin-left: auto;
    margin-right: auto;
}

/* Class for the input area on the contact form */
.textinput {
    width: 100%;
    height: 100px;
}

/* BEGIN all CSS Code needed for the Search Bar */ 
#form {
    background-color: #ff0000; /* red */
    width: 300px;
    height: 44px;
    border-radius: 5px;
    display:flex;
    flex-direction:row;
    align-items:center;
}
#query {
    all: unset;
    font: 16px system-ui;
    color: #fff;
    height: 100%;
    width: 100%;
    padding: 6px 10px;
}
::placeholder {
    color: #fff;
    opacity: 0.7; 
}
/* CODE Courtesy of https://pagedart.com/blog/how-to-add-a-search-bar-in-html/ */ 
svg {
    color: #fff;
    fill: currentColor;
    width: 24px;
    height: 24px;
    padding: 10px;
}
.searchbutton {
    all: unset;
    cursor: pointer;
    width: 44px;
    height: 44px;
}
/* END Search Bar CSS */