/* Stilizacija dugmeta */
#topBtn {
	display: none; /* Dugme će biti sakriveno po defaultu */
	position: fixed; /* Postavljamo ga na fiksnu poziciju */
	bottom: 20px; /* Od vrha ekrana */
	right: 20px; /* Od leve ivice ekrana */
	z-index: 99; /* Postavljamo visoki z-index kako bi bilo iznad ostalog sadržaja */
	border: none; /* Bez ivica */
	outline: none; /* Bez outline-a */
	background-color: #343a40; /* Tamna boja pozadine */
	color: gold; /* Zlatna boja teksta */
	cursor: pointer; /* Kursor pokazuje da je dugme klikabilno */
	padding: 10px; /* Unutrašnji prostor dugmeta */
	border-radius: 5px; /* Zaobljeni ivičnjaci */
	transition: background-color 0.3s ease; /* Animacija boje pozadine */
}

#topBtn:hover {
	background-color: #23272b; /* Boja pozadine pri hoveru */
}

#topBtn:focus-visible,
#btn-posalji:focus-visible,
.nav-link:focus-visible,
.service-item a:focus-visible {
	outline: 2px solid #ceb700;
	outline-offset: 3px;
}

/* ----------- hero section ----------- */
.hero-section {
	background-image: url("images/hero.jpg");
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 20px 200px 200px 200px;
}

.logo > a > img {
	height: 45px;
}

.nav-link {
	color: #fff !important;
	font-size: larger;
	font-weight: bold;
}

.nav-link:hover {
	color: #ceb700 !important;
}

.menu {
	background-color: rgba(0, 0, 0, 0.65);
}

.card {
	margin-top: 100px;
	background-color: rgba(0, 0, 0, 0.65);
}

.card-body > p {
	font-size: large;
}

.card-body > .btn {
	border-color: #ceb700;
	font-size: large;
	font-weight: bold;
	margin: 20px 0;
}

.card-body > .btn:hover {
	background-color: #ceb700;
	border-color: #ceb700;
}

.divider {
	background-color: #ceb700;
	width: 80px;
	height: 3px;
	border: none;
	margin-top: 20px;
	display: inline-block;
	margin-bottom: 20px;
}

/* ----------- hero section ----------- */
/* ----------- services section ----------- */

.services-section {
	background-color: #f8f9fa;
	padding: 100px 200px 100px 200px;
}

.services-section > div > h2,
.services-section > div > p {
	text-align: center;
}

.divider-middle {
	width: 80px;
	height: 3px;
	border: none;
	background-color: #ceb700;
	margin: 20px auto;
}
.service-item a {
	text-decoration: none;
	color: #000;
}

.service-item a:hover {
	text-decoration: none;
	color: #000;
}
.service-item img {
	width: 100%;
	max-width: 400px;
	height: auto;
	margin-bottom: 20px;
}

span {
	color: #ceb700;
}
/* ----------- services section ----------- */

/* ----------- call us section ----------- */
.call-section {
	background-color: #212529;
	color: #fff;
	padding: 100px 0;
	text-align: center;
}

a:hover {
	color: #ceb700;
}

.primary-color {
	color: #ceb700;
}
/* ----------- call us section ----------- */

/* ----------- gallery section ----------- */
.gallery-section {
	background-color: #f8f9fa;
	padding: 100px 200px 100px 200px;
	text-align: center;
}

.gallery-section > div > p,
.contact-section > div > p {
	max-width: 800px;
	margin: auto;
	word-wrap: break-word;
	font-weight: 400;
}

.gallery-item img {
	width: 100%;
	max-width: 400px;
	height: auto;
	margin-bottom: 20px;
}

/* ----------- gallery section ----------- */

/* ----------- contact section ----------- */

.contact-section {
	position: relative;
	background-image: url("images/stari-parket.jpg");
	background-size: cover;
	color: #ffffff;
	padding: 100px 200px 100px 200px;
	text-align: center;
}

.contact-section > div > p {
	margin-bottom: 30px;
}

.container-fluid {
	position: relative;
	z-index: 2;
	padding: 0 0;
}

#contactForm {
	background-color: rgba(0, 0, 0, 0.8);
	padding: 20px;
	border-radius: 5px;
}

.form-note {
	margin-top: 12px;
	margin-bottom: 0;
	font-size: 0.9rem;
	color: #ddd;
}

.form-group label {
	color: #ceb700;
	float: left;
}

.form-control {
	background-color: rgba(255, 255, 255, 0.1);
	color: #ceb700;
	border-color: #ceb700;
}
.form-control:focus {
	background-color: rgba(255, 255, 255, 0.1);
	color: #ceb700;
	border-color: #ceb700;
}
#btn-posalji {
	background-color: #ceb700;
	border-color: #ceb700;
	color: #fff;
	font-size: larger;
	font-weight: 600;
	letter-spacing: 1.1px;
}

#btn-posalji:hover {
	background-color: rgba(0, 0, 0, 0.1);
	border-color: #ceb700;
	color: #ceb700;
	font-size: larger;
	font-weight: 600;
	letter-spacing: 1.1px;
}
/* ----------- contact section ----------- */

/* ----------- footer section ----------- */
.footer-section {
	background-color: #212529;
	color: #fff;
	padding: 15px 200px 0 200px;
}

.footer-contact .footer-line {
	margin-bottom: 6px;
}

.footer-contact .footer-line:last-child {
	margin-bottom: 0;
}

.footer-copy {
	margin-bottom: 0;
}

/* ----------- footer section ----------- */

/* -------- responsive ----------- */
@media only screen and (max-width: 768px) {
	.hero-section,
	.services-section,
	.gallery-section,
	.contact-section,
	.call-section,
	.footer-section {
		padding: 20px 20px 20px 20px;
	}

	.card-body > h1 {
		font-size: x-large;
	}

	.card {
		margin-top: 0px;
	}

	.logo > a > img {
		height: 35px;
	}

	.footer-contact .footer-line,
	.footer-copy {
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.logo > a > img {
		height: 20px;
		margin-top: 10px;
	}
	.navbar-toggler {
		margin-top: -30px;
	}

	#topBtn {
		right: 12px;
		bottom: 12px;
		padding: 8px;
	}

	#btn-posalji {
		width: 100%;
	}

	.footer-contact .footer-line {
		display: block;
		margin-bottom: 8px;
		text-align: left;
		word-break: break-word;
	}

	.footer-copy {
		text-align: left !important;
		margin-top: 12px;
	}
}

@media only screen and (max-width: 1200px) and (min-width: 576px) {
	.hero-section,
	.services-section,
	.gallery-section,
	.contact-section,
	.call-section,
	.footer-section {
		padding: 20px 20px 20px 20px;
	}

	.card {
		margin-top: 0px;
	}

	.logo > a > img {
		height: 35px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation: none !important;
		transition: none !important;
	}
}
