/* montserrat-alternates-regular - latin */
@font-face {
	font-family: 'Montserrat Alternates';
	font-style: normal;
	font-weight: 400;
	src: local(''),
		url('./fonts/montserrat-alternates-lpc-regular.woff2') format('woff2'),
		url('./fonts/montserrat-alternates-lpc-regular.woff') format('woff');
}
html {
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Montserrat Alternates';
	min-height: 100vh;
	margin: 0;
	padding: 0;
	position: relative;
	background: #361600;
}
.bg-slide {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 2s ease-in-out;
	z-index: -1;
}
section {
	min-height: 100vh;
	margin: 0;
}
.container {
	display: flex;
	min-height: 100vh;
}
.content {
	background-color: rgba(0,0,0,0.25);
	color: #361600;
	flex: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	padding: 3em 0 2em;
}
.content a {
	border-bottom: 1px solid #453886;
	color: #361600;
	padding-bottom: .25em;
	text-decoration: none;
}
.content a:hover {
	color: #5F4634;
}
.content a.wavy:hover {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift 1s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%235F4634' stroke-width='1' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
	background-position: bottom;
	background-repeat: repeat-x;
	background-size: 20%;
	border-bottom: 0;
	padding-bottom: .3em;
	text-decoration: none;
}
.inner {
	width: 80%;
	max-width: 600px;
	margin: auto;
	text-align: center;
	border-radius: 10px;
	padding: 2em;
	background-color: rgba(255,255,255,0.88);
	box-shadow: rgba(0,0,0, 0.25) 0 2px 8px 0;
}
.sitelogo {
	width: 100%;
	display: block;
	margin: 0 auto 2em;
}
h2 {
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.4;
	margin-top: 1em;
}
p {
	text-align: left;
	font-size: 1rem;
	line-height: 1.4;
	margin-top: 1em;
}
.close {
    position: fixed;
    top: 5px;
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-family: sans-serif;
    font-weight: bold;
    cursor: pointer;
    z-index: 5000;
    line-height: 1;
    transition: color 0.2s ease;
    text-decoration: none;
}
@media (max-width: 767px) {
	.container {
		height: 100vh;
	}
	.content {
		width: 100%;
	}
}
/* Button Group Container */
.button-group {
	display: flex;
	gap: 15px;
	margin-top: 2em;
	width: 100%;
}
/* Button Styles */
.button-group a {
	flex: 1;
	padding: 15px 20px;
	background-color: #361600;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 5px;
	transition: background-color 0.2s ease-in-out;
	box-sizing: border-box;
}
.button-group a:hover {
	background-color: #5F4634;
	color: #fff;
}
/* Image Grid Container */
.image-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px; 
	margin: 2em 0;
	width: 100%;
}
/* Grid Links - Image Containers */
.grid-item {
	display: block;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: rgba(0,0,0, 0.1) 0 1px 4px;
}
/* Grid Images */
.grid-item img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.3s ease-in-out;
	transform-origin: center center;
}
/* Zoom Hover Effect */
.grid-item:hover img {
	transform: scale(1.075);
}
/* Mobile */
@media (max-width: 767px) {
	.image-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    box-sizing: border-box;
}
/* Wrapper to help with positioning and scrolling */
.lightbox-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
    padding: 3em 1em;
    box-sizing: border-box;
}
#lightbox-img {
    width: 100%;
    max-width: 1080px;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.5);
}
/* Close Button */
.lightbox-close {
    position: fixed;
    top: 5px;
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-family: sans-serif;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    transition: color 0.2s ease;
}
.lightbox-close:hover {
    color: #aaa;
}

/* --- Contact Form --- */
.contact-form {
    text-align: left; /* Aligns the labels neatly on the left */
    margin: 1.5em 0 0;
    width: 100%;
}
.form-group {
    margin-bottom: 1.2em;
}
.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-size: 0.95rem;
    font-weight: 600;
}
/* Input Fields */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px; /* Match existing button radius */
    font-family: 'Montserrat Alternates', sans-serif; /* Maintains site typography */
    font-size: 1rem;
    box-sizing: border-box; /* Keeps fields from breaking out of the container */
    background-color: #fafafa;
    transition: border-color 0.2s ease;
}
.form-group textarea {
    resize: vertical; /* Restricts resizing to height only */
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #453886; /* Focus state styling */
}
/* Submit Button - styled identically to your .button-group links */
.submit-btn {
    width: 100%;
    padding: 15px 20px;
    margin: 1em 0 0;
    background-color: #361600;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    font-family: inherit;
}
.submit-btn:hover {
    background-color: #5F4634;
}
/* Spam Protection */
.honeypot {
    display: none; /* Keeps the fake field hidden from human users */
}
/* Status Messages */
.success {
    color: #155724;
    background-color: #d4edda;
    padding: 12px;
    border-radius: 5px;
    font-size: 0.95rem;
    margin-bottom: 1em;
    border: 1px solid #c3e6cb;
}
.error {
    color: #721c24;
    background-color: #f8d7da;
    padding: 12px;
    border-radius: 5px;
    font-size: 0.95rem;
    margin-bottom: 1em;
    border: 1px solid #f5c6cb;
}