

:root{
    --color-primary: black;
    --color-secondary:rgb(230,0,45,100);
}

h1{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}


html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}
  

footer {
    position: relative; /* Ensures footer stays in the correct place */
    bottom: 0;
    width: 100%; /* Ensures the footer spans the entire width */
    border-top: solid 0.5px var(--color-secondary);
  }

header{
    z-index: 100;
}

button{
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

a{
    text-decoration: none;
}

/* colors */

.color-primary{
    color: black !important;
}


.color-secondary{
    color: var(--color-secondary) !important;
}

.color-tertiary{
    color: white !important;

}


.body-color-primary{
    background-color: white;
}
.body-color-secondary{
    background-color: black;
}


/* Fonts */

/* Display:
For key lines of page. https://m3.material.io/styles/cography/applying-type#fea95f28-348c-42ae-95e1-1c5bfd819524 */
.display-large{
    font-size: 4.75rem;
    font-family: "Impact";
    font-weight: 400;
    line-height: 5.3rem;
    letter-spacing: -0.0206rem;        
}
.display-medium{
    /* to update */
    font-size: 3.5rem;
    font-weight: 400;
    font-family: "Impact";
    line-height: 4.3rem;
    letter-spacing: 0rem;        
}
.display-small{
    font-size: 2rem;
    font-weight: 400;
    font-family: "Impact";
    line-height: 3.67rem;
    letter-spacing: 0rem;        
}

/* Headline: short, high-emphasis text
https://m3.material.io/styles/typography/applying-type#43511b5a-fe60-4125-ac0c-571c4e6f0642 */
.headline-large{
    font-size: 3.3rem; 
    font-weight: 400;
    font-family: "Montserrat";
    line-height: 3.33rem;
    letter-spacing: 0rem;        
}
.headline-medium{
    font-size: 2rem;
    font-weight: 400;
    font-family: "Montserrat";
    line-height: 3rem;
    letter-spacing: 0rem;        
}
.headline-small{
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "Montserrat";
    line-height: 2.67rem;
    letter-spacing: 0rem;        
}

/* Title: short, medium emphasis text
https://m3.material.io/styles/typography/applying-type#e9e0cea3-10cb-405d-98a9-cf6a90758967 */
.title-large{
    font-size: 1.83rem;
    font-weight: 400;
    font-family: "Montserrat";
    line-height: 2.3rem;
    letter-spacing: 0rem;        
}
.title-medium{
    font-size: 1.33rem;
    font-weight: 500;
    font-family: "Montserrat";
    line-height: 2rem;
    letter-spacing: 0.0125rem;        
}
.title-small{
    font-size: 1.17rem;
    font-weight: 500;
    font-family: "Montserrat";
    line-height: 1.67rem;
    letter-spacing: 0.0081rem;            
}

/* Body: longer passages of text
https://m3.material.io/styles/typography/applying-type#19205dc2-64ec-4954-a95c-6e6b214c707e */
.body-large{
    font-size: 1.167rem;
    font-weight: 400;
    font-family: "Montserrat";
    line-height: 2rem;
    letter-spacing: 0.0419rem;        
}
.body-medium{
    font-size: 1rem;
    font-weight: 400;
    font-family: "Montserrat";
    line-height: 1.67rem;
    letter-spacing: 0.0206rem;        
}
.body-small{
    font-size: 0.83rem;
    font-weight: 400;
    font-family: "Montserrat";
    line-height: 1.33rem;
    letter-spacing: 0.0331rem;    
}

/* Label: very small text (e.g. buttons)
https://m3.material.io/styles/typography/applying-type#af6eb002-9cbb-4b64-bce6-1315d2252364 */
.label-large{
    font-size: 1.167rem;
    font-weight: 500;
    font-family: "Montserrat";
    line-height: 1.67rem;
    letter-spacing: 0.0081rem;
    /* text-transform: uppercase; */
}
.label-medium{
    font-size: 1rem;
    font-weight: 500;
    font-family: "Montserrat";
    line-height: 1.33rem;
    letter-spacing: 0.0419rem;
    /* text-transform: uppercase;    */
}
.label-small{
    font-size: 0.917rem;
    font-weight: 500;
    font-family: "Montserrat";
    line-height: 1.33rem;
    letter-spacing: 0.0419rem;
    /* text-transform: uppercase; */
}



.nav-text{
    font-size: 0.917rem;
    font-weight: 500;
    font-family: "Montserrat";
    line-height: 1.33rem;
    letter-spacing: 0.0419rem;
    text-transform: uppercase;
    color: white;
}


/* Bootstrap overrides */

.container{
    max-width: 100vw !important;
}


.nav-item{
    margin: 0 1rem !important; 
}


.card{
    background-color: transparent;
    color: white;
}

.card-body{
    padding: 0;
}


.border-end{
    border-right: 0.5px solid var(--color-secondary) !important;

}

/* nav bar */


.nav-link {
    text-align: center;
    color: white; /* Replace with your desired color */
    font-weight: 300 !important;

}
.nav-link:hover{
    color: var(--color-secondary) !important;
}
  
.nav-item{
    margin: 0 5rem;
}

.active{
    font-weight: 800 !important;
}

.active-border{
    border-bottom: solid 3.5px var(--color-secondary);
}








/*  banners */


.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
  }
  
  .responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  



.banner-video{
    width: 100%;
    height: 50vh;
    overflow: hidden;
}


.banner-video video{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -200;
}


.banner-feature{
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.banner-feature video{
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); /* Example gradient */
    pointer-events: none; /* Makes sure the overlay doesn't interfere with interactions */
  }


.banner-fade-in{
    animation: fadeIn 8s;
}

