@import url("https://use.typekit.net/vbl8sey.css");


:root { 
    --black: #222;
    --white: #FFFFFF;
    --orange: #DA7940; 
    --pink: #EFCACC; 
    --lightblue: #98B2CB;
    /* --lightblue: #A7C7E7;  */
    --darkgrey: #666666; 
    --beige: #F8F6E9;
}

/* Applies a reset for margin, padding, and box-sizing to ensure a consistent default style across different browsers. */
* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}

/* Sets the font family, background color, and other styles for the entire body of the website. */
body {
    font-family: "loos-normal", "roc-grotesk", "archivo-variable","freightdispcmp-pro";
    background-color: var(--white);
}


.logo {
    width: 9vw;
}

header {
    /* background-image: url(../images/bubbles.jpeg);
    background-size: cover; 
    background-position: 30% 12%;
    height: 137px;
    background-attachment: fixed; */
    background-color: var(--white);
    display: flex; 
    flex-direction: row; 
    justify-content: space-between;
    height: 137px;
    align-items: center;
    font-size: 32px;
    padding:3rem;
}

header.home-header {
    position: absolute;
    left: 0;
    top: 0; 
    width: 100%;
    z-index: 9999;
    background-color: unset;
}

/* Styles for the navigation section, including flex layout, row direction, and font size. */
nav {
    display: flex;
    flex-direction: row;
    align-items: center; 
    padding: 2px; 
    font-size: 24px;
    border-radius: 30px; 
    border: 2px #FFFFFF solid;
    width: 14.5em;
    justify-content: center;
}

.nav .div {
    display: flex;
    align-items: center;
    padding: 0.6em;
    cursor: pointer;
    font-size: 24px;
}

nav ul li a.inuse {
    color: var(--orange);
    /* background-color: var(--pink); */
}


ul {
    display: flex;
    justify-content: center;
    margin: 0px;
    padding: 0px;
    background: var(--blue);
    list-style-type: none;
    position: relative;
    color: var(--yellow);
}


ul li a {
    padding: 15px;
    color: var(--white);
    text-decoration: none;
    display: block;
    font-family: freight-display-pro, serif;
    font-weight: 700;
    font-style: normal;

}

ul ul {
    position: absolute;
    min-width: auto;
    background: var(--black);
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}

ul li:hover ul {
    display: block;
    z-index: 40;
}

.main-menu a:hover {
    color: var(--orange);
}

ul, ol {
    margin-bottom: 0;
    padding-left: 0;
}


/* new code implementing the new video  */
#myVideo {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure the video is behind other content */
}

.wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    text-align: left;
    /* margin-left: 5em; */
    z-index: 1;
    position: relative;
}

.video-wrapper {
    aspect-ratio: 16/9;
}

.wrapper-container {
    border-radius: 10px;
    margin-top: 25em; 
    z-index: 1;
}

/* Add some content at the bottom of the video/page */
.content {
    position: relative; /* Changed from fixed to relative to position based on the wrapper */
    z-index: 1; /* Ensure the content is above the video */
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
    margin-top: auto;
    margin-left: 5em;
}

.content h1 {
    color: var(--white);
    line-height: 2.3rem; 
    margin-bottom: 0.4em;
    font-size: 8.5em;
    font-family: "freightdispcmp-pro";
    font-weight: 700;
    font-style: normal;
}

  
.fill {
    font-family: "freight-big-pro";
    font-weight: 400;
    font-style: italic;
}

.content h2 {
    margin-top: 1.8rem;
    margin-bottom: 2rem; 
    font-size: 1.3rem;
    line-height: 1.6rem;
    font-family: 'archivo-variable';
    font-variation-settings: 'wght' 300, 'wdth' 100;
}

.content b {
    font-variation-settings: 'wght' 700, 'wdth' 100;
}


.container-btn {
    display: flex; 
    margin-top: 3em;
    margin-bottom: 3em;
}

.button-1 {
    background-color: var(--beige);
    border: 1px solid var(--white);
    color: var(--black);
    font-size: 1em;
    /* height: 57px; */
    height: 55px;
    width: 230px; 
    border-radius: 30px;
    display: inline-block; 
    text-align: center;
    cursor: pointer; 
    font-family: 'archivo-variable';
    font-variation-settings: "wdth" 100, "wght" 400;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}



.button-1:hover {
    background-color: var(--black);
    color: var(--beige);
    /* border: 2px solid var(--white); */
}



/* Arrow */

