
:root{
    --primary-color: #ee703a;
    --primary-color-b : #FF407A;
    --primary-color-c: #004F41;
    /* 0B4FCE */
    /* ff8432 */
    --title-color: #ebebeb;
    --secondary-color: #cac9c9;
    --background-color: #070709; 
    --light-bg-color :  #191920;
    --pill-colour: rgba(255, 255, 255, 0.08);
    /*FFFCF5  */
    --border-radius : 25px;
    --font-family: "Rubik", sans-serif;
}


body{
    background-color: var(--background-color);
    font-family: var(--font-family);
    margin:0rem 4rem;
    overflow-x: hidden;
}

h1,h2,p{
    margin: 0px;
}

p{
    color: var(--secondary-color);
}

header{
    min-height: 76px;
    display: flex;
    overflow-anchor: none;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--background-color);
    border-bottom: 2px solid var(--pill-colour);
}

@media (min-width: 601px) {
    header {
        box-sizing: border-box;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding-inline: 4rem;
        
    }
}



.about-section{
    margin: 25px 0px;
}

.arrow{
    stroke: var(--primary-color);
    transition: .2s ease;
    /* font-size: 10rem; */
}

#project-index-container{
    display: grid;
    grid-template-columns: repeat(3, minmax(1rem, 1fr));
    grid-auto-rows: max-content;
    gap: .3rem;
}


.project-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.project-grid-item-home{
    display: block;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: .5s ease;
    border: 2px solid var(--light-bg-color);
}

.project-grid-item{
    display: block;
    text-decoration: none;
    border-radius: var(--border-radius);
}


.project-grid-item-home:hover{
    transform: scale(1.03);
    background: var(--light-bg-color);
    transition: .5s ease;
}

.project-grid-item-home:hover .arrow{
    stroke: white;
    transform: translateX(5px);
}


li::marker{
    color: var(--primary-color);
}

