


html, body{
    height: 100%;
    margin: 0;

}

.overflow-hidden{
    overflow: hidden;
}

main{
    height: calc(100vh - 65px);
    box-sizing: border-box;
    /* padding-top: 65px; */
    transform: translateY(65px);
}



/* Custom Properties */
:root{
    
    /* Color Pallette */
    --something: #a0009b;


    /* Fonts/Typography */

    
    /* Spacing (Padding & Margins) */





}

/* Custom Fonts -------------------------------------------------------------------- */
@font-face {
    font-family: 'Octal' !important;
    src: url('/web-fonts/Octal/Octal-Bold.otf') format('otf'),
    url('/web-fonts/Octal/Octal-Medium.otf') format('otf'),
    url('/web-fonts/Octal/Octal-Light.otf') format('otf') !important;
    font-weight: 'Light' 'Medium' 'Bold' !important;
    

}
@font-face {
    font-family: 'FOT-NewRodin Pro L';
    src: url('root-ucmiii\web-fonts/FOT-NewRodinPro-');
}
/* --------------------------------------------------------------------------------- */

/* Index Intro Animation */
.intro {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff; /* WHITE BACKGROUND */
    
    /* This fades the ENTIRE intro out */
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* The background image that fades IN */
.background-image-for-intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/media/images/background-images-for-index-intro/intro-backimage-1080x1920.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    /* Start invisible, fade in */
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* This class fades the background image IN */
.bg-visible {
    opacity: 1;
}

/* This class fades the ENTIRE intro OUT */
.intro-hidden {
    opacity: 0;
    pointer-events: none; /* Prevents clicking on hidden intro */
}

.ucmiii-logo-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 550px;
    width: 100%;
    z-index: 10; /* Ensures logo is on top of background */
}

.logo-intro-animation {
    width: 100%;
    height: auto;
    padding: 0 20px;
}




/* Header--------------------------------------------------------------------------- */
header{
position: sticky;

z-index: 9999;
}



.page-full{ 
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
}




/* Defealts for H's */
h3 {
margin: 0;
}

h2{
    font-family: 'Octal';
    font-weight: lighter;
    margin: 0;
}
/* ------------------------------------------------------------------------------------------- */

p{
    font-family: 'Octal';
    line-height: 1.5;
    font-weight: lighter;
    margin: 0;
}


/* For the Index Page */
.master-detail-layout{
    /* margin-top: 65px; */
    display: flex;
    flex-direction: row;
}


.works-navbar{
    max-width: 350px;
    width: 100%;
    height: 100vh;
    background-color: rgb(241, 255, 253);
    

}

.works-nav{
    position: initial;
    height: 100%;
}

.works-list{
    padding: 0;
   margin: 0;
    display: flex;
    flex-direction: column;
}

/* Works List items */
.w-items{ 
    font-size: 14px;
    margin: 0;

    padding: 15px ;
    color: rgb(0, 100, 80);

    transition: all 0.3s ease;
}

.w-items:hover{
    cursor: pointer;
    color: #efffff;
    background-color: rgb(0, 100, 80);

    transition-property: background-color, color;
    transition-duration: 0.9s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* Add to your stylesheet.css */
.w-items.active {
    background-color: rgb(0, 100, 80) !important;
    color: #efffff !important;
    font-weight: bold;
    border-radius: 3px;
}

/* Optional: Add a transition for smooth effect */
.w-items {
    
}


.faded-line{
    margin:0;
    border: none;
    width: 100%;
    height: 1px;
    background: radial-gradient(rgb(0, 125, 98), rgb(232, 250, 243));
}

/* Works Display */
.works-display{
    width: 100%;
    height: calc(100vh - 65px);
    overflow-x: auto;
   
    background-color: #faffff;

    display: flex;
    flex: 1 0 1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}


.link-container{
    opacity: 0; /* Start hidden */
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;


    display: block;
    max-width: 250px;
    width: 100%;
    max-height: 140.63px;
    height: 100%;
    margin: 20px;
}

/* When visible */
.link-container:not(.hidden) {
    opacity: 1;
    transform: scale(1);
}

/* When hidden */
.link-container.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.95);
}

/* Optional: Stagger animation for each card */
.link-container {
    transition-delay: calc(var(--index, 0) * 0.05s);
}

.thumbBoxContainer{
    width: 100%;
    height: auto;
    
}


.box-link{
    
    max-width: 250px;
    width: 100%;
    max-height: 141px;
    height: 100%;
}

