@charset "utf-8";
/* CSS Document for the Farmers Market mockup webpage */

/* Colors:
White: #f9f9f9;
Black: #222222;
Teal: #83c7b8;
Teal Hover Value: rgba(131, 199, 184, 0.7);
*/

/* NOTE TO SELF: Go in and figure out official color for the links and then set it on all of them. */

/* Basic Page Styling*/
body, html {
	height: 100%;
	margin: 0;
	background-color: #f9f9f9;
    color: #222222;
	scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "shadows-into-light", sans-serif;
}

p {
	font-family: "source-sans-pro", sans-serif;
	font-size: 20px;
}

/* Basic Styling */
a.btn {
	border: none;
	color: #222222;
	background-color: #83c7b8;
	padding: 14px 16px;
	font-size: 18px;
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	font-family: "source-sans-pro", sans-serif;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

a.btn:hover {
	background-color: rgba(131, 199, 184, 0.7);
}

.center-paragraph {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
	display: block;
	text-align: center;
}

.center {
	text-align: center;
}

.basic-link {
	color: #555555;
	font-family: "source-sans-pro", sans-serif;
	text-decoration: none;
	
}

.basic-link:hover {
	color: #83c7b8;
}

.center-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.broken-link {
	color: #555555 !important;
	background-color: rgba(131, 199, 184, 0.4) !important;
}

.header {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
	display: block;
	text-align: center;
}

.main {
	padding-top: 30px;
/*	margin-top: 50px;*/
}

.main-section {
	padding: 20px;
}

.mission-section {
	padding: 0px 25px;
}

/* repeating parallax sections */
.parallax {
	height: 50vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

#section1 {
	background-image: url('../images/market_lane.JPG');
}

#section2 {
	background-image: url('../images/flower_angela_cockrell.jpg');
}

#section3 {
	background-image: url('../images/macaroons.jpg');
}

#section4 {
	background-image: url('../images/garlic_beets_cucumbers.JPG');
}

#section5 {
	background-image: url('../images/bread_box_jam.JPG');
}

#section6 {
	background-image: url('../images/love_and_thyme.jpg');
}

#section7 {
	background-image: url('../images/berries.JPG');
}

#section8 {
	background-image: url('../images/market_lane2.JPG');
}

#section9 {
	background-image: url('../images/earrings.JPG');
}

.parallax-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.parallax-content {
	background-color: #f9f9f9;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.parallax-content { 
	font-size: 20px;
}

/* Navigation */
.navbar {
	overflow: hidden;
	background-color: #555555;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}
	
.navbar a {
	float: left;
	display: block;
	color:  #f9f9f9;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 18px;
	font-family: "source-sans-pro", sans-serif;
}

.navbar a:hover  {
	background-color: rgba(131, 199, 184, 0.7);
	color: #f9f9f9;
}

.highlight-link {
/*	float: right;*/
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	color:  #83c7b8;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 18px;
	font-family: "source-sans-pro", sans-serif;
	background-color: #83c7b8;
}

.highlight-link:hover {
	background-color: rgba(131, 199, 184, 0.7);
}

/* Side Nav - initially hidden, styled for smaller screens */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #555555;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
	z-index: 3;
}

.sidenav a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: #f9f9f9;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    background-color: rgba(131, 199, 184, 0.7);
	color: #f9f9f9;
}

.closebtn {
	position: absolute;
	top: 5px;
	left: 5px;
	color: #f9f9f9;
	cursor: pointer;
	font-size: 30px;
	background: none;
	border: none;
	text-decoration: none;
	padding: 0 0 15px 0;
	margin: 0;
	transform: scale(1.5);
}

.closebtn:hover {
	background-color: #555555;
}

.hamburger-menu {
    font-size: 30px;
    cursor: pointer;
	color: #f9f9f9;
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 4;
	display: none;
}


/* Logo */
.center-image {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 25%;
}

/* Dates Section */
.dates-section {
	display: flex;
	padding: 15px;
	margin: 0 auto;
	width: 75%;
	align-items: center;
}

.dates-table {
	border-collapse: collapse;
	margin: 0 auto;
	width: 75%;
}

.titles {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
	display: block;
	text-align: center;
}

.dates-table tr {
	border: none;
	font-family: "source-sans-pro", sans-serif;
	font-size: 18px;
	display: flex;
	flex-wrap: wrap;
}

