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

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}
/* style*/
.dotgothic16-regular {
    font-family: "DotGothic16", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  

.cormorant-garamond-light {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-style: normal;
  }

  .fira-code-header {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200; 
    font-style:initial;
}
  
.montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing:inherit;
    font-weight: 400;
    font-style: normal;
  }

.video-container {
    position: relative;
    min-width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 140%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100vh;
    z-index: -1;
    object-fit: cover;
    object-position: center;
    
    
    filter: grayscale(65%) contrast(90%) brightness(80%);
}



.content {
    display: flex;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background: rgba(0, 0, 0, 0.5); /* Slight overlay to improve text visibility */
}

.navbar {
    
    top: 40px;
    width: 100%;
    margin: 32px 18px;
    display: flex;
    justify-content: center;
    z-index: 1;
   
}

.nav-links a {
    display: flex;
    justify-items: center;
    
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 2rem;
    text-shadow: 8px 8px 12px rgba(0, 0, 0, 0.765);
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dad9d9, transparent); 
    left: 50%;
    bottom: 0px; 
    transform: translateX(-50%);
    transition: width 0.3s ease;


}

.nav-links a:hover::after {
    width: 80%;
    color: #fff;
}

.arrow{
    font-weight: lighter;
    font-size: 1.5rem;
    margin-top: 4px;
    margin-left: 12px;
    /*text-shadow: 3px 3px 10px rgba(239, 75, 4, 0.864);*/
    text-shadow:
    -1px -1px 15px rgb(238, 77, 3),  /* Top-left */
     1px -1.5px 1px rgb(126, 239, 5),  /* Top-right */
    -1px  1px 0 rgb(224, 6, 252),  /* Bottom-left */
     1px  1px 0 white;  /* Bottom-right */

}

.hero-text {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    max-width: 700px;
    
}

.hero-text h1 {
    padding: 0.5rem;
    color: rgb(218, 217, 217);
    padding-right: 3rem;
    padding-left: 1rem;
    border: 1px solid;
    border-radius: 16px;
    
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 
    0 0px 3px rgb(13, 245, 1),
    4px 4px 10px rgba(192, 71, 2, 0.494), 
    0 5px 10px rgba(150, 46, 25, 0.4), 
    inset 0 -2px 4px rgba(91, 91, 91, 0.2); 
}

.hero-text p {
    display: flex;
    color: rgb(218, 218, 218);
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.765);
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-text a {
    font-size: 3rem;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.765);
    color: rgb(218, 218, 218);
    
}

.main-container{
    
    width: 100%;
    flex:1;
    display: flex;
    position: relative;
    place-items: center;
    padding-top: 20px;
    
    
}

.sidebar {
    position: fixed;
    left: 2rem;
    top: 54%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar .btn {
    text-decoration: none;
    color: rgb(177, 177, 177);
    font-size: 1rem;
    transition: opacity 1s;
}

.main-view {
    margin: 0 auto;
    max-width: 800px;
   
    
    
}

.down-links{
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}


.btn {
    text-decoration: none;
    padding: 4px 12px;
    background-color: transparent; 
    
    color: #fff;
    border-radius: 5px;
    font-weight: lighter;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}


.btn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dad9d9, transparent); 
    left: 50%;
    bottom: 0px; 
    transform: translateX(-50%);
    transition: width 0.3s ease;


}

.btn:hover::after {
    width: 80%;
    color: #fff;
}




/* Mobile view */
@media (max-width: 1100px) {
    .navbar {
       margin-top: 200px;
    }

    .navbar{
        
    }

    .nav-links{

    }

    .main-container {
        margin-top: 5px;
        padding-bottom: 100px; 
        min-height: calc(100vh - 130px); 
       
    }

    .sidebar {
        position: fixed;
        left: 0;
        bottom: 2px;
        
        top: auto;
        transform: none;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        background: transparent;
        padding: 1rem;
        gap: 1.5rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .main-view {
        
        padding: 4rem;
        
    }

    .hero-text h1 {
        
        margin-left: 10px;
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
        border: 0.5px solid;
        box-shadow: 
    0 0px 2px rgb(13, 245, 1), /* Top highlight  importnt point to see*/
    2px 2px 6px rgba(192, 71, 2, 0.494), /* Bottom highlight */
    0 5px 6px rgba(150, 46, 25, 0.4), /* Underlying shadow */
    inset 0 -2px 4px rgba(91, 91, 91, 0.2); /* Inner shadow */
    }

    .hero-text p {
        font-size: 1.15rem;
        padding: 0 1rem;
    }

    .sidebar .btn{
        color: rgb(68, 232, 43);
    }
}

/* small Mobile View */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.2rem;
    }

    .hero-text p{
        
        font-size: 0.9rem;
    }
    .content{
        border: 1px solid
    }
    .navbar{
       
    }
    .main-container{
        
    }

     .main-view {
        
        padding: 2rem;
        
        height: 16rem;
       margin-top: -6rem;
    }
    

    .sidebar {
        gap: 1rem;
        padding: 0.8rem;
    }

    .sidebar .btn {
        font-size: 0.9rem;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .arrow{
        font-weight: lighter;
        font-size: 1.25rem;
        margin-top: 0px;
        margin-left: 12px;
    
    }
}

/* Very Small Mobile Styles */
@media (max-width: 320px) {
    .sidebar {
        gap: 0.5rem;
    }
    .navbar{
        
    }
    

    .hero-text h1 {
        font-size: 0.6rem;
        white-space: nowrap;
        text-overflow: ellipsis; 
        
    }

   

    .navbar{
        margin-top: 16px;
    }


    .arrow{
        font-weight: lighter;
        font-size: 1rem;
        margin-top: 0px;
        margin-left: 12px;
        
    
    }
    .sidebar a{
        font-size: 0.6rem;
    }
}
