/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Page Setup */
html, body {
    height: 100vh; /* Restrict to viewport height */
    overflow: hidden; /* Disable scrolling */
    background-color: black;
    color: white;
    font-family: Helvetica;
}

/* Prevent scrolling for the home page */
body.no-scroll {
    overflow: hidden; /* Disables scrolling */
    height: 100vh; /* Ensures the body doesn't extend beyond the viewport */
}

/* Moving Banner Style */
.moving-banner {
    width: 100vw;
    overflow: hidden;
    background-color: black;
    position: relative;
    padding-top: 10px;
}

/* Page Title Banner */
.page-title-banner {
    width: 100%;
    background-color: black;
    padding: 10px 0;
    text-align: center;
}

.page-title-banner h1 {
    color: white;
    opacity: 50%;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar {
    text-align: center;
    padding: 20px 0;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 30px;
}

.navbar ul li a {
    text-decoration: none;
    color: red;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.navbar ul li a:hover {
    opacity: 0.5;
}

/* Logo Section */
.image-logo-home {
    background-image: url('../Images/sinner logo/homelogooo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; /* Key change */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px; /* Minimum safe height */
    height: 60vh; /* Relative height instead of calc() */

    width: 100vw;
    position: relative;
    z-index: 1;
    margin: 0 auto; /* Center horizontally if needed */
}

/* Highlights Section */
.highlights-section {
    text-align: center;
    position: absolute;
    bottom: 40px;
    width: 100%;
}

.highlights-section h2 {
    font-size: 24px;
    color: red;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.highlights-section ul {
    list-style-type: none;
    padding: 0;
    font-size: 20px;
    color: gray;
}

.highlights-section ul li {
    display: inline;
    margin: 0 15px;
    transition: opacity 0.3s ease;
}

.highlights-section ul li:hover {
    opacity: 0.5;
}

/* Footer Section */
.footer {
    text-align: center;
    color: gray;
    opacity: 50%;
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

/* Allow scrolling while hiding the scrollbar */
body.portfolio-page {
    overflow: auto; /* Enable scrolling */
}

/* Hide the scrollbar without disabling scrolling */
body.portfolio-page::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Edge */
}

body.portfolio-page {
    -ms-overflow-style: none;  /* For Internet Explorer and Edge */
    scrollbar-width: none;     /* For Firefox */
}

/* Portfolio Images Section */
.portfolio-image {
    width: 100%; /* Full width */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin-bottom: 20px; /* Spacing between images */
}

/* Portfolio container and images */
.portfolio-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}


.portfolio-item {
    width: 100%; /* Ensure the items are full width */
    margin: 0;   /* Remove any margin */
    padding: 0;  /* Remove any padding */
}

.portfolio-item img {
    width: 100%; /* Full-width images */
    height: auto;
    display: block;
    margin: 0;   /* Remove margin between images */
    padding: 0;  /* Remove padding */
}

/* Moving Banner Style (Clickable Link) */
.banner-link {
    text-decoration: none;  /* This removes the underline */
    display: block;
}

.moving-banner {
    width: 100vw;
    overflow: hidden;
    background-color: black;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.banner-content {
    display: flex;
    white-space: nowrap;
    animation: scrollBanner 20s linear infinite;
}

.banner-content span {
    font-weight: bold;
    font-size: 60px;
    text-transform: uppercase;
    color: red;
    display: inline-block;
    margin-right: 100px;
}

a{
  text-decoration: none;
}

.clickLinkTitle{
  opacity: 1;
transition: opacity 0.3s ease;
}

.clickLinkTitle:hover{
  opacity: 50%;
}

/* Animation Keyframes for Continuous Scrolling */
@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-110%);
    }
}

/* Specific to Portfolio Page */
.portfolio-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.portfolio-page .portfolio-container {
    flex-grow: 1; /* This ensures the container grows to fill available space, pushing the footer down */
}

.portfolio-page .footer {
    position: relative; /* Reset to default relative positioning */
    margin-top: 20px; /* Adds some spacing between the last image and the footer */
}

/* Portfolio container and images */
.portfolio-container {
    display: flex;
    flex-wrap: wrap; /* Keep this for wrapping items */
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0; /* Remove any gaps between items */
}

.portfolio-item {
    width: 100%; /* Ensure the items are full width */
    margin: 0;   /* Remove any margin */
    padding: 0;  /* Remove any padding */
    position: relative; /* Keep the relative positioning for hover effect */
}

.portfolio-item img {
    width: 100%; /* Full-width images */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0;   /* Remove margin between images */
    padding: 0;  /* Remove padding */
    transition: opacity 0.3s ease; /* Transition for hover effect */
}

.portfolio-item:hover img {
    opacity: 0.5; /* Image drops to 50% opacity when hovering */
}

.portfolio-item .title {
    font-size: clamp(40px, 4.5vw, 60px); /* Matches size from MXDVS and JoostKlein pages */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    text-align: center;
    white-space: normal; /* Allows wrapping for long titles */
}

.portfolio-item:hover .title {
    opacity: 1; /* Title appears when hovering */
}

/* Specific to CONTACTINFO */
.infofo{
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the content horizontally */
  justify-content: center; /* Centers the content vertically */
  position: absolute; /* Allow precise positioning */
  top: 50%; /* Push down by half the viewport height */
  left: 50%; /* Push to the right by half the viewport width */
  transform: translate(-50%, -50%); /* Offset to truly center the element */
  text-align: left; /* Ensures text inside is centered */
  font-family: 'Helvetica', sans-serif;
  font-weight: bold;
  color: white;
}

.sentence {
    font-size: 30px;
    padding-bottom: 5px;
    white-space: nowrap; /* Prevents text from wrapping onto multiple lines */
    overflow: hidden; /* Ensures it doesn't overflow the container */
    text-overflow: ellipsis; /* Adds "..." if text overflows (optional) */
    max-width: 100%; /* Ensures it stays within the viewport width */
}

.email{
  font-size: 20px;
}

/* VICINITY PAGE!!!!! */
/* Specific to highlights on landing page */

/* Middle of Page Layout */
.middleOfPage {
    display: flex;
    height: calc(100vh - 50px); /* Adjust to make space for the footer */
    overflow: hidden; /* Prevent vertical scrolling */
    position: relative;
}

/* Fixed text block on the left */
.TextLeft {
    position: fixed; /* Keeps it in place while the image scrolls */
    top: 60px; /* Position below the banner */
    left: 0;
    width: 20vw; /* Fixed width for the text block */
    height: calc(100vh - 120px); /* Matches the height between the banner and footer */
    padding: 2vh 1vw; /* Inner padding */
    font-size: 1.2vw; /* Responsive font size */
    line-height: 1.5;
    background-color: rgba(0, 0, 0, 0.8); /* Optional semi-transparent background */
    color: white;
    z-index: 10; /* Ensure it stays above the image */
    overflow-y: auto; /* Allow vertical scrolling for long text */
    display: flex;
    flex-direction: column; /* Stack logo and text vertically */
    align-items: left; /* Center-align the content */
    text-align: left; /* Center-align the text */
}

/* Style for the logo */
.LogoLeftTop img {
    max-width: 95%; /* Scale down the logo to fit within the container */
    height: auto;
    margin-bottom: 1rem; /* Add spacing between the logo and text */
}

.campaignTitle{
  font-size: 1.3vw;
  font-weight: bolder;
  line-height: 1;
}

/* Image on the right */
.ImagesRight {
    margin-left: 20vw;
    width: 80vw;
    height: 100%; /* Full height */
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.ImagesRight img {
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer (Same as Landing Page) */
.footer {
    position: absolute; /* Keep it at the bottom */
    bottom: 10px; /* Matches landing page's bottom spacing */
    width: 100%;
    text-align: center;
    color: gray;
    opacity: 50%;
    font-size: 12px;
    background-color: black;
}

/* Base container for the images */
.ImagesRight {
    margin-left: 20vw;
    width: 80vw; /* Occupies 80% of the viewport width */
    height: 100%; /* Full height */
    display: flex;
    align-items: center;
    overflow-x: overlay; /* Scrollbar overlays content without shifting it */
    position: relative;
}

/* Hover behavior to show scrollbar */
.ImagesRight:hover {
    overflow-x: overlay; /* Always overlay the scrollbar, even on hover */
}

/* Style the images inside the container */
.ImagesRight img {
    height: 100%; /* Full height of the container */
    object-fit: cover; /* Prevents distortion */
    display: block; /* Avoid inline element gaps */
    margin: 0; /* Ensures no additional spacing */
    padding: 0; /* Resets padding */
    transition: none; /* Disables scaling or movement transitions */
}

/* Customize scrollbar (optional for overlay appearance) */
.ImagesRight::-webkit-scrollbar {
    height: 8px; /* Horizontal scrollbar height */
}

.ImagesRight::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5); /* Light semi-transparent scrollbar */
    border-radius: 4px; /* Rounded scrollbar for a modern look */
}

.ImagesRight::-webkit-scrollbar-track {
    background: transparent; /* Invisible track background */
}

/* Ensure no vertical scrolling */
html, body {
    height: 100vh;
    margin: 0;
    overflow: hidden;
    background-color: black;
}

/* Remove hyperlink styling for Highlights section links */
.highlights-section ul li a {
    text-decoration: none; /* Remove underline */
    color: gray; /* Match non-link text color */
    transition: opacity 0.3s ease; /* Keep the hover effect consistent */
}

/* Optional: Add hover styling for consistency */
.highlights-section ul li a:hover {
    opacity: 0.5; /* Same hover effect as non-link items */
}

/* Wrapper to align content */
.ContentWrapper {
  display: flex;
  align-items: flex-start; /* Aligns the top edges */
  width: 100%;
  height: 100%;
}

/* Adjustments to TextLeft */
.TextLeft {
  position: relative; /* Remove fixed positioning to allow flex alignment */
  top: 0; /* Reset offset caused by `top` */
  height: auto; /* Adjust height dynamically */
  margin-right: 2vw; /* Add spacing between text and image */
}

/* Adjustments to ImagesRight */
.ImagesRight {
  flex-grow: 1; /* Allow it to take the remaining space */
  display: flex;
  align-items: flex-start; /* Align image with text */
}

/* Adjusted TextLeft styles */
.TextLeft {
    position: fixed; /* Keeps it in place */
    top: calc(60px + 10px); /* Adds 10px buffer below the banner */
    left: 0;
    width: 15vw; /* Reduced width for more image space */
    height: calc(100vh - (60px + 10px + 60px)); /* Accounts for the banner and footer height */
    padding: 2vh 1vw; /* Inner padding */
    font-size: 1vw; /* Responsive font size */
    line-height: 1.5;
    background-color: rgba(0, 0, 0, 0.8); /* Optional semi-transparent background */
    color: white;
    z-index: 10; /* Keep it above the image */
    overflow-y: auto; /* Allow vertical scrolling for long text */
    display: flex;
    flex-direction: column; /* Stack logo and text vertically */
    align-items: left; /* Align content to the left */
    text-align: left; /* Align text to the left */
}

/* Adjusted ImagesRight styles */
.ImagesRight {
    margin-left: 15vw; /* Matches the adjusted width of TextLeft */
    width: 85vw; /* Increased width to give the image more space */
    height: 100%; /* Full height */
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.ImagesRight img {
    height: 100%; /* Full height of the container */
    width: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensures the image fills the container without distortion */
    display: block; /* Avoid inline element gaps */
    margin: 0; /* Remove spacing around the image */
    padding: 0; /* Remove padding */
}

/* commercialwork landing page */
.split-container {
    display: flex;
    height: calc(100vh - 120px); /* Adjust for banner + footer height */
    width: 100vw;
  }

  .split {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    font-size: clamp(30px, 5vw, 80px);
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
  }

  .split.left {
    background-color: red;
    color: black;
  }

  .split.right {
    background-color: black;
    color: red;
  }

  .split.left:hover {
    color: black;
    background-color: red;
  }

  .split.right:hover {
    color: red;
    background-color: black;
  }

  .split.left:hover::before {
    content: "";
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background-color: red;
    z-index: -1;
  }

  .split.right:hover::before {
    content: "";
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background-color: black;
    z-index: -1;
  }

  .split-container .split.right h1 {
    color: red;
    text-decoration: none;
  }

  .split-container .split.right a {
    text-decoration: none;
    color: inherit;
  }

  .split-container .split.right a:hover {
    text-decoration: none;
    color: red;
    opacity: 50%;
  }

  .split-container .split.left h1 {
    color: black;
    text-decoration: none;
  }

  .split-container .split.left a {
    text-decoration: none;
    color: inherit;
  }

  .split-container .split.left a:hover {
    text-decoration: none;
    color: black;
    opacity: 50%;
  }

  .portfolio-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .portfolio-item {
    position: relative;
    width: 100%;
  }
  .portfolio-item img.main-image {
    width: 100%;
    height: auto;
    display: block;
  }
  .portfolio-item img.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    max-width: 80%;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .portfolio-item:hover img.main-image {
    opacity: 0.5;
  }
  .portfolio-item:hover img.logo-overlay {
    opacity: 1;
  }

  .portfolio-container {
				display: flex;
				flex-direction: column-reverse;
				align-items: center;
				width: 100%;
				margin: 0;
				padding: 0;
			}

			.portfolio-item {
				position: relative;
				width: 100%;
			}

			.portfolio-item picture,
			.portfolio-item img.main-image {
				width: 100%;
				height: auto;
				display: block;
			}

      .logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 60%;
  max-height: 60%;
  height: auto;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.portfolio-item:hover .logo-overlay {
  opacity: 1;
}

.portfolio-item:hover .main-image {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* Universal constraint box for logos */
.logo-overlay-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .logo-overlay-wrapper {
  opacity: 1;
}

.logo-overlay-wrapper img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.portfolio-item:hover .main-image {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* Navigation Buttons */
.buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 8px; /* Space between buttons */
}

.nav-button {
    padding: 12px 0; /* Reduced horizontal padding */
    text-decoration: none;
    color: white;
    background-color: black;
    border: 2px solid red;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%; /* Full width of container */
    min-width: 0; /* Allows buttons to shrink */
}

.nav-button:hover {
    background-color: red;
    color: black;
    border-color: red;
}

.TextLeft {
    position: fixed;
    top: calc(60px + 10px);
    left: 0;
    width: 15vw;
    height: calc(100vh - (60px + 10px + 60px));
    padding: 2vh 1vw;
    font-size: 1vw;
    line-height: 1.5;
    color: white;
    z-index: 10;
    overflow-y: auto; /* Enable vertical scrolling */
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;

    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.TextLeft::-webkit-scrollbar {
    display: none;
}

.buttons {
  flex-shrink: 0; /* Prevent buttons from shrinking */
}

/* Navbar Styles */
.navbar {
    text-align: center;
    padding: 20px 0;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 30px; /* Maintains the same spacing as before */
}

.navbar ul li a {
    text-decoration: none;
    color: red;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.navbar ul li a:hover {
    opacity: 0.5;
}

/* Contact Info Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin: 5px 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.5;
}

/* Main container for split layout */
.split-main-container {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: calc(100vh - 120px); /* Adjust based on banner/footer height */
    margin: 0;
    padding: 0;
}

/* Split links - now they control the sizing */
.split-link {
    flex: 1;
    display: flex;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

/* Split content containers */
.split-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: clamp(30px, 5vw, 80px);
}

/* Left split styles */
.split-link.left {
    background-color: red;
    color: black;
}

/* Right split styles */
.split-link.right {
    background-color: black;
    color: red;
}

/* Hover effects */
.split-link.left:hover {
    background-color: rgba(255, 0, 0, 0.9);
}

.split-link.right:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* ===== DESKTOP STYLES ===== */
.highlights-section {
    font-family: Helvetica;
}

.highlights-section ul.desktop-view {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-section ul.desktop-view li {
    margin-bottom: 12px;
}

.highlights-section ul.desktop-view a {
    color: gray;
    text-decoration: none;
    transition: color 0.3s;
}

.highlights-section ul.desktop-view a:hover {
    color: #555;
}

.highlights-section ul.mobile-view {
    display: none;
}

.image-logo-home {
    pointer-events: none; /* Disables all mouse interactions */
    user-select: none;    /* Prevents text selection */
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
    .highlights-section ul.desktop-view {
        display: none;
    }

    .highlights-section ul.mobile-view {
        display: block;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .highlights-section ul.mobile-view li {
        margin-bottom: 10px;
        overflow: hidden;
    }

    .scrolling-text {
        display: inline-block;
        white-space: nowrap;
        animation: scroll linear infinite;
        color: #000;
        text-decoration: none;
    }

    .scrolling-text:hover {
        animation-play-state: paused;
        opacity: 50%;
    }

    .scrolling-text span {
        display: inline-block;

    }

    .mobile-view li a {
      margin-bottom: 10px;

    }

    .campaignTitle{
      margin-top: 5px;
      margin-bottom: 5px;
    }



    /* Individual scrolling speeds */
    .scroll-slow {
        animation-duration: 20s;
        color: white;
        opacity: 100%;
    }
    .scroll-medium {
        animation-duration: 18s;
        color: white;
        opacity: 82%;
    }
    .scroll-fast {
        animation-duration: 15s;
        color: white;
        opacity: 64%;
    }
    .scroll-faster {
        animation-duration: 14s;
        color: white;
        opacity: 50%;
    }
    .scroll-fastest {
        animation-duration: 11s;
        color: white;
        opacity: 40%;
    }

    @keyframes scroll {
        0% { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }
}


/* Mobile layout */
@media (max-width: 768px) {
    .split-main-container {
        flex-direction: column;
        height: calc(100vh - 120px);
    }

    .split-link {
        width: 100%;
    }

    h1{
      font-size: 15vw;
    }
}

                /* Grid layout for images */
                .image-grid {
                  display: flex;
                  flex-direction: column;
                  width: 100%;
                  height: 100%;
                  overflow-y: auto;
                  padding: 10px;
                }

                .grid-row {
                  display: flex;
                  width: 100%;
                  margin-bottom: 10px;
                }

                .grid-row img {
                  width: calc(20% - 8px); /* 5 images per row with spacing */
                  height: auto;
                  margin-right: 10px;
                  object-fit: cover;
                }

                .grid-row img:last-child {
                  margin-right: 0;
                }

                /* Adjust the ImagesRight container */
                .ImagesRightt {
                  margin-left: 15vw;
                  width: 85vw;
                  height: 100%;
                  overflow-y: auto;
                }

                /* Hide scrollbar */
                .ImagesRightt::-webkit-scrollbar {
                  display: none;
                }

                .ImagesRightt {
                  -ms-overflow-style: none;
                  scrollbar-width: none;
                }

                /* Responsive adjustments */
                @media (max-width: 1200px) {
                  .ImagesRightt {
                    margin-left: 0;
                    width: 100%;
                    padding: 0;
                  }

                  .grid-row {
                    flex-wrap: wrap;
                  }

                  .grid-row img {
                    width: calc(50% - 5px); /* 2 images per row on mobile */
                    margin-bottom: 10px;
                  }
                }

@media (max-width: 768px) {
  .grid-row img {
    width: 100%; /* 1 image per row on very small screens */
  }
}

/* Mobile styles for Contact Info */
@media (max-width: 768px) {
    .infofo {
        width: 90%;
        text-align: center;
    }

    .sentence {
        white-space: normal;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .email {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .social-links a {
        font-size: 18px;
    }
}



/* Mobile Navbar Adjustments */
@media (max-width: 930px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .navbar ul li a {
        font-size: 30px;
    }
}

/* Mobile adjustments for title banner */
@media (max-width: 768px) {
    .page-title-banner h1 {
        font-size: 18px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 8px;
    }

    .nav-button {
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* For your specific campaign page layout */
@media (max-width: 1200px) {
    .buttons {
        margin-top: 20px;
        padding: 0; /* Match your text left padding */
        padding-left: 0;
        margin-left: 0;
        max-width: 100vw;
    }


    .nav-button {
        padding: 12px;
        padding-left: 0;
        margin-left: 0;
        text-decoration: none;
        color: white;
        background-color: black;
        border: 2px solid red;
        font-family: Helvetica, sans-serif;
        font-weight: bold;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        text-align: center;
        flex: 1; /* Makes buttons equal width */
        min-width: 0; /* Allows buttons to shrink */
    }
}

@media (max-width: 768px) {
  .split-container{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .split.left{
    grid-column: 1;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .split.right{
    grid-column: 1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}


@media (max-width: 1200px) {
  .middleOfPage {
  display: block;
  z-index: 2;
}

  .ContentWrapper{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2.3fr 1.5fr 0.1fr;
    background-color: black;
    padding: 0;
    margin: 0;
    bottom: 0px;
    height: 100vh;
    z-index: 2;
  }

  .ImagesRight {
    position: relative; /* Reset if needed */
    grid-column: 1;
    grid-row-start: 1;
    grid-row-end: 2;
    margin: 0; /* Matches the adjusted width of TextLeft */
    padding: 0;
    width: 100vw; /* Increased width to give the image more space */
  }

  /* Customize scrollbar (optional for overlay appearance) */
  .ImagesRight::-webkit-scrollbar {
      height: 0px; /* Horizontal scrollbar height */
  }

  .campaignTitle{
    font-size: 4.3vw;
    font-weight: bolder;
    line-height: 1;
  }

  .TextLeft{
    position: relative !important; /* <-- Critical! */
    grid-column: 1;
    grid-row-start: 2;
    grid-row-end: 3;
    background-color: black;
    top: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    padding: 0;
    font-size: 4vw; /* Responsive font size */
    line-height: 1.5;
    color: white;
    z-index: 0; /* Ensure it stays above the image */
    align-items: left; /* Center-align the content */

    padding-bottom: 100px;
    overflow-y: auto;
  }

  .campaignTitle{
    padding-left: 20px;
  }

  .textTextText {
    padding-left: 20px;
  }



  /* For Webkit-based browsers (Chrome, Safari) */
.TextLeft::-webkit-scrollbar {
  display: none;
}

  .LogoLeftTop{
    background-color: black;
    display: flex;
  justify-content: center; /* Horizontally center the image */
  align-items: center;     /* Vertically center if needed */
  }

  .LogoLeftTop img {
      width: 45%;
      margin-bottom: 0; /* Add spacing between the logo and text */
      padding: 0;
      padding-top: 10px;
      padding-bottom: 10px;
  }

  .footer{
    grid-column: 1;
    grid-row-start: 3;
    grid-row-end: 4;
    padding: 0;
    margin: 0;
    z-index: 0;
  }

  Vicinity.html .portfolio-page{
    bottom: 0;
  }

}



/* COMMERCIALMUSIC PHONE IMAGES */
@media only screen and (max-width: 768px) {
  .image-wrapper img[alt="BOKOEDRO"] { content: url('../Images/musicCommercial/BOKOEDROphone.webp'); }
  .image-wrapper img[alt="BRUNZYN"] { content: url('../Images/musicCommercial/BRUNOphone.webp'); }
  .image-wrapper img[alt="CATALYST"] { content: url('../Images/musicCommercial/CATALYSTphone.webp'); }
  .image-wrapper img[alt="YOSHIKO"] { content: url('../Images/musicCommercial/GIADAphone.webp'); }
  .image-wrapper img[alt="JOOST KLEIN"] { content: url('../Images/musicCommercial/JOOSTphone.webp'); }
  .image-wrapper img[alt="NAMASENDA"] { content: url('../Images/musicCommercial/NAMASENDAphone.webp'); }
  .image-wrapper img[alt="RIOTSHIFT"] { content: url('../Images/musicCommercial/RIOTSHIFTphone.webp'); }
  .image-wrapper img[alt="SKEMER"] { content: url('../Images/musicCommercial/SKEMERphone.webp'); }
  .image-wrapper img[alt="SLAUGHTERHOUSE"] { content: url('../Images/musicCommercial/SLAUGHTERHOUSEphone.webp'); }
  .image-wrapper img[alt="VIEZE ASBAK"] { content: url('../Images/musicCommercial/VIEZE ASBAKphone.webp'); }
  .image-wrapper img[alt="YZOMANDIAS"] { content: url('../Images/musicCommercial/YZOMANDIASphone.webp'); }
  .image-wrapper img[alt="NIKTENDO"] { content: url('../Images/musicCommercial/NIKTENDOphone.webp'); }
}

/* PORTFOLIO WORK PHONE IMAGES */
@media only screen and (max-width: 768px) {

  .image-wrapper img[alt="FRERIK"] { content: url('../Images/3pics PORTFOLIO/(2) FRERIK.webp'); }
  .image-wrapper img[alt="ODUNAYO"] { content: url('../Images/3pics PORTFOLIO/(3) ODUNAYO.webp'); }
  .image-wrapper img[alt="WANNES"] { content: url('../Images/3pics PORTFOLIO/(4) WANNES.webp'); }
  .image-wrapper img[alt="DAAN"] { content: url('../Images/3pics PORTFOLIO/(5) DAAN.webp'); }
  .image-wrapper img[alt="BORAN"] { content: url('../Images/3pics PORTFOLIO/(6) BORAN.webp'); }
  .image-wrapper img[alt="MARIE"] { content: url('../Images/3pics PORTFOLIO/(7) MARIE.webp'); }
  .image-wrapper img[alt="MEREL"] { content: url('../Images/3pics PORTFOLIO/(8) MEREL.webp'); }
  .image-wrapper img[alt="NICOLA"] { content: url('../Images/3pics PORTFOLIO/(9) NICOLA.webp'); }
  .image-wrapper img[alt="VICTOR"] { content: url('../Images/3pics PORTFOLIO/(10) VICTOR.webp'); }
  .image-wrapper img[alt="TERESA"] { content: url('../Images/3pics PORTFOLIO/(11) TERESA.webp'); }
  .image-wrapper img[alt="ANNELIEKE"] { content: url('../Images/3pics PORTFOLIO/(12) ANNELIEKE.webp'); }
  .image-wrapper img[alt="IGNACE"] { content: url('../Images/3pics PORTFOLIO/(13) IGNACE.webp'); }
  .image-wrapper img[alt="SAM"] { content: url('../Images/3pics PORTFOLIO/(14) SAM.webp'); }
  .image-wrapper img[alt="ADHAN"] { content: url('../Images/3pics PORTFOLIO/(15) ADHAN.webp'); }
  .image-wrapper img[alt="NIKI"] { content: url('../Images/3pics PORTFOLIO/(16) NIKI.webp'); }
  .image-wrapper img[alt="AKUMA"] { content: url('../Images/3pics PORTFOLIO/(17) AKUMA.webp'); }
  .image-wrapper img[alt="PURNA"] { content: url('../Images/3pics PORTFOLIO/(18) PURNA.webp'); }
  .image-wrapper img[alt="EMMA"] { content: url('../Images/3pics PORTFOLIO/(19) EMMA.webp'); }
  .image-wrapper img[alt="BABETTE"] { content: url('../Images/3pics PORTFOLIO/(20) BABETTE.webp'); }
  .image-wrapper img[alt="THOR"] { content: url('../Images/3pics PORTFOLIO/(21) THOR.webp'); }
  .image-wrapper img[alt="LUCA"] { content: url('../Images/3pics PORTFOLIO/(22) LUCA.webp'); }
  .image-wrapper img[alt="SUMI"] { content: url('../Images/3pics PORTFOLIO/(23) SUMI.webp'); }
  .image-wrapper img[alt="ELISABETH"] { content: url('../Images/3pics PORTFOLIO/(24) ELISABETH.webp'); }
  .image-wrapper img[alt="FUSUN"] { content: url('../Images/3pics PORTFOLIO/(25) FUSUN.webp'); }
  .image-wrapper img[alt="MAYA"] { content: url('../Images/3pics PORTFOLIO/(26) MAYA.webp'); }
  .image-wrapper img[alt="ANDREAS"] { content: url('../Images/3pics PORTFOLIO/(27) ANDREAS.webp'); }
  .image-wrapper img[alt="ZIRTHE"] { content: url('../Images/3pics PORTFOLIO/(28) ZIRTHE.webp'); }
  .image-wrapper img[alt="ALEX"] { content: url('../Images/3pics PORTFOLIO/(29) ALEX.webp'); }
  .image-wrapper img[alt="AURORA"] { content: url('../Images/3pics PORTFOLIO/(30) AURORA.webp'); }
  .image-wrapper img[alt="AKHAN"] { content: url('../Images/3pics PORTFOLIO/(31) AKHAN.webp'); }
  .image-wrapper img[alt="FREIA"] { content: url('../Images/3pics PORTFOLIO/(32) FREIA.webp'); }
  .image-wrapper img[alt="CHLEO"] { content: url('../Images/3pics PORTFOLIO/(33) CHLEO.webp'); }
  .image-wrapper img[alt="CRACK"] { content: url('../Images/3pics PORTFOLIO/(34) CRACK.webp'); }
  .image-wrapper img[alt="MAX"] { content: url('../Images/3pics PORTFOLIO/(35) MAX.webp'); }
  .image-wrapper img[alt="JOOST"] { content: url('../Images/3pics PORTFOLIO/(36) JOOST.webp'); }
  .image-wrapper img[alt="PARSA"] { content: url('../Images/3pics PORTFOLIO/(37) PARSA.webp'); }
  .image-wrapper img[alt="MARTIJN"] { content: url('../Images/3pics PORTFOLIO/(38) MARTIJN.webp'); }
  .image-wrapper img[alt="MIKE"] { content: url('../Images/3pics PORTFOLIO/(39) MIKE.webp'); }
  .image-wrapper img[alt="LOLA"] { content: url('../Images/3pics PORTFOLIO/(40) LOLA.webp'); }
  .image-wrapper img[alt="MATI"] { content: url('../Images/3pics PORTFOLIO/(41) MATI.webp'); }
  .image-wrapper img[alt="ELLA"] { content: url('../Images/3pics PORTFOLIO/(42) ELLA.webp'); }
  .image-wrapper img[alt="BENJAMIN"] { content: url('../Images/3pics PORTFOLIO/(43) BENJAMIN.webp'); }
  .image-wrapper img[alt="FRANCIS"] { content: url('../Images/3pics PORTFOLIO/(44) FRANCIS.webp'); }
  .image-wrapper img[alt="JAKUB"] { content: url('../Images/3pics PORTFOLIO/(45) YZOMANDIAS.webp'); }
  .image-wrapper img[alt="KYRA"] { content: url('../Images/3pics PORTFOLIO/(46) KYRA.webp'); }
  .image-wrapper img[alt="GIADA"] { content: url('../Images/3pics PORTFOLIO/(47) GIADA.webp'); }
  .image-wrapper img[alt="LOWRI"] { content: url('../Images/3pics PORTFOLIO/(48) LOWRI.webp'); }
  .image-wrapper img[alt="APPIE"] { content: url('../Images/3pics PORTFOLIO/(49) APPIE.webp'); }
  .image-wrapper img[alt="YANG LOU"] { content: url('../Images/3pics PORTFOLIO/(50) YANG LOU.webp'); }
  .image-wrapper img[alt="BRUNO"] { content: url('../Images/3pics PORTFOLIO/(51) BRUNO.webp'); }
}

/* JOOSTKLEIN HIGHLIGHT PHONE IMAGES */
@media only screen and (max-width: 768px) {
  .image-wrapper img[alt="LIVE"] { content: url('../Images/JoostKlein Highlight/LIVEphone.webp'); }
  .image-wrapper img[alt="PORTFOLIO"] { content: url('../Images/JoostKlein Highlight/PORTFOLIOphone.webp'); }
  .image-wrapper img[alt="JOOST KLEIN X MXDVS"] { content: url('../Images/JoostKlein Highlight/JOOSTMXDVS360phone.webp'); }
  .image-wrapper img[alt="PRESS PHOTOS"] { content: url('../Images/JoostKlein Highlight/PRESSPHOTOSphone.webp'); }
  .image-wrapper img[alt="BRISTOL"] { content: url('../Images/JoostKlein Highlight/BRISTOLphone.webp'); }
}

/* MXDVS PHONE IMAGES */
@media only screen and (max-width: 768px) {
  .image-wrapper img[alt="PRODUCT PHOTOS"] { content: url('../Images/MXDVS/ProductPhotosPhone.webp'); }
  .image-wrapper img[alt="EDITS"] { content: url('../Images/MXDVS/EditsPhone.webp'); }
  .image-wrapper img[alt="CAMPAIGNS"] { content: url('../Images/MXDVS/CampaignsPhone.webp'); }
}

/* MXDVS CAMPAIGNS PHONE IMAGES */
@media only screen and (max-width: 768px) {
  .image-wrapper img[alt="FEMME FATALE"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/FemmeFatalePHONE.webp'); }
  .image-wrapper img[alt="WORTH A MILLION TEARS 2.0"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/WorthAMillionTears2.0PHONE.webp'); }
  .image-wrapper img[alt="PILL LOCKET NECKLACE"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/PillLocketPHONE.webp'); }
  .image-wrapper img[alt="FAUX MINK 2.0"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/FauxMink2.0PHONE.webp'); }
  .image-wrapper img[alt="MORNINGSTAR"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/MorningstarPHONE.webp'); }
  .image-wrapper img[alt="WORTH A MILLION TEARS"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/WorthAMillionTearsPHONE.webp'); }
  .image-wrapper img[alt="TRACK SUIT 2.0"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/Tracksuit2.0PHONE.webp'); }
  .image-wrapper img[alt="FAUX MINK"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/FauxMinkPHONE.webp'); }
  .image-wrapper img[alt="BOUND TOGETHER"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/BoundTogetherPHONE.webp'); }
  .image-wrapper img[alt="CO2"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/CO2PHONE.webp'); }
  .image-wrapper img[alt="TRASHSTAR"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/TrashstarPHONE.webp'); }
  .image-wrapper img[alt="TRACKSUIT"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/TracksuitPHONE.webp'); }
  .image-wrapper img[alt="CRUCIFIXION"] { content: url('../Images/MXDVS/CAMPAIGNSoverview/CrucifixionPHONE.webp'); }
}

/* Default behavior: Desktop images */
.responsive-image {
    content: attr(src); /* Default desktop image */
}

/* Media Query: Swap to mobile images below 768px */
@media (max-width: 768px) {
    .responsive-image {
        content: attr(data-phone-src); /* Use mobile image source */
    }
}

@media (max-width: 768px) {
  .logo-overlay-wrapper {
    width: 70%;
    height: 70%;
  }
}

@media (max-width: 768px) {
  .logo-overlay {
    max-width: 70%;
    max-height: 70%;
  }
}

  @media (max-width: 768px) {
    .portfolio-item picture source {
      display: block;
    }
  }

/* Media Query for Screens Smaller Than 940px */
@media (max-width: 940px) {
    .sentence {
        white-space: normal; /* Allows the text to break into multiple lines */
        text-overflow: clip; /* Removes ellipsis for better readability */
    }
}



@media (max-width: 930px) {
    /* Stack Navbar Items Vertically */
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar ul li {
        margin: 5px 0; /* Closer vertical spacing */
    }

    .navbar ul li a {
        font-size: 30px; /* Increase font size */
    }

    /* Dynamic Logo Size */
    .image-logo-home {
        background-size: 85%; /* Slightly increase logo size */
        height: calc(100vh - 500px); /* Keep height fixed */
        top: 10px;
    }

    /* Fix the Highlights Section */
    .highlights-section h2 {
        display: block; /* Stack title above the elements */
        margin-bottom: 10px;
    }

    .highlights-section ul {
        display: flex;
        justify-content: center; /* Center elements horizontally */
    }

    .highlights-section ul li {
        margin: 0 10px; /* Adjust spacing between elements */
    }
}

/* Media Query for Screens Smaller Than 880px */
@media (max-width: 880px) {
    .image-logo-home {
        background-size: 85%; /* Increase logo size for smaller screens */
    }

    /* Adjust Highlights Section */
    .highlights-section h2 {
        display: block; /* Stack title above the elements */
    }

    .highlights-section ul {
        display: flex;
        justify-content: center; /* Center elements horizontally */
    }

    .highlights-section ul li {
        margin: 0 10px;
    }

    .highlights-section {
        bottom: 40px; /* Keep vertical height consistent */
    }
}

/* Media Query for Screens Smaller Than 450px */
@media (max-width: 550px) {
    /* Stack Navbar Items Vertically */
    .navbar ul {
        flex-direction: column;
        align-items: center;

    }

    .navbar ul li {
        margin: 5px 0; /* Closer vertical spacing */

    }

    .navbar ul li a {
         /* Increase font size */
        font-size: 8vw;
    }

    /* Adjustments for Background Image */
    .image-logo-home {
        background-size: 80%;
        max-height: 100%;
    }
    .highlights-section h2{
      font-size: 8vw;
    }

    .highlights-section ul{
      flex-direction: column;

    }

    .highlights-section ul li {
      margin-bottom: 8px;

    }

    .highlights-section ul li a{
      font-size: 6vw;

    }



}

@media (max-width: 550px) {
    .banner-content {
        animation: scrollBanner 7s linear infinite; /* Faster speed on mobile */
    }

}

/* Default behavior: Desktop images JoostKlein PAGE */
.responsive-image {
    content: attr(src); /* Default desktop image */
}

/* Media Query: Swap to mobile images below 635px */
@media (max-width: 635px) {
    .responsive-image {
        content: attr(data-phone-src); /* Use mobile image source */
    }
}

@media (max-width: 1200px) {
  /* Reorder the elements in the TextLeft container */
  .TextLeft {
    display: flex;
    flex-direction: column;
  }

  /* Move the logo to appear after the buttons */
  .LogoLeftTop {
    order: 3; /* This will make it appear after elements with order 1 and 2 */
    margin-top: 0px; /* Add some space above the logo */
    margin-bottom: 10px;
  }

  .campaignTitle {
    order: 1;
    margin-top: 10px;
  }

  .buttons {
    order: 2;
    margin-bottom: 0px;
  }

  .textTextText {
    order: 4;
  }

  /* Adjust the logo styling */
  .LogoLeftTop img {
    width: 45%;
    margin: 0 auto; /* Center the logo */
    padding-top: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}



            .mobile-view li a {
              margin-bottom: 5px;

            }

            .campaignTitle{
              margin-top: 5px;
              margin-bottom: 5px;
            }
      }

      /* Landscape mode on mobile devices */
@media (max-width: 940px) and (orientation: landscape) {
    body.no-scroll {
        overflow: auto; /* Enable scrolling */
        height: auto; /* Allow content to expand */
    }


    .highlights-section {
        position: relative; /* Change from absolute to relative */
        bottom: auto;
    }

    /* Keep desktop view for highlights */
    .highlights-section ul.desktop-view {
        display: block !important;
    }

    .highlights-section ul.mobile-view {
        display: none !important;
    }

    /* Adjust navbar for landscape */
    .navbar ul {
        flex-direction: row; /* Keep items in a row */
    }

}

@media (max-width: 940px) {
.TextLeft .campaignTitle{
      margin-top: 20px;
}
}

/* Keep desktop non-scrollable */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

@media (max-width: 805px)and (max-width: 768px) {
.image-logo-home {
    background-size: 80%;
    height: calc(100vh - 500px); /* Keep height fixed */
    top: 10px;
}}

@media (max-height: 885px) and (max-width: 768px){
.image-logo-home {
    background-size: 80%;
    height: calc(100vh - 600px); /* Keep height fixed */

}}

@media (max-height: 810px) and (max-width: 768px) {
.image-logo-home {
    background-size: 80%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -20px;

}}

@media (max-height: 775px) and (max-width: 768px){
.image-logo-home {
    background-size: 80%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -30px;

}}

@media (max-height: 760px) and (max-width: 768px){
.image-logo-home {
    background-size: 80%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -40px;

}}

@media (max-height: 745px) and (max-width: 768px){
.image-logo-home {
    background-size: 80%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -50px;

}}

@media (max-height: 740px) and (max-width: 768px){
.image-logo-home {
    background-size: 80%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -60px;

}}

@media (max-height: 725px) and (max-width: 768px){
.image-logo-home {
    background-size: 70%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -60px;

}}

@media (max-height: 710px) and (max-width: 768px){
.image-logo-home {
    background-size: 60%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -70px;

}}

@media (max-height: 680px) and (max-width: 768px) {
.image-logo-home {
    background-size: 50%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -80px;

}}

@media (max-height: 665px) and (max-width: 768px) {
.image-logo-home {
    background-size: 45%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -80px;

}}

@media (max-height: 645px) and (max-width: 768px) {
.image-logo-home {
    background-size: 40%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -90px;

}}

@media (max-height: 630px) and (max-width: 768px) {
.image-logo-home {
    background-size: 35%;
    height: calc(100vh - 600px); /* Keep height fixed */
    top: -100px;

}}
