@charset "UTF-8";
/*===========================
   TRN CSS File
   Written by: Nyasco
   info@tishanyq.co.za
===========================*/


/*===========================
Base Reset 
===========================*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: 'Roboto';
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

 /* =======================
       Sticky Header Container
    =========================== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.3);
      color: white;
      z-index: 10000;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      transition: background-color 0.3s ease;
    }

    header.scrolled {
      background-color: rgba(0, 0, 0, 0.85);
    }

    .logo img {
      height: 25px;
    }

/* =======================
   Mobile Menu Toggle
=========================== */
.menu-container {
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
  user-select: none;
  z-index: 11000;
}

.menu-icon {
  font-size: 1.6em;
  margin-right: 8px;
}

.menu-text {
  font-size: 1em;
  font-weight: 500;
}

/* =======================
   Mobile Slide-Out Nav
=========================== */
.main-nav {
  display: none;
  position: fixed;
  top: 70px;
  right: 10px;
  width: 180px;
  background-color: rgba(0, 0, 0, 0.6); /* slight background */
  border-radius: 8px;
  padding: 20px 10px;
  z-index: 11000;
  height: auto;
}

.main-nav.open {
  display: block !important;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.main-nav li {
  margin-bottom: 14px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  display: inline-block;
  padding: 6px 8px;
  border-radius: 4px;
}

.main-nav a:hover {
  color: #fe4b06;
  background-color: rgba(255, 255, 255, 0.1);
}

/* =======================
   Desktop Nav
=========================== */
.secondary-desktop-nav {
  display: none;
}

@media (min-width: 1025px) {
  .secondary-desktop-nav {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    background-color: #000;
    padding: 12px 20px;
    width: 100%;
  }

  .secondary-desktop-nav a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    padding-bottom: 2px;
  }

  .secondary-desktop-nav a:hover {
    color: #fe4b06;
    border-bottom: 2px solid #fe4b06;
  }

  .main-nav,
  .menu-container {
    display: none !important;
  }
}

/* =======================
   Responsive adjustments
=========================== */
@media (max-width: 768px) {
  .main-nav {
    right: 10px;
    top: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    width: 180px;
    border-radius: 8px;
    padding: 20px 10px;
  }

  .main-nav a {
    font-size: 1.1em;
  }

  .menu-text {
    display: inline;
  }
}


/*===========================
  Ladning Section
===========================*/
section {
    padding-top: 60px;
}

/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Roboto';
    overflow-x: hidden;
}

/*===========================
Landing Section 
===========================*/
#landing {
    position: relative;
    width: 100%;
    min-height: 70vh; /* adjust as needed */
    overflow: hidden;
}

/* Main video container */
.vimeo-container {
    width: 100vw;
    height: auto;
    position: relative;
}

/* Video iframe */
.vimeo-container iframe {
    width: 100vw;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: none;
    pointer-events: none;
    display: block;
}

/* Volume Icon */
.volume-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    animation: bounce 1.2s infinite;
    transition: opacity 0.3s ease;
}

.volume-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* Bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .vimeo-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        width: 100vw;
        padding: 0;
        margin: 0;
    }

    /* Add this wrapper around the iframe for vertical positioning */
    .mobile-video-wrapper {
        padding-top: 170px;     /* Adjust this to move video down */
        padding-bottom: 160px;  /* Optional: spacing below video */
        width: 100%;
    }

    .vimeo-container iframe {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
        border: none;
    }
}