a div.thumbBoxContainer{
    
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    box-shadow: #939393 -5px 5px 10px;
}


a div.thumbBoxContainer img{
    display: block;
    height: 100%;
    width: auto;
    margin: auto;
    padding: 0;
} 




@media only screen and (max-width: 1230px){


.overflow-hidden{
    /* overflow: initial; */
}

.master-detail-layout{
margin: 0;
height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    
}

.works-navbar{
    /* margin-top: 65px; */
    position: fixed;
    z-index: 999;
    max-width: 100%;
    height: auto;


}

.works-nav{
    width: 100%;
    position: relative;
    z-index: 0;
}

.works-list{
    margin: 0 ;
    padding: 20px 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: center;
    gap: 15px;

    box-shadow: 0px 0px 10px grey;
    border-radius: 0 0 7px 7px;
    
}

.works-display{
    height: calc(100vh - 172px) !important;
    overflow-x: auto !important;
 
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;

    transform: translateY(107px) !important;
}

.w-items{
    padding:  5px 15px ;
    font-size: 13px;

    border: rgb(0, 100, 80) solid 1px;
    border-radius: 3px;
}


.faded-line{
    display: none;
}
}


@media only screen and (max-width: 711px){
.works-display{
    height: calc(100vh - 213px) !important;
    overflow-y: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    transform: translateY(148px) !important;
}
}

@media only screen and (max-width: 486px){
.works-display{
    height: calc(100vh - 235px) !important;
    overflow-y: auto;
    flex-wrap: nowrap;
    transform: translateY(189px) !important;
}
}

@media only screen and (max-width: 393px){
.works-display{
    height: calc(100vh - 295px) !important;
    overflow-y: auto;
    flex-wrap: nowrap;
    transform: translateY(230px) !important;
}
}


@media only screen and (max-width: 365px){
.works-display{
    height: calc(100vh - 336px) !important;
    overflow-y: auto;
    flex-wrap: nowrap;
    transform: translateY(271px) !important;
}
}








/* Navigation Bar ----------------------------------------------*/

/* .sidebar{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;


margin: 0;
padding: 0;

    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;

    background-color: rgba(255, 255, 255, 0.332);
    backdrop-filter: blur(10px);
    box-shadow: -1px 0 10px rgba(0, 0, 0, 0.3);
}


.sidebar li{
    margin: 7.5px 0;
} */


.global-navbar{
    width: 100%;
    height: 65px;
    background-color: white;
    box-shadow: 0px 0px 10px grey;
    position: fixed;
    
}

.navbar-container{
    display: flex !important;
    flex-direction: row;
    width: 100%;
    height: 100%;
    align-items: center !important;
   /* justify-content: flex-end; */
   }

nav.global-navbar div.navbar-container div.nav-ul-container ul{
    flex: 1;
    list-style: none;
    margin: 0 10px;
    padding: 0;
    
    justify-self: flex-end !important;    
}
/* 
nav.global-navbar div.navbar-container div.nav-ul-container ul.sidebar{
    list-style: none;
    margin: 0;
    padding: 0;
    justify-self: center;    
} */

dl li{
        font-family: 'Octal' !important;
     }



nav ul li{
    display: inline-block;
    margin: 0 0px 0 5px;
    font-family: 'Octal';
}

/* Nav Button Styles */
nav ul li a{
    padding: 13px 13px;
    text-decoration: none;
    color: black;
    display: block;
    border-radius: 3px;

    /* Button Animation */
    transition-property: background-color, color;
    transition-duration: 0.9s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

nav ul li a:hover {
    color: #5f5f5f;
    background-color: #e7e7e7;
}


.logo-nav-link{
    width: 110px;
    padding-top: 5px;
    height: auto;
    justify-self: flex-start;
}

.nav-ul-container{
    width: 100%;
}

#contact-link{
    cursor: pointer;
}




.hideContactForm{
    display: none;
}



/* ^^^------------------------------------------------------^^^ */







/* Contact Form Box Model----------------------------------------------- */
.contactBoxModal{
    display: none;

    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    
    background-color: rgba(0, 0, 0, 0.5);
   
   
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.contact-form{

overflow-y: auto;
min-height: 0;



    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-30px);

    



    background-color: #dbdbdb; 
    flex-direction: column;
    flex-wrap: nowrap;

    
    
    


    width: 80%;
    max-width: 400px;
    height: 72%;
    
    
    padding: 10px; 
    border-radius: 5.3px;
    box-shadow: 0 0 5px #000000 ;
   
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

  /* When modal is shown */
  .contactBoxModal.show {
    opacity: 1;
  }
  
  .contactBoxModal.show .contact-form {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
  }



#contact-animation{
    width: 25%;
    height: auto;
}

