* { box-sizing: border-box; } /*well looks like if i don't have this my site brokes, COOL */
body{margin:0; padding: 0; overflow-y: scroll;} /*makes sure theres no border*/
#background { 
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    position: fixed;
    background: url('Background0.jpg') center center / cover no-repeat;
    z-index: -1;
}

#main-website {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    max-height: 1000px;

    margin: 20px auto;

    /*border-left: 1px solid #3d3a3a;
    border-right: 1px solid #3d3a3a;
    border-bottom: 2px solid #3d3a3a;*/
}

#main-header {
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;

    background-color: rgb(0, 0, 0);
    border-radius: 70px 70px 0 0;     
    color: white;
    background: linear-gradient(180deg,rgba(172,172,172,.9) 0,rgba(71,71,71,.9) 20%,rgba(19,19,19,.9) 40%,rgba(7,7,7,.93) 100%);
    
    border-right: 1px solid #3d3a3a;
    border-left: 1px solid #3d3a3a;
    border-top: 2px solid #3d3a3a;
   
}
.PFP-ICON {
    width: 90%; height: 90%;
    background: url('M15-LOGO.png') center center / cover no-repeat;
    border-radius: 4px; 
}

#PhotoIcon {
    margin-left: 4%;
    height: 100px; width: 100px;
    background: url('PfpBorder.png') center center / contain no-repeat;
    padding: 13px; 
    box-sizing: border-box; display: flex;
    justify-content: center; 
    align-items: center;
}

.main-header-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
    font-family: 'Segoe UI',
}
.main-header-text h1{
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 1);
}

.main-header-text p {
    margin: 0;
    font-size: 14px;
    color: #a0ffa0; 
    text-shadow: 0 2px 6px rgba(0, 0, 0, 1);
}

#main-content {
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 0 0 5px 70px;
    border-right: 1px solid #3d3a3a;
    border-left: 1px solid #3d3a3a;
    border-bottom: 2px solid #3d3a3a;

    min-height: 600px; 

    display: flex; 
}

.LeftSide-Pannel{
    background: rgba(21, 20, 20, 0.75);
    border: 1px solid rgba(120, 160, 120, 0.4);
    height: auto; width: 20%;
    border-radius: 5px 5px 5px 60px;
    margin-right: 5px;
    padding: 10px;
}

.MainSide-Pannel{
    background: rgba(21, 20, 20, 0.75);
    border: 1px solid rgba(120, 160, 120, 0.4);
    height: auto; width: 100%;
    border-radius: 5px; 
    padding: 10px;

}

.menu-pannel{
    background-color: transparent;
    border: 1px solid rgba(120, 160, 120, 0.4);
    border-radius: 5px;
    margin: auto; padding: 5px;
    height: auto; width: 100%;
    overflow-y: auto;
}

.menu-pannel-title{
    background: rgba(21, 20, 20, 0.90);
    height: 30px; width: 100%;
    color: white; display: flex;
    align-items: center; justify-content: center;
    border-radius: 5px; margin: auto;
}
hr {
    border: none; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}
.menu-pannel-button{
    background: rgba(21, 20, 20, 0.70);
    height: 30px; width: 100%;
    color: white; display: flex;
    align-items: center; justify-content: center;
    border-radius: 5px; margin: auto;
    margin-bottom: 5px; border: none;
}
.menu-pannel-button:active{ transform: scale(0.98);}
.menu-pannel-button.selected {
    background: rgba(120, 160, 120, 0.35);
    border: 1px solid rgba(120, 160, 120, 0.7);
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.2);
}


.tab-content { display: none; }
.tab-content.active { display: block; } 


.page-denomination{
    display: flex;
    align-items: center;
    justify-content: center;

    height: 30px; width: 100%;

    background-color: black;
    background: linear-gradient( 180deg,rgba(172, 172, 172, 0.9) 0%,rgba(71, 71, 71, 0.9) 10%,rgba(19, 19, 19, 0.9) 40%,rgba(7, 7, 7, 0.93) 50%);

    color: white;
    text-shadow: 0 2px 6px rgb(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.introduction-image {
    width: 100%;
    height: 180px;
    margin: 10px auto;
    border-radius: 8px;
    position: relative; overflow: hidden;
    
    background-color: #000;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.introduction-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    
    background-image: url('Background2.webp'); 
    background-size: cover;
    background-position: center;

    opacity: 0.5; z-index: 1;
}

.intro-cover-text {
    position: absolute;  bottom: 20px;  
    left: 20px;  right: 20px;
    z-index: 2;  display: flex;
    flex-direction: column;
}
.intro-cover-text h2 {
    margin: 0; font-size: 20px;
    font-weight: bold; color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}
.intro-cover-text p {
    margin: 5px 0 0 0; font-size: 13px;
    color: #cccccc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.introduction-text{
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    height: auto; width: 100%;
    border-radius: 5px;
}

.cool-blue {
    color: #00d2ff;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}
.welcome-title, .section-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}
p {
    color: white;
}

.main-cards{
    height: 500px; width: 100%;
    background-color: black;
}

.project-cover-container {
    width: 100%;  height: 180px;
    margin: 10px auto;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.project-cover-container::before {
    content: ''; position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    
    background-image: url('Background1.jpg'); 
    
    background-size: cover;
    background-position: center;

    opacity: 0.5; 
    
    z-index: 1;
}

.cover-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    text-align: left;
}

.cover-text h2 {
    margin: 0;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.cover-text p {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: #cccccc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.projects-grid {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; margin-top: 5px; 
}

/*---------------------------------*/

.project-card {
    background: rgba(21, 20, 20, 0.75);
    border: 1px solid rgba(120, 160, 120, 0.4);
    border-radius: 8px; overflow: hidden; 
    display: flex; flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 210, 255, 0.6);
}

.project-card-image {
    width: 100%; height: 140px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card-content {
    padding: 12px; display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card-content h4 {
    margin: 0 0 6px 0;
    font-size: 16px; color: #ffffff;
}

.project-card-content p {
    margin: 0 0 15px 0;
    font-size: 12px; color: #cccccc;
    line-height: 1.4; flex-grow: 1;
}

.repo-button {
    display: block;  text-align: center;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    
    background: linear-gradient(180deg, #00d2ff 0%, #0080ff 100%);
    border: 1px solid #00e5ff;
    border-radius: 5px;
    
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    transition: all 0.2s ease;
}

.repo-button:hover {
    background: linear-gradient(180deg, #33dcff 0%, #1a8cff 100%);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.8), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.repo-button:active {
    transform: scale(0.97);
}

/*-------------------------------*/

.about-me-container {
    background: rgba(21, 20, 20, 0.25);
    border: 1px solid rgba(120, 160, 120, 0.4);
    border-radius: 8px; padding: 20px;
    margin-top: 15px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px); 
}

.about-text h2 {
    margin: 0 0 16px 0; font-size: 22px;
    font-weight: bold; color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    display: flex; align-items: center; gap: 8px;
}

.about-text p {
    margin: 0 0 14px 0; font-size: 14px;
    line-height: 1.6; color: #dddddd;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/*------------------------------------ */

.dvd-container {
    background: rgba(15, 15, 20, 0.75);
    border: 1px solid rgba(120, 160, 120, 0.4);
    border-radius: 8px; padding: 15px;
    margin-top: 15px; display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.dvd-stats {
    width: 100%; display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    color: #dddddd;
    font-family: monospace;
}

#dvd-canvas {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    width: 100%; height: 300px;
    display: block;
}