/*
Lens & Licht Fotografie — Portfolio Demo
*/

body {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 17px;
	font-weight: 300;
	overflow-x: hidden;
	color: #333;
}

a, button {
	transition: all 0.3s ease;
	color: #FFFFFF;
}

a:hover {
	color: #d4a574;
	text-decoration: none;
}
a:focus {
	text-decoration: none;
	outline: none;
}

/* ======= NAVIGATION ======= */
.tm-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 20px 0;
	transition: all 0.3s ease;
	background: transparent;
}

.tm-nav.scrolled {
	background: rgba(20, 20, 20, 0.95);
	padding: 12px 0;
	box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.tm-nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tm-nav-logo {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	letter-spacing: 1px;
}

.tm-nav-logo:hover {
	color: #d4a574;
	text-decoration: none;
}

.tm-nav-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
}

.tm-nav-links li a {
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 5px 0;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}

.tm-nav-links li a:hover {
	color: #d4a574;
	border-bottom-color: #d4a574;
}

.tm-nav-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 1.4rem;
	cursor: pointer;
}

/* ======= PARALLAX SECTIONS ======= */
.parallax-window {
	min-height: 100vh;
	background: transparent;
	display: flex;
	align-items: center;
}

.tm-text-white { color: #fff; }

.tm-page-1-content {
	padding-top: 80px;
	align-items: center;
}

.tm-page-2 {
	max-width: 900px;
}

.tm-page-4-content {
	padding-top: 1vh;
}

.tm-page-5-content {
	padding-top: 1vh;
}

/* ======= HERO ======= */
.tm-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

#home .tm-page-1-content {
	position: relative;
	z-index: 2;
}

h1 {
	font-family: 'Playfair Display', serif;
	font-size: 5rem;
	font-weight: 700;
	text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
	padding-bottom: 10px;
	letter-spacing: 2px;
}

.tm-hero-subtitle {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	font-style: italic;
	color: #d4a574;
	margin-bottom: 20px;
}

/* ======= HEADINGS ======= */
h2 {
	font-family: 'Playfair Display', serif;
	padding-bottom: 15px;
	font-weight: 700;
	font-size: 1.8rem;
	color: #222;
}

h3 {
	font-family: 'Playfair Display', serif;
	color: #d4a574;
	padding-bottom: 10px;
	font-size: 1.3rem;
	font-weight: 700;
}

