/* Sponsors section styles */
.sponsors {
  text-align: center;
  margin: 60px 0;
}

.sponsors h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

.sponsor-logo {
  max-height: 60px;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.sponsor-logo:hover {
  transform: scale(1.05);
}

.sponsor-note {
  font-size: 16px;
  color: #aaa;
}
/* General styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Menu toggle button styles */
.menu-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 101; /* Ensure button stays above video */
    cursor: pointer;
}

.menu-toggle img {
    width: 40px; /* Adjust icon size */
}

/* Hidden menu styles */
.menu-items {
    position: fixed;
    top: 0;
    right: -100%; /* Initially hidden off-screen */
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    color: #fff;
    z-index: 100;
    transition: right 0.3s ease; /* Smooth slide-in transition */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.menu-items a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.menu-items a:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Light background on hover */
    color: #000;
    border-radius: 5px; /* Rounded corners on hover */
}

/* Desktop navigation styles */
.desktop-nav {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent; /* Transparent by default */
    color: #fff;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

.desktop-nav.scrolled {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent when scrolled */
}

.desktop-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.desktop-nav a:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Light background on hover */
    color: #000;
    border-radius: 5px; /* Rounded corners on hover */
}
/* Homepage */
/* Video header styles */
.video-header {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center; /* Center content vertically */
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure video covers entire container */
}

/* SEO heading styles */
.seo-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0); /* Transparent text */
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    z-index: 10; /* Ensure heading stays above video */
}

/* Logo styles */
.logo {
    position: absolute;
    width: 400px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Ensure logo stays above video */
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    background-color: #222;
    overflow: hidden;
    height: 400px; /* Fixed height to prevent height changes */
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%; /* 100% * number of slides */
}

.mySlides {
    flex: 0 0 100%; /* Each slide takes 100% of the container width */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    display: flex;
    align-items: center;
    width: 100%; /* Ensure content takes full width */
    height: 100%; /* Ensure content takes full height */
    padding: 20px;
    box-sizing: border-box;
}

.image {
    width: 45%; /* Adjust width as needed */
    height: auto; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 20px 20px; /* Margins for top, bottom, and left */
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio */
}

.text-content {
    width: 50%; /* 50% of the container width */
    padding: 20px;
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content h2 {
    font-size: 16px;
    color: #ccc;
}

.text-content h1 {
    font-size: 36px;
    color: #fff;
}

.text-content p {
    font-size: 18px;
    color: #ccc;
}

.see-project {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
}

.see-project:hover {
    transform: scale(1.02); /* Grow text slightly on hover */
    color: #aaa; /* Change color on hover */
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 1000;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 3px 0 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Main content styles */
main {
    padding: 60px 20px;
}

.services, .portfolio, .contact {
    padding: 60px 0;
    text-align: center;
}

.services h2, .portfolio h2, .contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Footer styles */
.footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Add this section to the bottom of your styles.css file */


/* General styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Menu toggle button styles */
.menu-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 101; /* Ensure button stays above video */
    cursor: pointer;
    display: none; /* Hide by default */
}

.menu-toggle img {
    width: 40px; /* Adjust icon size */
}

/* Hidden menu styles */
.menu-items {
    position: fixed;
    top: 0;
    right: -100%; /* Initially hidden off-screen */
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    color: #fff;
    z-index: 100;
    transition: right 0.3s ease; /* Smooth slide-in transition */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.menu-items a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.menu-items a:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Light background on hover */
    color: #000;
    border-radius: 5px; /* Rounded corners on hover */
}

/* Desktop navigation styles */
.desktop-nav {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent; /* Transparent by default */
    color: #fff;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

.desktop-nav.scrolled {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent when scrolled */
}

.desktop-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.desktop-nav a:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Light background on hover */
    color: #000;
    border-radius: 5px; /* Rounded corners on hover */
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none !important; /* Force hide the desktop menu on mobile*/
    }
    
}

    .menu-toggle {
        display: none; /* Hide the menu button on desktop */
    }

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show the menu button on mobile */
    }

    .menu-items {
        display: flex; /* Show the mobile menu */
    }

    .desktop-nav {
        display: none; /* Hide the desktop menu */
    }

    .video-header {
        align-items: center; /* Center content vertically on mobile */
    }

    .video-container video.desktop-video {
        display: none; /* Hide desktop video on mobile */
    }

    .video-container video.mobile-video {
        display: block; /* Show mobile video */
        object-fit: cover; /* Ensure video covers entire container */
        object-position: 55% 60%; /* Center the video horizontally and move it a bit to the left */
    }
    .slideshow-container {
        display: none; /* Hide the slideshow on mobile devices */
    }

    /* Adjust SEO heading for mobile */
    .seo-heading {
        font-size: 24px;
    }

    /* Adjust logo size for mobile */
    .logo {
        max-width: 70%; /* Adjusted size for mobile */
        max-height: 50%; /* Adjusted height for mobile */
    }

    /* Mobile slideshow styles */
    .slideshow-container {
        height: auto; /* Allow height to adjust based on content */
    }

    .mySlides {
        flex-direction: column; /* Stack items vertically */
        text-align: center; /* Center text */
    }

    .image {
        width: 100%; /* Full width on mobile */
        margin: 0; /* Remove margins */
    }

    .text-content {
        display: none; /* Hide text content on mobile */
    }

    /* Hide "See Project" button on mobile */
    .see-project {
        display: none; /* Hide the button */
    }

    /* Hide Emmy images on mobile */
    .mySlides .image img[alt="Emmy"] {
        display: none;
    }

    /* Mobile-specific images */
    .mySlides:nth-child(1) .image img:not([alt="Emmy"]) {
        content: url('assets/Bozikmobile.jpg');
    }

    .mySlides:nth-child(2) .image img:not([alt="Emmy"]) {
        content: url('assets/indismobile.jpg');
    }

    .mySlides:nth-child(3) .image img:not([alt="Emmy"]) {
        content: url('assets/wwirmobile.jpg');
    }
}
/* Projects Page */
.projects-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.project {
    display: flex;
    flex-direction: row;
    margin-bottom: 40px;
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
}