.contact-header{

}

.content-center-x-aligned{
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 25px;
}


.contact-bg-color{

}

.x-mark{

    width: 26px;
    height: auto;
    cursor: pointer;
}

.contact-form h2{
margin: 10px;
font-weight: bold;
}

.contact-form form{
    width: 100%;
    height: auto;
   
}


/* Input Boxes*/

.contact-form form input{
     margin: 1px 0 21px 0; 

}

.contact-form form textarea{
    margin: 1px 0 0 0; 

    width: 100%;
    min-height: 100px;
    max-height: 400px;
    height: 100%;
    resize: vertical;

}

.input-box{

    background-color: whitesmoke;
    font-family: sans-serif;
    display: block;
    width: 100%;

    padding: 10px;

    outline: 0;
    border: 0;
    border-radius: 3px;
    box-sizing: border-box;
    
}

.contact-form video{
    margin-top: 15px;
}

.contact-form form label{
    font-family: 'Octal';
    font-weight: normal;
}

.forButton{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 5px;
    margin-bottom: 5px;
}

.contact-form form button{
    border: 0;
    border-radius: 3px;
    outline: 0;



    padding: 10px 15px;
    

    font-family: 'Octal';
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 1px;
    color: white;
    background-color: black;



    transition-property: background-color, color;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}





.contact-form form button:hover{
    background-color: rgb(86, 86, 86);
}
















/* For About Page */
.about-section{
max-width: 825px;

margin: auto;
padding: 0 20px;

display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.about-topbox{


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    flex-wrap: wrap;


}

.about-topbox-img-container{
    max-width: 500px;
    /* width: 100%; */
    height: auto;
    
    margin-top: 25px;
}

.about-topbox-content{
   margin-top: 10px;
}



#adjustment{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-space{
    /* margin-top: 10px; */
}

/* ^^^^-----------------------------------------------------^^^^ */











/* For Works Page */
/* .works-container{
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: nowrap;

} */


.works-section{
  /* background-color: #d4d4d4; */
    margin: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}


div.works-container h3{
    margin-top: 30px;
    font-family: "Octal";
    font-weight: lighter;
}




h3 strong{
    font-weight: bold;
}





/* #streamGraphicsThumb{
    box-shadow: #ffffff -7px 7px;
}

#hexhubThumb{
    box-shadow: #5bffdc -7px 7px;
}

#rikodiBoxThumb{
    box-shadow: #ff6a00 -7px 7px;
}

#wayneshotBoxThumb{
    box-shadow: #da0000 -7px 7px;
}

#tggBoxThumb{
    box-shadow: #e0007f -7px 7px;
}

#kemotionThumb{
    box-shadow: #00548b -7px 7px;
}

#photoThumb{
    box-shadow: #de9f64 -7px 7px;
}

#illusThumb{
    box-shadow: #858585 -7px 7px;
} */

/* For Works Page */






/* Body */
body{
    padding-top: 0px;
}



/* Selected Works Section for The Index Page */


.box-fit{
    width: 100%;
    height: 100%;
    padding: 0;
    
}












/* Section Content---------------------------------------- */
.text-content{
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 25px;
}



/* ------------------------------------------------------- */






















/* CSS for the Works-projects pages--------------------------------- */
.page-project-thumbnail-container {
    width: 100%;
    height: 600px;
    background-image:linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)); 
    background-repeat: none;
    background-size: 100%;
}




/* Thumbnails for the Works-Projects Pages */
#streamGraphicsThumbnail{
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)),  url(/media/images/thumbnails/streamgraphicsThumb2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

#au-streamGFXThumbnail{
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)),  url(/media/images/thumbnails/amarii-thumb2.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

#hexhubThumbnail{
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)),  url(/media/images/hex-hub-images/hex-hub-logo-animation-thumbnail.PNG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

#kemotionThumbnail{
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)),  url(/media/images/km-productions-kemotion-images/kemotion-thumbnail.PNG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;

}

#rikodiThumbnail{
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)),  url(/media/images/rikodi-image-files/rikodi_logo2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


#wayneshotitThumbnail{
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)),  url(/media/images/wayne-shot-it-images/wayne-sthumb4.PNG);
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#kmProductionsThumbnail{
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)),  url(/media/images/km-productions-images/kmproductions-project-thumbnail.PNG);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#cgiThumbnail{ 
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)),  url(/media/images/thumbnails/cgi-3dThumb.PNG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;

}

