/* ==========================================================================
   Page-Specific Styles for Gallery (DrawnAtDusk.html)
   ========================================================================== */

header {
	width: 100%;
	height: 6%;
	background-color: #5D5E5D;
	border-bottom: 1px solid #353635;
}

.logo {
	color: var(--text-white);
	font-weight: bold;
	letter-spacing: 4px;
	text-align: center;
	padding-top: 15px;
	line-height: 2em;
	font-size: 40px; /* Increased from 22px */
	font-style: italic; /* Added italic style */
}

.hero_header {
	color: var(--text-white);
	text-align: center;
	margin: 0;
	letter-spacing: 4px;
}
/* ... rest of the file is unchanged ... */
.intro {
	padding-bottom: 35px;
	width: 100%;
    display: inline-block;
	background-color: #6DC7D0;
}

.column {
	width: 50%;
	text-align: center;
	padding-top: 30px;
	float: left;
}

.intro .column h3 {
	color: var(--text-white);
	text-align: center;
}

.intro .column p {
	color: var(--text-white);
	padding: 0 30px;
	text-align: justify;
	line-height: 25px;
	font-weight: lighter;
	margin: 4% 20px 0 20px;
	width: 80%;
}

.text_column {
	width: 90%;
	text-align: left;
	font-weight: lighter;
	line-height: 25px;
	float: left;
	padding: 0 20px;
	color: var(--text-light);
}

.gallery {
	clear: both;
	display: inline-block;
	width: 100%;
	padding-bottom: 35px;
	margin-top: -5px;
}

.thumbnail {
	width: 23%;
	text-align: center;
	float: left;
	margin: 35px 1% 0 1%;
	background-color: #F8F8F8;
	padding: 20px 0;
	border-radius: 3px;
	border-bottom: 4px solid #6DC7D0;
}

.painting {
	width: 92%;
	height: auto;
}

.gallery .thumbnail h4 {
	margin: 5px 0;
	color: #52BAD5;
	text-align: left;
	padding: 0 20px;
}

.gallery .thumbnail p {
	margin: 0;
	color: var(--bg-light-gray);
	text-align: left;
	padding-left: 20px;
}

.gallery .thumbnail .tag {
	color: #5D5E5D;
	padding: 4px 20px 4px 20px;
	text-align: left;
}

footer {
	background-color: var(--bg-light-gray);
	padding: 60px 0;
}

.button-container {
    display: flex;
    justify-content: space-around; /* Changed from 'center' */
	padding: 10px 50px;
}

.button {
	width: 200px;
	margin-top: 40px;
	padding: 20px 10px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid var(--text-white);
	color: var(--text-white);
	transition: all 0.3s linear;
}

.button:hover {
	background-color: #6DC7D0;
	color: var(--text-white);
	cursor: pointer;
}


/* Mobile & Tablet Styles */
@media (max-width: 767px) {
	.text_column,
	.thumbnail,
	.column {
		width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 1096px) {
	.thumbnail {
		width: 48%;
	}
}