/*===========================
About Us Section 
===========================*/
.trn-slide-1-page {
    width: 100%;
    min-height: 100vh;
    background: url('images/newabout.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px;
    box-sizing: border-box;
    color: #fff;
    position: relative;
}

/* Content wrapper */
.trn-slide-1-page .trn-slide-content {
    width: 800px;
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Mobile background override */
@media (max-width: 600px) {
    .trn-slide-1-page {
        background: url('images/aboutbg.jpg') no-repeat center center !important;
        background-size: cover !important;
    }
}


/*===========================
Intro tagline styling 
===========================*/
.intro-tagline {
    font-size: 1.0em;
    font-weight: 400;
    color: #fff;
    margin-top: 340px;
    margin-bottom: 30px;
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
}

/* Underline the word "ROOM" in deep orange and make it narrower */
.intro-tagline .underline-orange {
    display: inline-block;
    border-bottom: 4px solid #FE4b06;
    padding-bottom: 2px;
    transform-origin: center;   /* Keep scaling centered */
}

/* Heading style */
.trn-slide-1-page .trn-slide-content h2 {
    font-size: 1.8em;
    margin: 30px 0 20px;
}

/* Paragraph style */
.trn-slide-1-page .trn-slide-content p {
    font-size: 1.0em;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Home title line */
.home-title-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin: 30px auto;
    max-width: 90%;
}

.home-title-text,
.logo-label,
.ampersand {
    font-size: 1.1em;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 400;
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}

/* Top Divider line */
.about-top-line {
    width: 100%;
    height: 0.2px;
    background-color: white;
    margin: 10px 0 10px;
}
		/* Bottom Divider line */
.about-bottom-line {
    width: 100%;
    height: 0.2px;
    background-color: white;
    margin: 10px 0 5px;
}

/* VMV container layout */
.vmv-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 40px;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

/* VMV blocks */
.vmv-block {
    background: #2f2f2f; /* Dark grey for all blocks */
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    flex: 0 0 calc((800px - 40px) / 3);
    max-width: calc((800px - 40px) / 3);
    min-width: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.vmv-block h3 {
    color: #fff;
}

.vmv-block p {
    color: #ffffff;
}

/* Hover effect with orange glow underneath */
.vmv-block:hover {
    transform: scale(0.97);
    box-shadow: 0 0 20px 5px rgba(239, 51, 0, 0.5); /* Orange glow */
    z-index: 2;
}

/* Responsive tweaks for tablets/small laptops */
@media (max-width: 992px) {
    .trn-slide-1-page .trn-slide-content {
        width: 90%;
    }

    .vmv-container {
        gap: 20px;
        flex-wrap: wrap;
    }

    .vmv-block {
        flex: 1 1 45%;
        max-width: unset;
        min-width: unset;
    }
}

/* Mobile Optimized View (max-width: 600px) */
@media (max-width: 600px) {
    .trn-slide-1-page {
        padding: 20px 10px 30px;
    }

    .trn-slide-1-page .trn-slide-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        text-align: center;
        margin: 0 auto;
    }

    .trn-slide-1-page .trn-slide-content h2 {
        font-size: 1.4em;
        margin: 20px 0 15px;
    }

    .trn-slide-1-page .trn-slide-content p {
        font-size: 0.7em;
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .intro-tagline {
        font-size: 0.85em;
        margin-top: 1px;
        margin-bottom: 8px;
        text-align: center;
        display: block;
        width: 100%;
    }

    .home-title-container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        font-size: 0.8em;
        white-space: nowrap;
        overflow-x: auto;
        justify-content: center;
        text-align: center;
    }

    .home-title-text,
    .logo-label,
    .ampersand {
        font-size: 0.85em;
        white-space: nowrap;
    }

    .home-logo-link {
        flex-direction: row;
        gap: 4px;
    }

    .home-logo {
        height: 18px;
        max-width: 60px;
    }

    .logo-label {
        font-size: 0.85em;
    }

    .vmv-container {
        flex-direction: column;
        gap: 10px;
    }

    .vmv-block {
        flex: 1 1 100%;
        padding: 12px;
        font-size: 0.85em;
    }

    .vmv-block h3 {
        font-size: 1.1em;
    }
}


/*===========================
Our People Section 
===========================*/
.executives-section {
    height: 100vh;
    overflow: hidden;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/backdrop.webp') no-repeat center center/cover;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.executives-title {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.carousel-wrapper {
    position: relative; /* needed for arrows positioning */
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
    touch-action: pan-y; /* allow vertical scroll, enable horizontal swipe */
}

.carousel-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    min-width: 50%; /* default 2 slides per view */
    display: flex;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.executive-card {
    background: #2f2f2f; /* Dark grey */
    color: #fff; /* White text */
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.executive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.executive-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #1a1a1a; /* Dark grey border */
    margin-bottom: 1rem;
    box-shadow: 0 0 12px 3px rgba(0, 0, 0, 0.7); /* Soft dark glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.executive-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px 5px rgba(239, 51, 0, 0.5); /* Deep orange glow */
}

.executive-card h3 {
    margin: 0.5rem 0 1rem;
    font-size: 1.0rem;
    color: #fff; /* Ensure header text is white */
}

.executive-summary {
    font-size: 0.85rem;
    color: #ddd; /* Lighter white for summary */
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10; /* High z-index */
    user-select: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.8);
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background: rgba(239, 51, 0, 0.8);
    box-shadow: 0 0 15px rgba(239, 51, 0, 0.9);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* Executives Section (Mobile Fixes) */
@media (max-width: 768px) {
    .carousel-slide {
        min-width: 100% !important; /* one slide at a time */
        justify-content: center;
        padding: 0.5rem;
    }

    .executive-card {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    }

    .executive-photo {
        width: 120px;
        height: 120px;
        margin-bottom: 0.75rem;
    }

    .executive-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .executive-summary {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .carousel-button {
        font-size: 1.5rem;
        width: 36px;
        height: 36px;
    }

    .carousel-wrapper {
        max-width: 100vw;
        padding: 0 10px;
    }
}



/*===========================
Our Channels Section
===========================*/
.channels-section,
.channels-section * {
    font-family: 'Roboto', 'Helvetica Neue';
}

/* Our Channels Section */
.channels-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Channel Base Styles */
.channel {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Backgrounds & Colors */
.movie-room {
    background-image: url('images/moviebg.webp');
    color: #fff;
}

.play-room {
    background-image: url('images/playbg.jpg');
    animation-delay: 0.4s;
    color: #000;
}

/* Text Styles */
.channel h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.movie-room h2 {
    margin-top: 70px;
}

.play-room h2 {
    margin-top: -10px;
}

.channel p {
    font-size: 1em;
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.play-room p,
.play-room h2 {
    text-shadow: none;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 15px 0;
}

.social-links a img {
    width: 30px;
    height: 30px;
    transition: filter 0.3s ease, transform 0.3s ease;
    will-change: transform, filter;
}

/* Shake animation */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-3px) rotate(-5deg);
    }
    40%, 80% {
        transform: translateX(3px) rotate(5deg);
    }
}

.movie-room a img {
    filter: brightness(0) invert(1);
}

.movie-room a:hover img,
.play-room a:hover img {
    filter: brightness(0) saturate(100%) sepia(1) hue-rotate(-30deg);
    animation: shake 0.5s ease-in-out;
    transform: scale(1.1);
}

.play-room a img {
    filter: brightness(0);
}

/* Explore Button + Bounce Icon */
.explore-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.bounce-icon {
    width: 50px;
    animation: bounceLR 1s infinite ease-in-out alternate;
    cursor: pointer;
    user-select: none;
    transition: transform 0.6s ease;
}

.bounce-icon:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Button Themes */
.movie-room .explore-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.movie-room .explore-btn:hover {
    background: rgba(224, 67, 5, 0.9);
    transform: scale(1.05);
}

.play-room .explore-btn {
    background: rgba(254, 75, 6, 0.55);
    color: #000;
}

.play-room .explore-btn:hover {
    background: rgba(255, 204, 0, 0.9);
    transform: scale(1.05);
}

.explore-btn img.btn-logo {
    height: 24px;
    width: auto;
    display: block;
    filter: none !important;
    flex-shrink: 0;
    pointer-events: none;
}

/* Animations */
@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceLR {
    0% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(10px);
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .channel {
        flex: none;
        min-height: 100vh;
        padding: 25px 15px;
    }

    .channel h2 {
        font-size: 2em;
    }

    .movie-room h2 {
        margin-top: 25px;
    }

    .play-room h2 {
        margin-top: 8px;
    }

    .channel p {
        font-size: 1em;
    }

    .bounce-icon {
        width: 45px;
    }

    .explore-container {
        gap: 10px;
        margin-top: 12px;
    }

    .explore-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .explore-btn img.btn-logo {
        height: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .channel {
        padding: 20px 10px;
    }

    .channel h2 {
        font-size: 1.6em;
    }

    .movie-room h2 {
        margin-top: 20px;
    }

    .play-room h2 {
        margin-top: 5px;
    }

    .channel p {
        font-size: 0.9em;
    }

    .bounce-icon {
        width: 40px;
    }

    .explore-container {
        gap: 8px;
        margin-top: 10px;
    }

    .explore-btn {
        padding: 8px 16px;
        font-size: 0.85em;
    }

    .explore-btn img.btn-logo {
        height: 18px;
    }

    /* Show section logos on mobile */
    .mobile-only {
        display: block;
    }
}

/* Desktop View: Ensure full height for each channel */
@media (min-width: 1025px) {
    .channel {
        height: 50vh;
    }
}

		
/*===========================
Section Logo for Mobile View 
===========================*/
.section-logo {
    max-width: 200px;
    margin: 0 auto 20px auto;
    display: block;
    padding: 10px 15px;
    background: rgba(20, 20, 20, 0.7); /* Dark grey with reduced opacity */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    animation: logoFadeIn 0.8s ease-out forwards;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

/* Default hide for mobile-only elements */
.mobile-only {
    display: none;
}

/* Show only on mobile */
@media (max-width: 480px) {
    .mobile-only {
        display: block;
    }

    .section-logo:hover {
        animation: shakeLogo 0.5s ease-in-out;
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    }
}

/* Logo Fade-In Animation */
@keyframes logoFadeIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo Shake Animation */
@keyframes shakeLogo {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}


/*===========================
Contact Us Container 
===========================*/
#contact {
    background: url('images/Backdrop 2.webp') no-repeat center center/cover;
    color: white;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top 60% map */
.contact-map {
    height: 60%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Bottom 40% content */
.contact-bottom {
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    /* semi-transparent overlay */
}

/* Contact info */
.contact-contact {
    text-align: center;
    font-size: 16px;
}

.contact-contact p {
    margin: 5px 0;
}

.contact-contact i {
    color: #fe4b06;
    margin-right: 8px;
}

/* Social icons */
.contact-social {
    margin: 15px 0;
}

.contact-social a {
    color: white;
    font-size: 24px;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.contact-social a:hover {
    color: #fe4b06;
}

/* Divider line */
.contact-bottom-line {
    width: 80%;
    height: 1px;
    background-color: white;
    margin: 15px 0 5px;
}

/* contact copy */
.contact-copy {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-contact {
        font-size: 14px;
    }

    .contact-social a {
        font-size: 20px;
    }

    .contact-bottom-line {
        width: 60%;
    }
}



		






        