#animationThumbnail{
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)),  url(/media/images/thumbnails/allens-wrenchn_thumb.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}


#getawaygirlsThumbnail{
    background-image: linear-gradient(rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)),  url(/media/images/the-getaway-girls-images/the-getaway-girls-official-brand-logo.png);
    background-repeat: no-repeat;
    background-size:contain;
    background-position: top;
}







.project-name-placement /* For Placement*/{
display: block;
margin: 0 0 0 15px;
padding-top: 15px;
}


.project-name /*For Font Style*/{
    color: rgb(255, 255, 255);
    font-family: 'Octal';
    font-weight: normal;
    font-size: 39px;
    margin: 0;
}




.div-container1{
    /* width: 100%;
    height: auto; */
    background-image: url(/media/images/streaming-graphics-page/twitchBackground.png);
    background-size: 100%;

}


.ads-banners{
    max-width: 550px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ads-banners video{
    margin: 10px;
}

.minus-space{
    margin-bottom: -20px;
}

/* Project Description */
.project-description{
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-right: 20px;
}

.flex-list{
    display: flex;
    flex-wrap: wrap;
}

.descriptor-space{
    margin-top: 20px;
    margin-left: 25px;
    margin-right: 25px
}

.oct{
    font-family: 'Octal';
}

.oct dt{
    font-weight: lighter; 
    font-size: 13px;
}

.oct dd{
    font-weight: normal;
    margin-left: 0;
    margin-top: 5px;
    line-height: 1.5;
}

/* Project Content */
video{ 
    display: block;   
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

img{
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.h2-story-margin{
    margin: 20px 0;
}


/* Project Content - Spacing & Alignment */
.margin-zero{
    margin: 0;
}

.first-space{
    margin-top: 80px;
}

.section-space{
    margin-top: 20px;
    width: 100%;
}
.flex-down{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column; 
    /* justify-content: center; */
    align-items: center;
}

.flex-down > div {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.content-alignment{
    max-width: 850px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}
.spaceContent{
    box-sizing: border-box;
  
}
div.spaceContent img{
    margin: 10px;
}


div.spaceContent > video{
    margin: 10px 0;
    width: 100%;
}

/* Regular Rows and Columns */
.minigal{ 
    display: block;
    width: 100%
    }
    
    .row{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        
      
    }
    
    div.spaceContent div.row img{
        flex: 1 1 0;  /* Images share available space equally */
        min-width: 0;  /* Prevents overflow */
        width: auto;   /* Override the 100% width */
        height: auto;
        margin: 5px 0;
    }
    
    div.spaceContent div.row video{
        flex: 1 1 0;  /* Images share available space equally */
        min-width: 0;  /* Prevents overflow */
        width: auto;   /* Override the 100% width */
        height: auto;
        margin: 5px 0;
    }
    
    
    .column{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    
    }
    
    
.row-container{
  
    width: 100%;
    height: auto;
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;

    justify-content: flex-start;
    align-items: initial;
}



.row-container img{
    flex: 1;
    min-width: 0;
    width: auto;
}

.row-container img.small-image{

    width: 25%;
}

.small-image-container {
    max-width: 450px;
}

.small-image{

    width: 20%;
}

.black{
    color: black;
}
    
    
    /* Minor Content Adjustments */
    #tggColorPalette{
        width: 50%;
    }
     
    
    
    
    



/* Project Content - Styles and Backgrounds*/
.concept-section{
    background-color: #d4d4d4;
}
.web-assetts-section{
    background-color: #dbdbdb;
}
.social-section{
    background-color: #d4d4d4;
}
.bg-square{
    background-color: #e7e7e7;

    border: solid;
    border-color: #5f5f5f;
    border-radius: 5px;

    margin: 0 auto;
    margin-bottom: 20px;
}
/* Project Content - Styles and Backgrounds*/




/* Photo Gallery */
div.photoColumn img{
    width: 100%;
    height: auto;
    padding: 5px;
}

.gallery-container{
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: space-between;
    padding: 5px;

}

.photoColumn{
    display: flex;
    flex-direction: column;

}

@media only screen and (max-width: 1050px){

    .gallery-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
}

/*  Illustration/Art Gallery  */
.illustrationColumn{
    display: flex;
    flex-direction: column;
    padding: 5px;
}



/* CSS for the Works-projects pages--------------------------------- */