*{
    overflow-x: hidden;
}
body {
    /* font-family: 'Cutive Mono', monospace;     */
    margin: 0;
    padding: 0;
    background-color: white;
    color: #333;
}

nav {
    background-color: #090909;
    overflow: hidden;
    box-shadow: 20px 10px 20px 10px #363434; /* Add box shadow here */
    position: fixed;
    width: 100%;
    z-index: 1;
}

nav a{
    float: left;
    /* display: block; */
    color: white;
    text-align: center;
    padding: 18px 26px;
    margin-top: 10px;
    text-decoration: none;
}

nav a:hover {
    background-color: white;
    color: #333;
    transition: .8s;
}

nav p{
    /* display: block; */
    float: left;
    text-align: center;
    padding: 0px 0px;
    margin-top: 26px;
    color: white;
}

.name{
    margin-left: 20px;
    display: flex;
    float: left;
}

.links{
    float: right;
    margin-right: 40px;
}
.menu-icon {
    display: none;
}

@media only screen and (max-width: 600px) {
    nav a {
        display: none;
    }

    .menu-icon {
        display: block;
        float: right;
        cursor: pointer;
        padding: 14px 16px;
    }

    .menu-icon:hover {
        background-color: #ddd;
    }

    .menu-items {
        display: none;
        clear: both;
    }

    .menu-items a {
        display: block;
    }
}
a{
    color: white;
}

ul {
    list-style-type: '- ';
    text-align: left;
}
/* a{
    color:#FDFFFC;

} */

header a{
    color: black;
}

.line{
    /* border: 1px solid #1a1c26;*/
    width: 65%;
 
 }
 
 
 #logo{
     height: 50px;
     padding: 10px;
     margin-right: 10px;
 }
 
 /* h2{
     color: white;
 } */

.name {
    margin-left: 20px;
    display: flex;
    float: left;
}

.links {
    float: right;
    margin-right: 40px;
}

.about-section {
    padding-top: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 40px 20px;
}

.intro-card {
    background-color: #FFF8E7;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.involvement-card {
    background-color: white;
    border: 1px solid #500800;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.interest-card {
    background-color: #500800;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

h2 {
    color: #500800;
}

.involvement-card h2 {
    color: #500800;
}

.interest-card h3 {
    color: white;
    margin-bottom: 10px;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

.intro-card {
    background: linear-gradient(135deg, #500800 0%, #2a0400 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

.intro-card h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.involvement-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 2px solid #f0f0f0;
}

.involvement-card h2 {
    color: #500800;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.interest-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #500800;
}

.interest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(80, 8, 0, 0.15);
}

.interest-card h3 {
    color: #500800;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.interest-card p {
    color: #666;
}

ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

ul li {
    margin-bottom: 1rem;
    position: relative;
}

ul li::before {
    content: "→";
    color: #500800;
    position: absolute;
    left: -1.5rem;
}

strong {
    color: #500800;
}


hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1rem auto;
}

@media (max-width: 768px) {
    .about-section {
        padding: 100px 1rem 2rem;
    }

    .intro-card {
        padding: 2rem;
    }

    .intro-card h2 {
        font-size: 2rem;
    }

    .involvement-card {
        padding: 1.5rem;
    }

    nav {
        padding: 0.5rem 1rem;
    }
}


footer {
    background-color: #343a40;
    color: #FDFFFC;
    text-align: center;
    padding: 20px 0;
}

footer hr{
    background-color: white;
}