:root {
	--font-light: 300;
	--font-regular: 400;
	--font-medium: 500;
	--font-demi-bold: 600;
	--font-bold: 700;
	--font-extra-bold: 800;
	--font-black: 900;
}

@font-face {
	font-family: 'Mattone';
	src: url('../fonts/Mattone-Black.woff2') format('woff2');
	font-style: normal;
}

@font-face {
	font-family: 'BDOGrotesk';
	src: url('../fonts/BDOGrotesk-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'BDOGrotesk';
	src: url('../fonts/BDOGrotesk-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'BDOGrotesk';
	src: url('../fonts/BDOGrotesk-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'BDOGrotesk';
	src: url('../fonts/BDOGrotesk-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
}


body {
	background-color: #b7b7b7;
	max-width: 1440px !important;
	margin: 0 auto;
}

body {
	font-family: 'BDOGrotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	font-size: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000000;
}

h1 {
	font-family: "Mattone", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	font-size: 40px;
	padding: 0px;
	margin: 0;
	/* box-sizing: border-box; */
}

h2 {
	margin: 20px 0 0 0;
	font-weight: 300;
	font-size: 20px;
}

h3 {
	margin: 10px 0 20px 0;
	font-size: 12px;
	font-weight: 300;
}

p {
	font-size: 12px;
}

a {
	color: #000000;
	text-decoration: underline;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: #000000;
}

a:active {
	color: #000000;
	text-decoration: underline;
}

table {
	border-collapse: collapse;
	width: 100%;
	margin: 20px 0;
}

th,
td {

	padding: 12px;
	text-align: left;
}

th {
	background-color: #f2f2f2;
	font-weight: bold;
}


.expanded-content {
	padding: 20px;
}

.image-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.image-gallery img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.description {
	font-size: 14px;
	line-height: 1.6;
}

.filters {
	margin: 20px 0;
}

.filter-btn {
	padding: 8px 16px;
	margin-right: 8px;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
	border-radius: 4px;
}

.filter-btn:hover {
	background: #f0f0f0;
}

.filter-btn.active {
	background: #f2f2f2;
	border-color: #999;
}

.form-tag {
	display: inline-block;
	padding: 2px 8px;
	margin: 2px;
	background: #f0f0f0;
	border-radius: 12px;
	font-size: 12px;
}

hr {
	border: none;
	border-top: 1px solid #333;
	width: 100%;
}

.chunk {
	margin: 20px 0px 20px 0px;
}


/* Mobile First - Base Styles (0-479px) */
#app {    
    max-width: 1440px !important;
	padding: 10px;	
    margin: 0 auto; 
    box-sizing: border-box;
}

/* Medium devices (480px-767px) */
@media screen and (min-width: 480px) {
	#app {
		padding: 10px;
		width: 100%;
		max-width: 1440px;
	}

	body{
		font-size: 12px;
	}

	h1 {
		font-size: 54px;
	}
	h2 {				
		font-size: 28px;
	}
	
	h3 {		
		font-size: 12px;		
	}
	
	p {
		font-size: 12px;
	}
}

/* Tablets (768px-1023px) */
@media screen and (min-width: 768px) {
	#app {
		padding: 10px;
		width: 100%;
		max-width: 1440px;
	}

	body{
		font-size: 12px;
	}

	h1 {
		font-size: 72px;
	}

	h2 {				
		font-size: 28px;
	}
	
	h3 {		
		font-size: 12px;		
	}
	
	p {
		font-size: 12px;
	}
}

/* Desktop (1024px+) */
@media screen and (min-width: 1024px) {
    #app {
        padding: 10px; /* Keep max-width the same */
		width: 100%;
		max-width: 1440px;
    }

	body{
		font-size: 12px;
	}

	h1 {
		font-size: 100px;
	}

	h2 {				
		font-size: 28px;
	}
	
	h3 {		
		font-size: 12px;		
	}
	
	p {
		font-size: 12px;
	}
}