.project img {
    width: 40%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.project-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.project-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-info .see-project {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
}

.project-info .see-project:hover {
    transform: scale(1.02);
    color: #aaa;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .project {
        flex-direction: column;
        align-items: center;
    }

    .project img {
        width: 100%;
        margin-bottom: 20px;
    }

    .project-info h2 {
        text-align: center;
    }
}
 /* Additional styling specific to the Projects page */
 body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.projects-header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/backgrounds/headerbackground.jpg') center/cover no-repeat;
    color: #fff;
    position: relative;
    background-position: center 25%;
}

.projects-header h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.projects-header p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 450px; /* Adjusted card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures content is spaced evenly */
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Aligns content inside the card */
    height: 100%;
}

.project-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.project-info p {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 15px;
}

.project-info .see-project {
    display: inline-block;
    padding: 10px 20px;
    background-color: #555;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto; /* Pushes the button to the bottom */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.project-info .see-project:hover {
    background-color: #777;
}

/* Contact Page */
.contact-page {
    padding: 30px 10px;
    padding-bottom: 0; /* Removed bottom padding */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Ensure items stack at the top */
    align-items: center;
    margin-bottom: 90px;
}

.contact-container {
    margin-top: 80px; /* Brings the contact form higher */
    background-color: #2e2e2e;
    padding: 40px; /* General padding around the content */
    padding-bottom: 0; /* Ensures no extra padding at the bottom */
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.contact-container input[type="text"],
.contact-container input[type="email"],
.contact-container textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #555;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    color: #fff;
    background-color: #333; /* Match with the container background */
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-container input[type="text"]::placeholder,
.contact-container input[type="email"]::placeholder,
.contact-container textarea::placeholder {
    color: #aaa; /* Light grey placeholder text */
}

.contact-container input[type="text"]:focus,
.contact-container input[type="email"]:focus,
.contact-container textarea:focus {
    border-color: #462923; /* Highlight the border on focus */
}

.contact-container button {
    width: 100%;
    padding: 15px;
    background-color: #462923;
    border: 2px solid #462923;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-bottom: 10px;
}

.contact-container button:hover {
    background-color: #37201c;
    border-color: #37201c;
}

/* Additional responsive styles for contact page */
@media (max-width: 768px) {
    .contact-page {
        padding: 30px 10px;
        padding-bottom: 0; /* Removed bottom padding */
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Ensure items stack at the top */
        align-items: center;
        margin-bottom: 290px;
    }

    .contact-container {
        max-width: 100%;
        margin-top: 100px;
        padding: 20px;
    }

    .contact-container h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .contact-container input[type="text"],
    .contact-container input[type="email"],
    .contact-container textarea {
        font-size: 14px;
        padding: 10px;
        margin-bottom: 15px;
    }

    .contact-container button {
        font-size: 16px;
        padding: 12px;
    }
}
/* Header for About Page */
.about-header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/backgrounds/aboutimg.jpg') center/cover no-repeat;
    color: #fff;
}

.about-header h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.about-header p {
    font-size: 24px;
    color: #ccc;
}

/* About Page Content */
.about-content {
    display: flex;
    justify-content: space-between;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.about-text {
    width: 60%;
    color: #fff;
    line-height: 1.6;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ccc;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #aaa;
}

/* Image Styling */
.about-image {
    width: 35%;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Hyperlink styling for About page */
.about-text a {
    color: #ffd700; /* Gold color for the links */
    text-decoration: none; /* Remove the default underline */
    font-weight: bold; /* Make the links bold */
    transition: color 0.3s ease, border-bottom 0.3s ease; /* Smooth transition effects */
    border-bottom: 2px solid transparent; /* Border to indicate a link */
}

.about-text a:hover {
    color: #ffa500; /* Darker gold on hover */
    border-bottom: 2px solid #ffa500; /* Underline effect on hover */
}
/* BOZIK page styles */
.bozik-header {
  background: black;
  color: white;
  padding: 80px 20px 40px;
  text-align: center;
}

.bozik-header h1 {
  font-size: 60px;
  margin-bottom: 10px;
  letter-spacing: 3px;
}

.bozik-header .logline {
  font-size: 20px;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Center the video using a flexbox wrapper */
.video-center {
  display: flex;
  justify-content: center;
}
/* Video wrapper for responsive aspect ratio and centering */
.video-wrapper {
  max-width: 800px;
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.video-wrapper video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  display: block;
}

.bozik-content {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  color: white;
}

.bozik-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.bozik-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.still-gallery {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.still-gallery img {
  width: 300px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

/* Modal styles for lightbox */
.modal {
  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);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 768px) {
  .still-gallery img {
    width: 100%;
  }

  .bozik-header h1 {
    font-size: 40px;
  }

  .bozik-header .logline {
    font-size: 16px;
  }
}
/* Bozik title image style */
.bozik-title {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 2em;
}