.arrowcontainer {
    display: flex;
    justify-content: center;
    position: center; /* Add position relative for absolute positioning */
    margin-top: 4em;
  }
  
  .scrolldown {
	position: relative;
	z-index: 0;
	cursor: pointer;
}

.scrolldown__arrows {
	position: relative;
	top: 12px;
	width: 48px;
	height: 48px;
}

.scrolldown__arrow {
	background: url(../images/arrow.webp) no-repeat;
	width: 48px;
	height: 16px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;

	transform: scale(0.3) translateY(-30px);
}

.scrolldown__arrow_1 {
	animation: scrolldown__arrow 3s ease-out infinite;
}

.scrolldown__arrow_2 {
	animation: scrolldown__arrow 3s ease-out 1s infinite;
}

.scrolldown__arrow_3 {
	animation: scrolldown__arrow 3s ease-out 2s infinite;
}

@keyframes scrolldown__arrow {
	33.3% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
	66.6% {
		opacity: 1;
		transform: scale(1) translateY(12px);
	}
	100% {
		opacity: 0;
		transform: scale(0.5) translateY(40px);
	}
}

.scrollfont h3 {
    font-family: "archivo-variable";
    font-variation-settings: "wdth" 100, "wght" 400;
    display: flex;
    justify-content: center;
    margin-top: 1em;
    font-size: 0.8em;
}

/* Featured work header  */
.learnmore-btn{
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
} 

.hometext {
    display: flex; 
    justify-content: center;
}


.hometext h2 {
    font-family: "freightdispcmp-pro";
    font-weight: 700;
    font-style: normal;
    color: var(--black);
    text-align: center;
    font-size: 5em;
    margin-top: 1em;
} 



/* container  */
.homepage_work {
    display: flex; 
    justify-content: center;
    margin-top: 3em;
    gap: 50px;
}

.outercontainer {
    width: 379px;
    height: 445px;
    border-radius: 30px;
    box-shadow: 0px 0px 4px 1px  rgba(0, 0, 0, 0.25); 
    /* box-shadow: 0px 0px 4px 1px  rgba(105, 105, 105, 0.25);  */
    /* box-shadow: 0px 0px 4px 1px  rgba(0, 0, 0, 0.25);  */
    border-radius: 30px; 
    /* border: 3px solid #E8B9BC; */
    /* border: 2px solid var(--darkgrey); */
    transition: all .2s ease-in-out; 
}

.outercontainer:hover {
    transform: scale(1.05); 
}

.featured-box {
    display:flex; 
    align-items: center;
    flex-direction: column;
    justify-content: center;
}



.featured-img {
    width:329px; 
    height: 186px; 
    border-radius: 1.8em;
    overflow: hidden;
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.featured-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.featured-content {
    padding-top: 0.7rem;
    padding-bottom: 0.9rem; 
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-content: flex-start;
    padding-left: 2em;
}

.featured-img:hover img {
    opacity: 0.7;
}

.line {
    border-bottom: 1px solid #000;
    width:90%;
}

.featured-content h2 {
    font-family: 'archivo-variable';
    font-style: bold;
    color: var(--orange);
    line-height: 2em; 
    font-size: 1.875em;
} 


/* this one?  */
/* .featured-content h2 {
    font-family: freight-display-pro, serif;
    font-weight: 700;
    font-style: normal;
    color: var(--black);
    line-height: 2em; 
    font-size: 1.875em;
} */








.featured-content h3 {
    font-family: 'archivo-variable';
    line-height: 2em; 
    margin-top: 0.5em;
    color: var(--black);
} 

.featured-content p {
    font-family: 'archivo-variable';
    font-variation-settings: "wdth" 100, "wght" 400;
    color: var(--black);
}



.descript-container {
    display: flex;
    justify-content: flex-start;
    gap:5px;
    padding-left: 1.5em;
    margin-top: 1.3em;
}

.description-text {
    font-family: 'archivo-variable';
    color: var(--black);
    font-variation-settings: "wdth" 100, "wght" 500;
    font-size: 0.75em; 
    width: 9em;
    height: 3em;
    border-radius: 30px;
    border: 1px solid var(--lightblue);
    /* background: #EFCACC; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}




.container-btn2 {
display: flex; 
justify-content: center;
align-items: center;
margin-top: 3em;
}

.button-2 {
    color: var(--black);
    border: 1px solid var(--black);
    background-color: var(--beige);
    /* padding: 1em;  */
    font-size: 1em;
    height: 57px;
    width: 230px; 
    border-radius: 30px;
    display: inline block; 
    text-align: center;
    cursor: pointer; 
    font-family: 'archivo-variable';
    font-variation-settings: "wdth" 100, "wght" 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 3em;
}

.button-2:hover {
    background-color: var(--black);
    color: var(--beige);
}



/* footer  */
footer {
    margin-top: 13em;
}

.footercontainer {
    width: 530px;
    height: 115px;
    margin: 0 auto; 
    position: relative; 
    display: flex; 
    justify-content: center;    
    align-items: center;
}
 
.footerimage img{
    height: 53px;
} 


.title {
    /* width: 197px;  */
    margin-right: 30px;
    height: 50px; 
    /* white-space: nowrap;  */
}

.contact {
    /* white-space: nowrap;  */
    height: 53px;
}

.title h4  {
    font-size: 0.93em;
    font-family: 'loos-normal';
    margin-bottom: 0.7em;
}

.title p {
    font-size: 12px;
    font-family: "roc-grotesk";
}

.contact h4 {
    font-size: 0.93em;
    font-family: 'loos-normal';
    margin-bottom: 0.5em;
}

.contact img {
    height: 22px;
    margin-right: 7px;
}

a {
    text-decoration: none; /* Removes underline from all anchor elements */
}

@media only screen and (min-width: 769px) {
    #hamburger {
        display: none; /* Use !important to ensure this style takes precedence */
    }
}


