@font-face {
    font-family: 'Gotham-Medium';
    src: url('fonts/Gotham-Medium.otf') format('woff2'), /* Modern Browsers */
         url('fonts/Gotham-Medium.otf') format('woff');   /* Older Browsers */

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Bold';
    src: url('fonts/Gotham-Bold.otf') format('woff2'), /* Modern Browsers */
         url('fonts/Gotham-Bold.otf') format('woff');   /* Older Browsers */

    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Black';
    src: url('fonts/Gotham-Black.otf') format('woff2'), /* Modern Browsers */
         url('fonts/Gotham-Black.otf') format('woff');   /* Older Browsers */

    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Light';
    src: url('fonts/Gotham-Light.otf') format('woff2'), /* Modern Browsers */
         url('fonts/Gotham-Light.otf') format('woff');   /* Older Browsers */

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Condensed-Medium';
    src: url('fonts/Gotham\ Condensed\ Medium.otf') format('woff2'), /* Modern Browsers */
         url('fonts/Gotham\ Condensed\ Medium.otf') format('woff');   /* Older Browsers */

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Condensed-Bold';
    src: url('fonts/GothamCond-Bold.otf') format('woff2'), /* Modern Browsers */
         url('fonts/GothamCond-Bold.otf') format('woff');   /* Older Browsers */

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Condensed-Book';
    src: url('fonts/GothamCond-Book.otf') format('woff2'), /* Modern Browsers */
         url('fonts/GothamCond-Book.otf') format('woff');   /* Older Browsers */

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lovelo-Light';
    src: url('fonts/Lovelo_Line_Light.otf') format('woff2'), /* Modern Browsers */
         url('fonts/Lovelo_Line_Light.otf') format('woff');   /* Older Browsers */

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paris';
    src: url('fonts/Paris.otf') format('woff2'), /* Modern Browsers */
         url('fonts/Paris.otf') format('woff');   /* Older Browsers */

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SurveyorFine-Medium';
    src: url('fonts/SurveyorFine-Medium-Pro.otf') format('woff2'), /* Modern Browsers */
         url('fonts/SurveyorFine-Medium-Pro.otf') format('woff');   /* Older Browsers */

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
	--bs-body-font-family: 'GlacialIndifference-Regular', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important; 
	--bold-font: 'GlacialIndifference-Bold';

	--nav-display: flex;
	--nav-padding: 0.8em;
	--nav-overflow-x: scroll;
	--nav-min-width: 100%;
	--nav-border-radius: 0.4em;
	--nav-margin: 0em 0em;
	--nav-gap: 0.4em;

	--nav-item-border: 1px solid whitesmoke;
	--nav-item-padding: 0.5em 0.8em;
	--nav-item-display: flex;
	--nav-item-gap: 0.4em;
	--nav-item-border-radius: 0.3em;
	--nav-item-background: #2A5136;
	--nav-item-color: white;
	--nav-item-font-size: 1.2em;
	--active-item-color: rgb(225, 121, 61);

	--section-title-color: #2A5136;
}

body {
	margin: 0;
	overflow-x: hidden;
}

/* Categories Button */

.btn-category {
	background: var(--nav-item-background);
	color: var(--nav-item-color);
	border: none;
	font-family: 'Gotham-Condensed-Bold';
	margin: 0.2rem 0.05rem;
}

.btn-category.active {
	background: var(--active-item-color);
}


/* Subcategories class */
.subcategory {
	overflow-x: auto;
	text-align: center;
}
.subcategory a {
	color: var(--section-title-color);
	font-family: 'Gotham-Condensed-Book';
	text-decoration: none;
	text-wrap: nowrap;
	border-right: solid 1px var(--section-title-color);
	padding: 0 0.4rem;
}

.subcategory a:last-child {
	border-right: none;
}

.subcategory a.active {
    text-decoration: underline;
    text-decoration-color: var(--active-item-color);
    color: var(--active-link-color); /* Optional: Define the color for active link */
}

.hidden {
	display: none;
}


table {
	min-width: 100%;
	margin-bottom: 2em;
}

/* td:first-child {
	font-family: 'GlacialIndifference-Bold';
}

td p {
	font-family: 'GlacialIndifference-Regular';
	font-size: small;
	width: 100%;
} */

nav {
    display: var(--nav-display);
    padding: var(--nav-padding);
    overflow-x: var(--nav-overflow-x);
    min-width: var(--nav-min-width);
    border-radius: var(--nav-border-radius);
    margin: var(--nav-margin);
	gap: var(--nav-gap);
}

.nav-item {
    border: var(--nav-item-border);
    padding: var(--nav-item-padding);
    display: var(--nav-item-display);
    gap: var(--nav-item-gap);
    border-radius: var(--nav-item-border-radius);
    background-color: var(--nav-item-background);
    color: var(--nav-item-color);
	font-size: var(--nav-item-font-size);
}

header {
	margin-top: 20px;
}

.section-title {
    margin: 12px 0px;
	font-family: Times, serif;
	font-size: 2rem;
	font-weight: 800;
	color: var(--section-title-color);
}

.green-border {
    border: 2px solid #2A5136;
    margin: 1em 0em;
    padding: 1em;
}

.coffee-section {
	background: url('../images/background.png');
	background-position: center;
	background-repeat: no-repeat;
}

.bold-text {
	font-family: var(--bold-font);
}

.small-text {
	font-weight: 100;
	font-size: xx-small;
}

.header-margin {
	padding: 2rem;
}

/* MENU ANIMATION */
.artcaffe-slideshow {
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
  }
  
  .artcaffe-slideshow img {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	top: 0;
	left: 0;
	transition: transform ease 1.5s;
  }
  
  .artcaffe-market-slideshow {
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
  }
  
  .artcaffe-market-slideshow img,
  .artcaffe-market-slideshow video {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	object-fit: cover;
	transition: transform 1s, opacity 1s;
  }
  
  .artcaffe-market-slideshow img.active,
  .artcaffe-market-slideshow video.active {
	opacity: 1;
	transform: translateX(0);
  }

@media only screen and (max-width: 600px) {
	body {
		font-size: 0.8rem !important;
		padding: 4px;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.green-border {
		padding: 0;
	}

	.artcaffe-market-slideshow {
		width: 100%;
		height: 130px;
		overflow: hidden;
		position: relative;
		margin: 25px 0px;
	  }
	  .artcaffe-slideshow {
		width: 100%;
		height: 100px;
		overflow: hidden;
		position: relative;
		margin: 25px 0px;
	  }
}