:root {
	--primary-color: #3A5311;      /* Forest green */
	--secondary-color: #8B4513;    /* Saddle brown */
	--accent-color: #E8C39E;       /* Light wood */
	--dark-wood: #5D4037;          /* Dark wood */
	--light-color: #F5F5F5;        /* Off white */
	--text-color: #2C2C2C;         /* Almost black */
	--background-color: #FAF7F2;   /* Cream paper */
}

body {
	font-family: 'Roboto', sans-serif;
	color: var(--text-color);
	background-color: var(--background-color);
	line-height: 1.6;
	scroll-behavior: smooth;
}

h1, h2, h3, h4 {
	font-family: 'Teko', sans-serif;
	color: var(--dark-wood);
}
h2 a {
	color: inherit;
	text-decoration: none;
}
h2 a:hover,
h2 a:focus {
	text-decoration: underline; /* nebo none */
}
/* Header and Navigation */
.navbar {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	padding: 0.5rem 1rem;
}

.navbar-brand {
	display: flex;
	align-items: center;
}

.navbar-brand img {
	max-height: 80px;
	transition: all 0.3s ease;
}

.brand-text {
	font-family: 'Teko', sans-serif;
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--primary-color);
	margin-left: 10px;
}

.navbar-nav .nav-link {
	color: var(--secondary-color) !important;
	font-weight: 500;
	margin: 0 8px;
	padding: 10px 5px;
	position: relative;
	transition: all 0.3s ease;
}

.navbar-nav .nav-link:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--accent-color);
	transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--primary-color) !important;
}

.navbar-nav .nav-link:hover:after {
	width: 100%;
}

/* Hero section with full-width image */
.hero {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
	margin-bottom: 3rem;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.8);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 20px;
}

.hero-title {
	color: white;
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
	color: var(--light-color);
	font-size: 1.5rem;
	max-width: 800px;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-button {
	background-color: var(--primary-color);
	color: white;
	padding: 12px 30px;
	font-size: 1.1rem;
	font-weight: 500;
	border: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.hero-button:hover {
	background-color: var(--secondary-color);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	color: white;
}

/* Content sections */
.section {
	padding: 5rem 0;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.section-title:after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background-color: var(--accent-color);
	margin: 15px auto 0;
}

/* Feature boxes */
.feature-box {
	background-color: white;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

/* Footer */
footer {
	background-color: var(--dark-wood);
	color: var(--light-color);
	padding: 4rem 0 2rem;
}

.footer-heading {
	color: var(--accent-color);
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.footer-link {
	color: var(--light-color);
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
	margin-bottom: 0.8rem;
}

.footer-link:hover {
	color: var(--accent-color);
}

.social-links a {
	color: var(--light-color);
	font-size: 1.5rem;
	margin-right: 1rem;
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: var(--accent-color);
}

.copyright {
	text-align: center;
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Alert messages */
.floatingAlert {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1050;
	max-width: 350px;
}

.alert {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-left: 4px solid;
}

.alert-success {
	border-left-color: #28a745;
}

.alert-danger {
	border-left-color: #dc3545;
}

.alert-info {
	border-left-color: #17a2b8;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.navbar-brand img {
		max-height: 60px;
	}

	.brand-text {
		font-size: 1.5rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}
}

@media (max-width: 767.98px) {
	.hero {
		height: 60vh;
	}

	.hero-title {
		font-size: 2rem;
	}

	.section {
		padding: 3rem 0;
	}
}

/* Image gallery */
.gallery-img {
	height: 250px;
	object-fit: cover;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.gallery-img:hover {
	transform: scale(1.03);
}

/* Contact form styling */
.contact-form {
	background-color: white;
	padding: 2.5rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
	border: 1px solid #e0e0e0;
	padding: 12px;
	margin-bottom: 1rem;
	border-radius: 5px;
}

.form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.2rem rgba(232, 195, 158, 0.25);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	padding: 12px 30px;
	font-weight: 500;
}

.btn-primary:hover {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}
footer a {
	color: var(--light-color);
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	transition: color 0.3s ease;
}

footer a:hover {
	color: var(--accent-color);
}
