body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

header {
    background-color: #1a1a1a;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 20px;
    position: relative;
}

header .logo {
    font-size: 1.5em;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
    position: absolute;
    right: 20px;
	top:15px;
}

.burger span {
    background: white;
    height: 3px;
    margin: 4px;
    width: 25px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: row;
	
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
}

nav ul li a:hover {
    background-color: #575757;
    border-radius: 5px;
}

footer {
    background-color: #1a1a1a;
    color: white;
    padding: 20px 0;
	text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
}

.footer-section {
    flex: 1;
    margin: 0 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section ul li {
    margin: 0 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ccc;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}

/* FOOTER LAYOUT */
.site-footer {
  background: #1a1a1a;
  border-top: 1px solid #e5e5e5;
  padding: 3px 42px 13px;
  position: relative;
  color: #E5E5E5;
  font-size: 0.95rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

/* BIO COLUMN */
.footer__bio {
  flex: 1 1 250px;
}
.footer__bio h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.footer__bio p {
  line-height: 1.6;
  color: #E5E5E5;
}

/* POSTS COLUMN */
.footer__posts {
  flex: 1 1 300px;
}
.footer__posts h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.footer__posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__posts li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer__posts img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 0.75rem;
  border-radius: 4px;
}
.footer__posts a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.footer__posts a span {
  vertical-align: middle;
}

/* BACK-TO-TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: none;         /* toggle this with JS */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
/* show when JS adds “.show” */
.back-to-top.show {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}


.hero {
    background: url('/image/youtube/churssco-fishing-guaira-car-fixing-jpg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 12px 189px;
    min-height: 70vh;
    max-height: 67vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 20px;
    max-width: 90%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 33%;
    transform: translate(-27%, -50%);
}

.hero.no-content .hero-content {
    display: none; /* Hide the text box if it has no content */
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.carousel-item img {
    width: 100%;
    vertical-align: top;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.carousel-caption h3 {
    margin: 0;
	font-size: 2.0rem;
}

.carousel-caption p {
    margin: 0;
}

.carousel-caption a {
    color: white;
    text-decoration: underline;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2em;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.youtube-video{
    position: relative;
    cursor: pointer;
}

.youtube-video img {
    width: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: url('/image/play-button.png') center/cover no-repeat;
}

.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2em;
    color: white;
    cursor: pointer;
}
.content-blocks {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.content-block {
    position: relative;
    width: 50%; /* 50% width for larger screens */
    background-size: cover;
    background-position: center;
    height: 300px;
    text-decoration: none;
    color: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
	cursor: pointer;
}

.content-block video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content-block-text {
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
	font-size: 2rem;
    z-index: 1;
}

.text-block {
    background-color: white;
    color: black;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.text-block .text-content {
    max-width: 1200px; /* Adjust as needed */
    text-align: left;
}

.text-block h2 {
    font-size: 2.5em; /* Adjust font size as needed */
    margin-bottom: 10px;
}

.text-block hr {
    width: 50%;
    border: 1px solid black;
    margin: 0 auto 20px auto; /* Center and add bottom margin */
}

.text-block p {
    font-size: 1.2em; /* Adjust font size as needed */
}

.history-facts-block {
    padding: 40px 20px;
    background-color: #fff;
    margin: 0px auto;
    max-width: 1000px;
    border-radius: 8px;
}

.block-headline {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: left; /* Align the headline to the left */
}

.link-list-block {
    padding: 0px 20px;
    margin: 0px auto;
    max-width: 830px;
}


.block-text {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.link-list {
    list-style: none;
    padding: 0;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.link-content {
    flex-grow: 1;
    margin-right: 20px; /* Space between content and thumbnail */
}

.link-headline {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.link-description {
    font-size: 1.1em;
    margin-bottom: 5px;
}

a.youtube-link, a.facebook-link, a.instagram-link {
    color: #e1306c; /* Generic link color, change as needed */
    font-size: 1.2em;
    text-decoration: none;
}

a.youtube-link:hover, a.facebook-link:hover, a.instagram-link:hover {
    text-decoration: underline;
}

.link-list-thumbnail {
    max-width: 100px; /* Width of the thumbnail */
    max-height: 80px; /* Height of the thumbnail */
    background-position: center;
    background-size: cover;
    flex-shrink: 0;
}

.link-list-thumbnail img{
	max-width: 100px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
	.link-list-thumbnail{
		display:none;
	}
    .link-list-block {
        padding: 20px;
    }

    .block-text, .link-description {
        font-size: 1em;
    }

    .link-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon, .thumbnail {
        width: 100%; /* Full width on small screens */
        margin-bottom: 10px; /* Space below icons and thumbnails */
    }

    .link-content {
        margin-right: 0; /* No right margin on small screens */
    }
}

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    flex: 1;
    min-width: 300px; /* Ensure the columns don't get too small */
    max-width: 50%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.culumn .info{
	background-color: #000;
}
.column h3 {
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
	margin: 0;
}

.content-item {
    margin-bottom: 20px;
}

.content-item h4 {
    margin: 10px 0 10px;
    font-size: 1.5em;
}

.content-item p {
    margin: 0;
    font-size: 1em;
}

.column:nth-child(2n) {
    background-color: #f9f9f9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .block-headline {
        font-size: 2em;
    }

    .columns {
        flex-direction: column;
    }

    .column {
        max-width: 100%;
    }
}

.new-block {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;
    padding: 20px;
    background-color: #fff;
    margin: 0px auto;
    max-width: 1200px;
    flex-wrap: wrap; /* Allow wrapping for better alignment */
}

.headline {
    font-size: 2em;
    margin-bottom: 10px;
    position: relative;
    display: block; /* Ensure the headline is a block element */
    width: 100%; /* Ensure the headline spans the full width */
}

.half-underline {
    width: 50%;
    height: 1px;
    background-color: #000;
	text-align: left; /* Align the underline to the left */
}

.new-block p {
    font-size: 1em;
}

.video-container-youtube {
    flex: 0 1 40%; /* Adjust as needed */
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.video-link {
    display: block;
    position: relative;
}

.video-thumbnail {
    width: 100%;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: url('/image/play-button.png') center/cover no-repeat;
    pointer-events: none;
}

.video-link:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.text-content {
    flex: 1;
    padding-right: 20px; /* Adjust as needed */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-content-dark {
    flex: 1;
    padding-right: 20px; /* Adjust as needed */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
	color:#fff;
	background-color: #333;
}

@media (max-width: 768px) {
    .new-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .text-content {
        padding-right: 0;
    }

    .video-container-youtube {
        margin-top: 20px;
        width: 100%;
    }
}

.full-width-block {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px; /* Add gap between buttons */
}

.filter-btn {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    flex: 0 1 auto; /* Allow buttons to shrink and grow */
    text-align: center; /* Center the text */
}

.filter-btn:hover {
    background-color: #575757;
}

.filter-btn.active {
    background-color: #575757;
}

.project-block {
    display: none; /* Initially hide all project blocks */
}

.project-block.active {
    display: flex; /* Show active project blocks */
}

.text-image-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: black;
    padding: 20px 184px;
    box-sizing: border-box;
}
.text-image-block-dark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 20px 184px;
    box-sizing: border-box;
}

.text-image-block .text-content {
    flex: 1;
}

.text-image-block .image-content {
    flex: 0 0 auto;
    margin-left: 20px;
}

.text-image-block img {
    max-width: 390px;
    height: auto;
    display: block;
}

.text-image-block-dark .text-content {
    flex: 1;
}

.text-image-block-dark .image-content {
    flex: 0 0 auto;
    margin-left: 20px;
}

.text-image-block img {
    max-width: 390px;
    height: auto;
    display: block;
}

.text-content hr {
    width: 50%;
    border: 1px solid black;
    margin: 0; /* Remove default margins */
    align-self: flex-start; /* Aligns the line to the left */
}
.text-content-dark hr {
    width: 50%;
    border: 1px solid white;
    margin: 0; /* Remove default margins */
    align-self: flex-start; /* Aligns the line to the left */
}

.text-content h2 {
    font-size: 2.5em; /* Adjust font size as needed */
    margin-bottom: 10px;
}
.text-content-dark h2 {
    font-size: 2.5em; /* Adjust font size as needed */
    margin-bottom: 10px;
}

.gallery-section {
    text-align: left;
    padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.gallery-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.gallery-item {
    flex: 1 1 calc(33% - 20px); /* Adjust width as needed */
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: "Click to enlarge";
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 0.9em;
    display: none;
}

.gallery-item:hover::after {
    display: block;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 20px); /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%; /* Full width for very small screens */
    }
}

/* Existing CSS */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Change overflow to hidden */
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 20px); /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%; /* Full width for very small screens */
    }
}


.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Add space between the social links */
    padding: 20px;
    background-color: #f0f0f0;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33%; /* Set the width of the social icons to 33% */
    height: 100px; /* Set the height of the social icons */
    text-decoration: none;
}

.social-link img {
    max-width: 60px; /* Adjust the size of the icons */
    height: auto;
}

.contact-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #e0e0e0;
}

.contact-block {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: calc(33.33% - 40px); /* 33.33% width minus gap */
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: black;
}

.contact-block img {
    max-width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.contact-block h3 {
    margin: 10px 0;
}

.video-block-full {
    position: relative;
    width: 100%;
    height: 60vh; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* background-color: black; /* Fallback color */
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: white;
    max-width: 600px; /* Adjust as needed */
}

.video-content h2 {
    font-size: 3em; /* Adjust font size as needed */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    margin-bottom: 10px;
}

.video-content .video-link {
    font-size: 1.5em; /* Adjust font size as needed */
    color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    text-decoration: underline;
    transition: color 0.3s;
}

.video-content .video-link:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .content-block {
        width: 100%; /* 100% width for smaller screens */
    }

    .filter-btn {
        flex: 1 1 auto; /* Allow buttons to shrink and grow on smaller screens */
    }
	
	.text-image-block {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background-color: white;
		color: black;
		padding: 20px;
		box-sizing: border-box;
	}

    .text-image-block .image-content {
        display: none; /* Hide image on mobile devices */
    }
	.text-image-block-dark {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background-color: #333;
		color: white;
		padding: 20px;
		box-sizing: border-box;
	}

    .text-image-block-dark .image-content {
        display: none; /* Hide image on mobile devices */
    }

     .burger {
        display: flex;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1a1a1a;
        padding: 0;
        margin-top: 20px; /* Adjust to add space between header and menu */
    }

    nav ul.show {
        display: block;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }
	
	.video-content {
        padding: 10px;
        text-align: left; /* Align text to the left */
    }

    .video-content h2 {
        font-size: 2em; /* Adjust for smaller screens */
    }

    .video-content .video-link {
        font-size: 1.2em; /* Adjust for smaller screens */
    }
}
/* Fonts */
.titillium-web-extralight {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.titillium-web-light {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.titillium-web-regular {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.titillium-web-semibold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.titillium-web-bold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.titillium-web-black {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.titillium-web-extralight-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.titillium-web-light-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.titillium-web-regular-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.titillium-web-semibold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.titillium-web-bold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: italic;
}


