/* Global styles */
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
}

a {
	color: #007bff;
	text-decoration: none;
}

a:hover {
	color: #0056b3;
	text-decoration: underline;
}

/* Header styles */
header {
	background-color: #000;
	border-bottom: 1px solid #ddd;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.navbar-brand {
	font-size: 1.5rem;
	font-weight: bold;
}

.nav-link {
	font-size: 1.2rem;
}

/* Hero section styles */
.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: flex-start;
	max-width: 100%;
	color: #fff;
	padding: 100px 20px;
	text-shadow: 0.3em 0.3em 0.4em black;
	overflow: hidden;
}

.hero #myVideo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.hero-heading {
	font-size: 3.5rem;
	margin-bottom: 20px;
}

.hero-subheading {
	font-size: 1.8rem;
	margin-bottom: 40px;
}

.hero-button {
	font-size: 1.2rem;
	font-weight: bold;
	margin-top: 20px;
	padding: 15px 30px;
}

.hero-button:hover {
	background-color: #0056b3;
	border-color: #0056b3;
}

.hero-image {
	width: 100%;
}

.hero-text {
	color: #ddd;
	text-align: justify;
}

/* Products section styles */
.products {
	background-color: #f9f9f9;
	padding: 100px 0;
}

.section-heading {
	font-size: 3rem;
	margin-bottom: 50px;
}

.card {
	border: none;
	margin-bottom: 30px;
}

.card-img-top {
	height: 200px;
	object-fit: cover;
}

.card-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.card-text {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.btn-primary {
	background-color: #007bff;
	border-color: #007bff;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 10px 20px;
}

.btn-primary:hover {
	background-color: #0056b3;
	border-color: #0056b3;
}

/* Footer styles */
footer {
	background-color: #333;
	color: #fff;
	padding: 50px 0;
}

.footer-heading {
	font-size: 1.5rem;
	margin-bottom: 20px;
}

ul.list-unstyled li {
	margin-bottom: 10px;
}

.social-media li {
	display: inline-block;
	margin-right: 10px;
}

.social-media li:last-child {
	margin-right: 0;
}

.social-media a {
	color: #fff;
	font-size: 1.5rem;
}

.social-media a:hover {
	color: #007bff;
}

hr {
	border-color: #555;
	margin: 50px 0;
}

.text-center {
	text-align: center;
}

#map {
	width: 100%;
	height: 400px;
	float: right;
}

.paintball-button {
	background-color: blue;
	color: white;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	border-radius: 4px;
	animation: pulse 3s infinite;
}

@keyframes pulse {
	0% {
	  transform: scale(1);
	  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
	}
	70% {
	  transform: scale(1.3);
	  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}
	100% {
	  transform: scale(1);
	  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

/* Additional card styles */
.cards {
	border: none;
	margin-bottom: 30px;
	width: 75%;
	margin: 0 auto;
}

.cards-img-top {
	height: 200px;
	object-fit: cover;
}

.cards-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.cards-text {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

#google_translate_element {
	position: fixed;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	z-index: 1000;
	background: #f9f9f9;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

img.social-icon {
	width: 5%;
	height: 5%;
}

.modern-translate-widget {
	position: fixed;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #007bff, #0056b3);
	color: #fff;
	padding: 10px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	text-align: center;
	z-index: 1000;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
}

.modern-translate-widget select {
	background: #fff;
	color: #333;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 5px;
	font-size: 14px;
	margin-top: 5px;
}

.modern-translate-widget:hover {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
	transform: translateY(-50%) scale(1.05);
	transition: all 0.3s ease-in-out;
}

.modern-translate-widget select:focus {
	outline: none;
	border-color: #007bff;
}
.tabela {
    text-align: center;
    border: 2px solid #000;
    border-radius: 15px;
    border-collapse: collapse;
    float: right;
}
.tabela th, .tabela td {
    border: 1px solid #000;
    padding: 8px;
}
.gallery {
	padding: 50px 0;
	text-align: center;
  }
  
  .section-heading {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 30px;
  }
  
  .carousel {
	max-width: 800px;
	margin: 0 auto;
  }
  
  .carousel-inner img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .carousel-control-prev,
  .carousel-control-next {
	filter: invert(100%);
  }
  
