/* Global Styles */
* {
    font-family: 'Share Tech Mono', monospace;
    
}

body {
    margin: 0;
    padding: 20px;
    display: grid;
    position: relative;
}

/* Faded background image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('logo.png');
    background-size: contain; /* Keeps the logo proportional */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05; /* Very faded */
    z-index: -1; /* Behind all content */
    pointer-events: none; /* Doesn't interfere with clicking */
}

.logo {
    height: 60px; /* Adjust size as needed */
    width: auto;
    padding: 5px;
    margin: 0px;
}
.name {
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 60px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 0px;

}
.student{
    font-size: 15px;
    text-align: center;
    margin-top: 0px;
    font-weight:lighter;
    color: grey;
}
.navigation{
    justify-content: center;
    text-align: center;
    display: flex;
    gap: 50px;
    font-size: 30px;
}

.nav-button {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    color: #666;
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.socials{
    display: flex;
    justify-content: right;
    text-align: center;
    gap: 10px;
    font-size: 10px;
    margin-top: -30px;
}

.socials a {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.socials a:hover {
    color: #666;
    transform: translateY(-1px);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.footer{
    text-align: center;
    font-size: 10px;
    color: grey;
    position: fixed;
    bottom: 5%; /* Positions it underneath the keyboard */
    left: 0;
    right: 0;
    z-index: 2;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -10px;
}

.my-favorites {
    text-align: center;
    margin: 20px 0;
    display: block;
    width: 100%;
}

.my-story {
    text-align: center;
    margin: 20px 0;
    display: block;
    width: 100%;
}

.page-title {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    margin: 60px 0 40px 0;
    color: #333;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.favorite-box {
    background-color: #f4f4f4;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.favorite-box:hover {
    transform: translateY(-5px);
}

.favorite-box h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.favorite-box p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.movie-poster {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.movie-poster:hover {
    transform: scale(1.05);
}

.tv-poster {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tv-poster:hover {
    transform: scale(1.05);
}

.hobby-image {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hobby-image:hover {
    transform: scale(1.05);
}
.game-image{
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.game-image:hover {
    transform: scale(1.05);
}

/* Projects & Experience Page Styles */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin: 40px 0 30px 0;
    color: #333;
}

/* Experience Section */
.experience-section {
    margin: 40px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.experience-card {
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 24px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.experience-item h4 {
    margin: 0 0 5px 0;
    color: #444;
    font-size: 18px;
}

.institution {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.date {
    color: #888;
    font-size: 12px;
    margin: 5px 0 10px 0;
}

.description {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.course-item h4 {
    margin: 0 0 5px 0;
    color: #444;
    font-size: 16px;
}

.course-item p {
    color: #555;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-category h4 {
    margin: 0 0 5px 0;
    color: #444;
    font-size: 16px;
}

.skill-category p {
    color: #555;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* Projects Section */
.projects-section {
    margin: 60px 0 40px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-card {
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 20px;
}

.project-tech {
    color: #666;
    font-size: 14px;
    margin: 0 0 15px 0;
    font-style: italic;
}

.project-description {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    text-decoration: none;
    color: #333;
    background-color: #e0e0e0;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-image:hover {
    transform: scale(1.02);
}

/* Contact Page Styles */
.contact-section {
    margin: 60px 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-item {
    margin-bottom: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 18px;
}

.contact-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #666;
}

.email-link {
    text-decoration: none;
    color: inherit;
    font-size: 18px;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #666;
}

/* Story Content Styles */
.story-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    line-height: 1.6;
}

.story-content p {
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    text-align: left;
}

.story-content p:last-child {
    margin-bottom: 0;
}