@media screen and (min-width: 768px) and (max-width: 1200px) {
    .homepage_work {
        transform: scale(0.8); 
        transform-origin: top center; 
    }
    
    .outercontainer {
        transform: scale(0.9); 
        transform-origin: top center; 
    }
    
} 

/* Media query for responsive design, adjusting styles for screens with a maximum width of 768 pixels. */
@media only screen and (max-width: 768px) {
    
    .main-menu {
    display: none;
    margin: 0px;
    padding: 0px;
    background: var(--pink);
    right: 0;
    list-style-type: none;
    position: absolute;
    flex-direction: column;
    z-index: 99999;
    width: 50%;
    /* top: 135px; */
    top: 90px;
    }

    
    #hamburger {
        display: block;
        }


    #hamburger .bar {
        background-color: var(--orange); /* Set the color of the bars to pink */
        width: 30px; /* Adjust width of the bars */
        height: 3px; /* Adjust height of the bars */
        display: block;
        margin: 6px auto; /* Adjust spacing between bars */
        transition: background-color 0.3s ease; /* Add transition effect */
    }
    
    .menu a:hover {
        color: var(--pink); 
    }
    
    .menu a {
        transition: color 0.3s ease;
    }
    
    #hamburger:hover {
        background-color: var(--pink); 
    }
    
    #hamburger {
        transition: background-color 0.3s ease;
    }

    nav {
        border: none; /* Removes the border on small screens */
        width: auto;
    }

    .content h1 { /* Adjust font size for smaller screens */
        font-size: 3rem;
        margin-top: 50%;
    }

    .content h2 { /* Adjust font size for smaller screens */
        font-size: 1rem;
        margin-top: 5%;
    }

    .content {
        margin-left: 0;
    }

/* 
    .wrapper video-wrapper {
        margin:0;
    }*/

    .video-wrapper {
        aspect-ratio: 5 / 9;
    } 

    .wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        color: white;
        text-align: left;
        margin-left: 0;
        z-index: 1;
        position: relative;
        overflow: hidden;
    }

    #myVideo {
        position: absolute;
        /* right: -700px;
        bottom: -13px;
        min-width: 100%;
        min-height: 100%; */
        z-index: -1; /* Ensure the video is behind other content */
        object-fit: cover;
    }

   .container-btn { /* Adjust margin for buttons on smaller screens */
        margin-top: 2%;
        margin-bottom: 2%;
    }

    .button-1 {
        font-size: 1em; /* Further reduced font size for smaller screens */
        height: 35px; /* Further reduced height for smaller screens */
        width: 150px; /* Further reduced width for smaller screens */
    }

    .homepage_work {
        display: flex;
        justify-content: center;
        margin-top: 1em;
        gap: 50px;
        flex-direction: column;
        flex-wrap: wrap;
        margin: auto;
        width: 1600px;
        max-width: 100%;
        height: auto;
        padding: 20px;
    }

    .descript-container {
        justify-content: flex-start;
        margin-bottom: 1.5em;
        padding: 0.5em;
        margin-left: 1em;

    }

    .featured-content {
        padding-left: 1.5em;
    }

    .footercontainer {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-top: 5em; /* Adjust margin-top as needed */
    }

}
    