.text-banner {
    width: 100vw;
    height: 30vh;
    align-content: center;
    margin: 0;
    padding: 2rem 0;
    overflow: hidden;
    position: relative; /* Keeps it in the document flow */
}




/* Sections */

.feature-gallery{
    padding: 5rem;
    height: 80vh;
    width: 100vw;
}

.feature-gallery-row{
    display: flex;
}


.feature-highlight{
    width: 70vw;
}
.feature-highlight video{
    width: 100% !important;
    height: auto !important;
}








/* architechture */

.flag{
    height: 50vw; 
    width: auto;
}
.flag img{
    height: 100%;
    margin: auto;

}



.projects-headline{
    width: 100%;
    aspect-ratio: 2.2/1;
    overflow: hidden;
    align-content: center;
    background-color: white;
}

.projects-headline h3{
    font-size: 1.5rem;
}


.bar{
    height: 10px; 
    width: 80vw; 
    background-color: var(--color-secondary)
}

.text-body-margin{
    margin-left:10rem;
    margin-right: 10rem;
}


.fixed-sidebar{
    position: fixed;
    height: 100vh;
    top: 0;
    right:0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
    padding: 10px;
    border-left: 1px solid grey
}

.fixed-sidebar ul {
list-style: none;}

.fixed-sidebar a {
    margin: 10px 0; /* Space between icons */
    text-align: center;
    color: white; /* Adjust color */
    text-decoration: none;
  }

  .fixed-sidebar a:hover {
    color: #007bff; /* Optional hover effect */
  }

  .svg-icon {
    width: 30px;
    height: 30px;
  }





    .movie-thumbnail-container{

        aspect-ratio: 1.68/1;
        background-color: magenta;
        border: solid white 0.25px;
        overflow: hidden;
        position: relative;

        flex-shrink: 0;
        flex-grow: 0;

    }

    .movie-thumbnail-container img{
        width: 100%;
        transform: scale(1.0);
        transition: ease-in-out 200ms;
    }
    .movie-thumbnail-container img:hover{
        transform: scale(1.05);
        transition: ease-in-out 200ms;

    }


    .movie-thumbnail-container p{
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 5px;
        font-weight: 800;
        margin-bottom: 0 !important;

    }

  

   



.column-expand-1x2{
    display: block;


}






/* decorations */
.underline{
    text-decoration: underline var(--color-secondary) !important;
    text-decoration-style: solid !important;
    text-decoration-thickness: 10px !important;
    text-underline-offset: -0.20rem;
    text-decoration-skip-ink: none;
    font-weight: 800 !important;
}


/* effects  */

.offline.active{
    overflow: hidden;
    z-index: -1;
}

.overlay{
    position:fixed;
    overflow-y: scroll;
    top: 3rem;
    bottom: 0;
    right: 0;
    left: 0;
    padding-top: 3rem;
    display:none;
    background-color: rgb(0,0,0, 85%);
    width: 100vw;
}

.overlay.active{
    display:block !important;

}

.overlay-body{
    position:static;
    height: 100%;
    width: 100%;
}

.overlay-body video{
    width:1280px;
    height:720px;
    margin: auto;
}

.btn-background{
    z-index: 1;
    border-radius: 25px;
    border: solid var(--color-secondary) !important;
    background: var(--color-secondary) !important;
    position: relative;
    overflow: hidden;
    transition: color 200ms ease-in-out;
    margin: auto;
    width: 20%;
    min-width: 200px;
}

.btn-background:hover,
.btn-background:focus{
    color: white;
    font-weight: 500;
}

.btn-background::before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    background-color: white !important;
    border-radius: 25px;
    transition: transform 200ms ease-in-out;
    transform: scale(1.5);
}

.btn-background:hover::before,
.btn-background:focus::before{
    transform: scale(0)
}


.movie-link:hover{
    font-weight: 800 !important;
}


/* animations */

@keyframes fadeIn {
    0%{
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}





/* indexing testing */


.encapsulated {
    position: relative; /* Ensures the div creates a local stacking context */
    overflow: hidden; /* Hides any content outside the div's boundaries */
    width: 100vw; /* Adjust dimensions as needed */
    height: 100%;
}




/* carousel */

/* Make the carousel indicators (dots) black */
.carousel-indicators button {
    background-color: black !important; /* Sets the dot color */
  }
  
  /* Make the carousel control icons (arrows) black */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: black; /* Adds a black background to the icons */
    mask: none; /* Makes sure the icon background is visible */
    -webkit-mask: none;
    color: black;
  }





/* Media Queries */


@media screen and (min-width: 500px) {

    .column-expand-1x2{
        display: grid;
        grid-template-columns: 50% 50%;
    
    }

    .headline-medium{
    font-size: 2.33rem;   
}
    }


    .underline{
        text-decoration-thickness: 13px !important;

    }


    .projects-headline{
        width: 100%;
        aspect-ratio: 3.36/1;
        overflow: hidden;
        align-content: center;
        background-color: white;

    }

    .projects-headline h3,h3{
        font-size: 3vw;
        padding-bottom: calc((1/3.36))rem
    }

    .flag{
        height: 50vw; 
        width: auto;
    }




@media screen and (min-width: 1000px) {

    .flag{
        height: 30vw; 
        width: auto;
    }

    .projects-headline h3,h3{
        font-size: 2.5vw;
        padding-bottom: 1rem
    }
    
    .underline{
        text-decoration-thickness: 15px !important;

    }


}


@media screen and (min-width: 1500px) {


    .projects-headline h3,h3{
        font-size: 3vw;
        padding-bottom: 2rem;
        padding-top:2rem;
    }
  
    .underline{
        text-decoration-thickness: 18px !important;

    }


}