.dates-table td {
	border: none;
	padding: 20px;
	text-align: center;
	text-decoration: underline #83c7b8 3px;
	text-underline-offset: 5px;
	flex: 1 0 25%;
	box-sizing: border-box;
}

.time-list {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	diaply: flex;
	flex-direction: column;
	align-items: center;
}

.time-list li {
	width: 100%;
	margin: 10px 0;
	text-align: center;
	font-family: "source-sans-pro", sans-serif;
	font-size: 20px;
}

.aside {
	font-size: 16px;
}

/* Sponsor Section 2 Rows*/
.sponsor-section {
	padding: 20px;
	text-align: center;
	display: flex;
	justify-content: center;
	width: 100%;
}

.sponsor-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.sponsor-grid img {
	width: 100%;
	height: auto;
	max-height: 120px;
	object-fit: contain;
	padding: 0px;
}

/* Sponsor Section 3 Rows */
.sponsor-section2 {
	padding: 20px;
	text-align: center;
	display: flex;
	justify-content: center;
	width: 100%;
}

.sponsor-grid2 {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.sponsor-grid2 img {
	width: 100%;
	height: auto;
	max-height: 120px;
	object-fit: contain;
	padding: 0px;
}

/* Vendor Section */
.vendor-section {
	display: flex;
	padding: 15px;
	margin: 0 auto;
	width: 75%;
	align-items: center;
}

.vendor-section a {
	flex: 1;
	text-align: center;
	text-decoration: none;
	border: none;
	color: #222222;
	background-color: #83c7b8;
	padding: 14px 16px;
	margin: 15px;
	font-size: 18px;
	cursor: pointer;
	font-family: "source-sans-pro", sans-serif;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.vendor-section a:hover {
	background-color: rgba(131, 199, 184, 0.7);
}

/* Social Media Cards Styling */
.socials {
/*
	padding: 15px;
	margin: 0 auto;
	width: 75%;
*/
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.qr-card {
	background-color: #f9f9f9;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	overflow: hidden;
	text-align: center;
	max-width: 35%;
	margin: 20px 50px;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

.socials a {
	text-decoration: none;
	border: none;
	display: inline-block;
	padding: 8px;
	color: #222222;
	background-color: #83c7b8;
	text-align: center;
	cursor: pointer;
	font-size: 18px;
	max-width: 300px;
	width: 100%;
	font-family: "source-sans-pro", sans-serif;
}

.socials a:hover {
	background-color: rgba(131, 199, 184, 0.7);
}


/* IFMA & Idaho Preferred */
.linked-images {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin: 0 auto;
	text-align: center;
}

.image-link {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.image-link img {
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	max-width: 50%;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* Meet the Board Section  */
.board-section3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 0;
}

.vertical-card {
	display: flex;
	padding: 20px;
	width: 30%;
	align-items: center;
	margin: 10px;
	box-sizing: border-box;
}

.card-img {
	width: 50%;
	height: auto;
	object-fit: cover;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	margin: 15px;
	border-radius: 5px;
}

.card-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 20px;
}

.subtle-text {
	font-size: 18px;
	color: #666666;
	font-style: italic;
}

/* Accordion Section */
.accordion-section {
	display: flex;
	align-content: center;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding: 20px;
}

.accordion {
	background-color: #eee;
	color: #222222;
	cursor: pointer;
	padding: 18px;
	padding-left: 20px;
	width: 85%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 20px;
	transition: 0.4s;
	border-bottom: 2px solid #83c7b8;
	display: flex;
}
	
.active, .accordion:hover {
	background-color: #D5D5D5;
}
	
.panel {
	padding: 0 20px;
	background-color: #f9f9f9;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	width: calc(85% - 25px);
	margin-left: 25px;
	box-sizing: border-box;
	word-wrap: normal;
	overflow-wrap: break-word;
}

/* Image Section - Displays 4 images */
.image-section {
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-section img {
	width: 20%;
	padding: 20px;
}

/* Table Section */
.table-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 15px;
}

.vendor-table {
	border-collapse: collapse;
	width: 90%;
	margin: 20px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	font-family: "source-sans-pro", sans-serif;
}

th, td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: center;
	min-width: 150px;
	word-wrap: break-word;
}

th {
	font-weight: bold;
}

.special-table {
	width: 40%;
}

.special-heading {
	font-family: "shadows-into-light", sans-serif;
	font-size: 30px;
}

.phone-display {
	display: none;
}

/* QR Code Card */

.qr-code {
	text-align: center;
	display: block;
	margin: 0 auto;
	width: 25%;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.qr-code img {
	display: block;
	max-width: 100%;
	height: auto;
}

.qr-code a {
	display: block;
	text-align: center;
	border: none;
	color: #222222;
	background-color: #83c7b8;
	padding: 14px 16px;
	font-size: 18px;
	text-decoration: none;
	cursor: pointer;
 	font-family: "source-sans-pro", sans-serif;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.qr-code a:hover {
	background-color: rgba(131, 199, 184, 0.7);
}

/* Special Unordered List */
.list-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.equip-list {
	font-family: "source-sans-pro", sans-serif;
	font-size: 20px;
	list-style-type: circle;
	padding-left: 40px;
	text-align: left;
}


/* Footer section */
.footer {
	text-align: center;
	background-color: #f9f9f9;
	color: #222222;
	padding: 25px;
	font-size: 16px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px;
	align-content: center;
}

.footer-logo img {
	max-width: 200px;
	height: auto;
	padding: 0px 40px;
}

.footer-text {
	text-align: center;
	min-width: 200px;
	flex: 1;
	font-size: 16px;
}

.footer-map iframe {
	width: 300px;
	height: 200px;
	border: 0;
	max-width: 100%;
	display: block;
	padding: 0px 40px;
}

.social-media-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.social-media-link {
	color: #555555;
	font-size: 20px;
	transition: transform 0.3s ease, color 0.3 ease;
}

.social-media-link:hover {
	transform: scale(1.1);
	color: #83c7b8;
}


#backToTop {
	text-align: center;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	font-size: 16px;
	color: #222222;
	background-color: #83c7b8;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
	max-width: 200px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#backToTop:hover {
	background-color: rgba(131, 199, 184, 0.7);
}


/* Media Queries - Responsivess */
/* Tablet */
@media screen and (max-width: 1024px) and (min-width: 768px) {
	.footer-map {
		display: none;
	}
	
	.accordion p {
		width: 80%;
	}
	
	.sponsor-grid2 {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.sponsor-grid2 p {
		display: none;
	}
}

/* Phones */
@media screen and (max-width: 767px) {
	.basic-link {
		color: #83c7b8;
	}
	
	.footer-map, .footer-logo {
		display: none;
	}
	
	.main {
		padding-top: 40px;
	}
	
	.center-image {
		width: 75%;
	}
	
	.accordion, .panel {
		width: 90%;
		margin-left: 5%;
		padding-left: 15px;
		padding-right: 15px;
		font-size: 18px;
	}
	
	.sponsor-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.sponsor-grid2 {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.sponsor-grid2 p {
		display: none;
	}
	
	.image-section img {
		padding: 5px;
	}
	
	.dates-table {
		width: 100%;
	}
	
	.dates-table td {
		flex: 1 0 40%;
	}
	
	.dates-table tr {
		flex-direction: row;
	}
	
	.qr-card {
		max-width: 75%;
	}
	
	.linked-images {
		flex-direction: column;
	}
	
	.image-link img {
		max-width: 90%;
	}
	
	.board-section3 {
		flex-direction: column;
		align-items: center;
	}
	
	.vertical-card {
		width: 90%;
	}
	
	.card-img {
		width: 60%;
	}
	
	.vendor-section {
		flex-direction: column;
	}
	
	.qr-code {
		width: 75%;
	}
	
	.special-table {
		display: none;
	}
	
	.table-container {
		display: none;
	}
	
	.phone-display {
		display: block;
		padding: 15px;
	}

	.phone-display li {
		font-family: "source-sans-pro", sans-serif;
	}
	
	/* Side Nav Styling */
    .navbar {
        display: none;
    }

	.text-title {
		font-family: "shadows-into-light", sans-serif;
		color: #f9f9f9;
		padding: 20px;
	}
	
    .hamburger-menu {
        display: block;
		overflow: hidden;
		background-color: #555555;
		color: #f9f9f9;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		padding: 10px;
    }

	.sidenav-img {
		width: 50%;
	}
	
    .sidenav {
        width: 0px;
		transition: width 0.5s ease;
		top: 0px;
		font-family: "source-sans-pro", sans-serif;
    }

    .sidenav a {
        padding: 15px;
        text-decoration: none;
        font-size: 20px;
        color: #f9f9f9;
        display: block;
        transition: 0.3s;
    }

    .sidenav a:hover {
        background-color: rgba(131, 199, 184, 0.7);
		color: #f9f9f9;
    }
}