li{
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.project-points {
    padding: 0;
    list-style: none;
    border-radius: var(--border-radius);
}

.project-points li {
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    background: var(--pill-colour);
}

.project-description{
    text-align: center; 
    margin: 30px 0px;
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    background: var(--pill-colour);
}

.logo{
    width: 7rem;
    margin: 0 auto;
    margin-right:1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container .logo {
    margin: 0;
}

.logo-text{
    font-size:1.1rem;

}

.menu-items{
    display: flex;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.menu-link-a, .menu-link-b,.menu-link-c{
    color: var(--secondary-color);
    transition: 0.5s ease;
    margin: 5px;
}

.menu-link-a p, .menu-link-b p, .menu-link-c p {
    color: inherit;
    margin: 0;
}


.menu-link-a:hover{
    color: var(--primary-color);
    transform: scale(1.1);
}

.menu-link-b:hover{
    color: var(--primary-color-b);
    transform: scale(1.1);
}

.menu-link-c:hover{
    color: var(--primary-color-c);
    transform: scale(1.1);
}

.about-section{
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

.header-image{
    border-radius: var(--border-radius);
    display: block;
    margin: 20px auto 20px;
    width: 100%;
    height: auto;
}

.header-image-btn{
    justify-content: center;
    display: flex;
    /* margin-bottom: 0.1rem; */
    width: 100%;
    transition: 0.3s;
    border-radius: var(--border-radius)
}

.project-btn-container{
    position: relative;
    text-align: center;
}

.grid-image{
    width: 100%;
    border-radius: var(--border-radius);
}

.project-btn-overlay{
    cursor: pointer;
    border-radius: var(--border-radius);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: var(--primary-color);
}

.project-btn-container:hover .project-btn-overlay {
  opacity: 0.6;
}

.project-btn-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: 56px;
    font-weight: bold;
    color: var(--background-color);
}

.header-image-btn:hover{
    opacity: 0.8;
    transition: 0.3s;
}

.year-title {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 42px;
}

.show-roles{
    font-size: 18px;
    color: var(--secondary-color);
    opacity: 0.5;
}

.show-title {
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--title-color);
    opacity: 0.9;
}

.show-subtitle{
    color: var(--title-color);
    opacity: 0.7;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.showcase-tags{ 
    align-items: center;
    justify-content: center;
}

.showcase-role{
    /* border: 2px solid var(--light-bg-color); */
    color: #76797d;
    border-radius: var(--border-radius);
    padding-right: .5rem;
}

.showcase-role:not(:last-child)::after {
  content: "•";
  margin-left: 0.5rem;
  color: #797c81; /* Muted color for the dot */
}
.email{
    display: flex;
    color: var(--title-color);
    margin: 30px 0px;
    text-align: center;justify-content: center;
}


.showcase-title{
    color: var(--primary-color);
    margin: 30px 0px;
    text-align: center;
    font-size: 36px;
}

#projects-title {
    scroll-margin-top: 100px;
}

.side-projects-title{
    color: var(--primary-color-b);
    margin: 30px 0px;
    text-align: center;
    font-size: 36px;
}

.contact-title{
    color: var(--primary-color-c);
    margin: 30px 0px;
    text-align: center;
    font-size: 36px;
}

.index-item{
    margin-bottom: 20px;
    text-align: left;
}

.full-width-video-container {
    width: 100vw;
    height: min(85vh, 50vw);
    position: relative;
    left: 50%;
    overflow: hidden;
    margin-left: -50vw;
}

.full-width-video-container video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.video-player{
    width: 100%;
    border-radius: var(--border-radius);
}

.project-header{
    margin-bottom: 0;
    
}

.project-header-home{
    padding: 15px;
}

.project-title{
    font-weight: bold;
    font-size: 24px;
    color: var(--title-color);
}


.project-subtitle{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.3rem;
}


.side-project-subtitle{
    font-size: 20px;
    color: var(--primary-color-b);
    font-weight: bold;
}


.project-roles{
    font-size: 18px;
    color: var(--secondary-color);
}

.project-roles-home{
    font-size: 12px;
    color: var(--secondary-color);
}

.hover-icon{
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    
}

.press-link{
    color: var(--title-color);
    transition: 0.2s ease-in-out;
}

.press-link:hover{
    color:var(--primary-color);
}

.meta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.showcase-group, .tag {
  /* display: flex;
  justify-content: center; */
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* .showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
} */

.tag {
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--border-radius);
  background: var(--pill-colour);
  color: #ddd;
}
.tag.tool {
  border: 1px solid rgba(255, 255, 255, 0.15);
}




@media (max-width: 1100px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    body{
        margin:0px 30px;
    }

    header {
        padding-inline: 30px;
    }

    .menu-items{
        font-size: 14px;
    }

    .project-roles-home{
        font-size: 8px;
    }

    .show-title {
        font-size: 24px;
    }

    .show-roles{
        font-size: 16px;
    }

    ul{
        padding-inline-start: 10px;
    }

}

@media (max-width: 900px) {
    header {
        min-height: 120px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .logo-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .menu-items {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    body {
        margin-inline: 16px;
    }

    p {
        line-height: 1.6;
    }

    header {
        box-sizing: border-box;
        width: calc(100% + 32px);
        margin-left: -16px;
        padding-inline: 8px;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    /* padding: 20px 0; */
    }

    .logo-container {
        display: block;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .menu-items {
        margin-left: 0;
        gap: 8px;
    }

    .menu-link-a, .menu-link-b, .menu-link-c {
        margin: 6px;
    }

    .project-roles-home {
        font-size: 8px;
        line-height: 1.4;
    }

    .showcase-title,
    .side-projects-title,
    .contact-title {
        font-size: 30px;
    }

    #project-index-container{
        display: block;
    }

    .showcase-role{
        font-size: 0.6rem;
    }

    li{
        margin-bottom: .7rem;
    }

    .project-points {
        grid-template-columns: 1fr;

    }



    .logo{
        width:8rem;
    }   

    .logo-text{
        font-size:24px;
    }



    .full-width-video-container {
    width: calc(100% + 32px);
    height: auto;
    position: relative;
    left: -16px;
    margin-left: 0;
    margin-right: 0;
    }

    .full-width-video-container video,
    .full-width-video-container iframe {
    width: 100%;
    height: auto;
    display: block;
    object-fit: initial;
    }

    header + .header-image {
        width: calc(100% + 32px);
        height: auto;
        left: -16px;
        margin: 0 0 20px;
        object-fit: initial;
    }

    .video-player{
        border-radius: 0px;
    }
}