h5 {
	font-family: 'Playfair Display', serif;
	padding-left: 20px;
	font-size: 2.2rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

/* ======= CONTENT BLOCKS ======= */
.tm-bg-white {
	padding: 20px;
	background-color: white;
	opacity: 0.9;
	width: 100%;
}

.tm-bg-white2 {
	padding: 20px;
	background-color: white;
	opacity: 0.9;
	width: 100%;
	margin: 0px;
}

.tm-bg-white-transparent {
	margin: 5px;
	padding: 40px;
	background-color: rgba(255, 255, 255, 0.92);
	max-width: 360px;
	width: 100%;
	margin: 20px;
	border-radius: 4px;
}

.tm-bg-white-transparent p {
	color: #555;
	line-height: 1.7;
}

.tm-bg-white-transparent-page3 {
	margin-left: 100px;
}

.tm-page-5-content {
	float: right;
}

.container {
	float: right;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

/* ======= BUTTONS ======= */
.btn-danger {
	font-size: 1rem;
	margin-top: 20px;
	padding: 12px 40px;
	background-color: #d4a574;
	border-color: #d4a574;
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
}

.btn-danger:hover {
	background-color: #c4905f;
	border-color: #c4905f;
}

.btn-outline-light {
	font-size: 1rem;
	margin-top: 20px;
	margin-left: 15px;
	padding: 12px 40px;
	background: transparent;
	border: 2px solid #fff;
	border-radius: 0;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
}

.btn-outline-light:hover {
	background-color: #fff;
	color: #222;
}

.tm-btn-block {
	display: block;
}

.tm-btn-right {
	float: right;
}

.tm-btn-submit {
	font-size: 1rem;
	font-weight: 400;
	padding: 12px 50px;
	border-radius: 0;
	float: right;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ======= SERVICE CARDS ======= */
.tm-service-icon {
	font-size: 2.5rem;
	color: #d4a574;
	margin-bottom: 15px;
}

.tm-service-card {
	text-align: center;
}

.tm-project-link {
	display: inline-block;
	margin-top: 15px;
	color: #d4a574;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.tm-project-link:hover {
	color: #c4905f;
}

/* ======= BLOG CARDS ======= */
.tm-blog-card {
	max-width: 360px;
}

.tm-blog-date {
	display: block;
	font-size: 0.8rem;
	color: #d4a574;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
	font-weight: 600;
}

/* ======= GALLERY ======= */
.tm-gallery-header {
	text-align: center;
	margin-bottom: 30px;
}

.tm-gallery-header h5 {
	padding-left: 0;
}

.tm-img-container {
	width: 96%;
	max-width: 1100px;
}

.tm-slider-img {
	padding-left: 8px;
	padding-right: 8px;
	border-radius: 2px;
}

.slick-dots li button:before {
	font-size: 14px;
	color: white;
	opacity: 0.6;
}

.slick-dots {
	position: absolute;
	bottom: -40px;
	display: block;
	width: 100%;
	padding: 0;
	list-style: none;
	text-align: center;
}

.slick-dots li.slick-active button:before {
	opacity: 1;
	color: #d4a574;
}

/* ======= CONTACT ======= */
.tm-address-box {
	color: white;
	padding-left: 40px;
}

.tm-address-box h3 {
	color: #d4a574;
	font-size: 1.6rem;
	margin-bottom: 15px;
}

.tm-address-box address {
	line-height: 2;
	margin-top: 15px;
}

.tm-address-box i {
	color: #d4a574;
	width: 20px;
	text-align: center;
	margin-right: 8px;
}

.tm-social-links {
	margin-top: 25px;
}

.tm-social-links a {
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	margin-right: 10px;
	color: #fff;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.tm-social-links a:hover {
	background-color: #d4a574;
	border-color: #d4a574;
	color: #fff;
}

.form-control {
	padding: .5rem .75rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #495057;
	opacity: 0.9;
	background-color: #fff;
	background-image: none;
	background-clip: padding-box;
	border: 1px solid #ddd;
	border-radius: 0;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
	border-color: #d4a574;
	box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.2);
}

/* ======= FOOTER ======= */
.tm-position-relative {
	position: relative;
}

.footer {
	padding: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	color: rgba(255,255,255,0.7);
	text-align: center;
	width: 100%;
	font-size: 0.85rem;
}

.footer a {
	color: #d4a574;
}

.footer a:hover {
	color: #fff;
}

/* ======= ROW ======= */
.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
}

/* ======= PROJECT DETAIL PAGES ======= */
.tm-project-hero {
	min-height: 60vh;
}

.tm-project-detail-section {
	padding: 60px 0 40px;
	background: #fafafa;
}

.tm-project-detail-section .container {
	float: none;
	max-width: 1100px;
}

.tm-project-content {
	padding-right: 40px;
}

.tm-project-content h2 {
	color: #222;
	margin-bottom: 20px;
}

.tm-project-content h3 {
	margin-top: 30px;
	margin-bottom: 15px;
}

.tm-project-content p {
	color: #555;
	line-height: 1.8;
	margin-bottom: 15px;
}

.tm-project-list {
	list-style: none;
	padding: 0;
	margin: 15px 0;
}

.tm-project-list li {
	padding: 8px 0 8px 25px;
	position: relative;
	color: #555;
	line-height: 1.6;
}

.tm-project-list li:before {
	content: '\f00c';
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	color: #d4a574;
}

.tm-project-sidebar {
	padding-left: 20px;
}

.tm-project-info-box {
	background: #fff;
	padding: 30px;
	margin-bottom: 25px;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.tm-project-info-box h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #d4a574;
}

.tm-project-meta {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.tm-project-meta li {
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	color: #555;
	font-size: 0.95rem;
}

.tm-project-meta li strong {
	color: #222;
}

.tm-sidebar-link {
	display: block;
	padding: 10px 0;
	color: #d4a574;
	font-weight: 600;
	border-bottom: 1px solid #f0f0f0;
}

.tm-sidebar-link:hover {
	color: #c4905f;
}

.tm-sidebar-link i {
	margin-right: 8px;
	width: 20px;
	text-align: center;
}

.tm-project-gallery {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #eee;
}

.tm-project-gallery h2 {
	margin-bottom: 25px;
}

.tm-project-gallery .slick-dots li button:before {
	color: #999;
}

.tm-project-gallery .slick-dots li.slick-active button:before {
	color: #d4a574;
}

.tm-project-footer {
	background: #1a1a1a;
	padding: 25px;
	text-align: center;
	color: rgba(255,255,255,0.6);
	font-size: 0.85rem;
}

.tm-project-footer a {
	color: #d4a574;
}

/* ======= BLOG PAGE ======= */
.tm-blog-header {
	background: #1a1a1a;
	padding: 120px 0 60px;
	text-align: center;
}

.tm-blog-header h1 {
	color: #fff;
	font-size: 3.5rem;
	text-shadow: none;
}

.tm-blog-header .tm-hero-subtitle {
	margin-bottom: 0;
}

.tm-blog-header .container {
	float: none;
}

.tm-blog-section {
	padding: 50px 0;
	background: #fafafa;
}

.tm-blog-section .container {
	float: none;
	max-width: 1100px;
}

.tm-blog-post {
	background: #fff;
	margin-bottom: 35px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.tm-blog-post-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.tm-blog-post-content {
	padding: 30px;
}

.tm-blog-post-content h2 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.tm-blog-post-content p {
	color: #555;
	line-height: 1.8;
	margin-bottom: 12px;
}

.tm-blog-post-tags {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #f0f0f0;
}

.tm-blog-post-tags span {
	display: inline-block;
	margin-right: 15px;
	font-size: 0.85rem;
	color: #999;
}

.tm-blog-post-tags i {
	color: #d4a574;
	margin-right: 4px;
}

/* Blog Sidebar */
.tm-blog-sidebar {
	padding-left: 20px;
}

.tm-sidebar-box {
	background: #fff;
	padding: 25px;
	margin-bottom: 25px;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.tm-sidebar-box h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #d4a574;
}

.tm-author-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 15px;
}

.tm-sidebar-box p {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.6;
}

.tm-sidebar-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tm-sidebar-list li {
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
}

.tm-sidebar-list li a {
	color: #555;
	text-decoration: none;
}

.tm-sidebar-list li a:hover {
	color: #d4a574;
}

.tm-sidebar-list li i {
	color: #d4a574;
	margin-right: 8px;
}

.tm-social-dark a {
	border-color: #ddd;
	color: #555;
}

.tm-social-dark a:hover {
	background: #d4a574;
	border-color: #d4a574;
	color: #fff;
}

/* ======= BLOG POST DETAIL ======= */
.tm-blog-post-detail {
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	margin-bottom: 40px;
}

.tm-blog-post-detail .tm-blog-post-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.tm-blog-post-detail h2 {
	font-size: 1.4rem;
	margin-top: 30px;
	margin-bottom: 15px;
	padding: 0 30px;
}

.tm-blog-post-detail h2:first-of-type {
	margin-top: 25px;
}

.tm-blog-post-detail p {
	color: #555;
	line-height: 1.9;
	margin-bottom: 15px;
	padding: 0 30px;
}

.tm-blog-image-inline {
	margin: 25px 0;
	padding: 0 30px;
}

.tm-blog-image-inline img {
	width: 100%;
	border-radius: 4px;
}

.tm-image-caption {
	display: block;
	font-size: 0.85rem;
	color: #999;
	font-style: italic;
	margin-top: 8px;
}

.tm-blog-post-footer {
	margin-top: 30px;
	padding: 20px 30px;
	border-top: 1px solid #f0f0f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.tm-blog-share span {
	color: #999;
	font-size: 0.9rem;
	margin-right: 10px;
}

.tm-blog-share a {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50%;
	background: #f5f5f5;
	color: #555;
	margin-right: 5px;
	font-size: 0.9rem;
}

.tm-blog-share a:hover {
	background: #d4a574;
	color: #fff;
}

/* Related Posts */
.tm-related-posts {
	margin-bottom: 40px;
}

.tm-related-posts h3 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	color: #222;
}

.tm-related-card {
	display: block;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	margin-bottom: 20px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.tm-related-card:hover {
	transform: translateY(-3px);
	text-decoration: none;
}

.tm-related-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.tm-related-card h4 {
	padding: 15px;
	font-size: 0.95rem;
	color: #222;
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
}

/* Blog overview links */
.tm-blog-post-image-link {
	display: block;
}

.tm-blog-post-content h2 a {
	color: #222;
	text-decoration: none;
}

.tm-blog-post-content h2 a:hover {
	color: #d4a574;
}

.tm-read-more {
	display: inline-block;
	color: #d4a574;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.tm-read-more:hover {
	color: #c4905f;
	text-decoration: none;
}

/* Blog header date on detail page */
.tm-blog-header .tm-blog-date {
	color: #d4a574;
}

/* ======= RESPONSIVE ======= */
@media screen and (max-width: 991px) {
	.tm-img-container {
		max-width: 490px;
		width: 90%;
	}
	.tm-slider-img {
		padding-left: 5px;
		padding-right: 5px;
	}
	.tm-address-box { padding-left: 10px; }

	h1 { font-size: 3.5rem; }

	.tm-bg-white-transparent-page3 {
		margin-left: 20px;
	}
}

@media screen and (max-width: 767px) {
	.tm-nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: rgba(20, 20, 20, 0.95);
		flex-direction: column;
		gap: 0;
		padding: 15px 0;
	}

	.tm-nav-links.active {
		display: flex;
	}

	.tm-nav-links li a {
		display: block;
		padding: 12px 30px;
	}

	.tm-nav-toggle {
		display: block;
	}

	.tm-address-box {
		padding-left: 0;
		padding-top: 40px;
	}
	.tm-form-section {
		padding-top: 80px;
		padding-bottom: 100px;
	}

	h1 { font-size: 2.8rem; }

	.btn-outline-light {
		margin-left: 0;
	}

	.tm-bg-white-transparent {
		max-width: 100%;
		margin: 10px;
	}

	.tm-project-content {
		padding-right: 0;
	}

	.tm-project-sidebar {
		padding-left: 0;
		margin-top: 30px;
	}

	.tm-blog-sidebar {
		padding-left: 0;
		margin-top: 30px;
	}

	.tm-blog-header h1 {
		font-size: 2.5rem;
	}
}

@media screen and (max-width: 540px) {
	.tm-address-box {
		margin-bottom: 50px;
	}
	.tm-page-4-content {
		margin-bottom: 50px;
	}

	h1 { font-size: 2.2rem; }

	.tm-bg-white-transparent-page3 {
		margin-left: 10px;
	}
}