/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: "Poppins", sans-serif; 
    background-color: black;
}

/* Navbar */
.navbar {
    width: 100%;
    height: 50px;
    background-color: #2d0202;

}

.container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 50px;
    color: gold;
    font-family: "Rowdies", sans-serif;
    
}

/* Logo */
.logo-container {
    flex: 1;
}
.logoimage{
    height: 40px;          
    width: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.logo {
    font-size: 24px;
    color: rgb(239, 190, 14);
    cursor: pointer;
    line-height: 50px;
}

/* Navigation */
.home-container {
    flex: 4;
    
}

.homelist {
    display: flex;
    list-style: none;

}

.home-list-item {
    margin-right: 30px;
    cursor: pointer;
    color: #c48f0a;
    background-color: transparent;
    padding: 5px 10px;
    border-radius: 6px;
    transition: color 0.4s ease, background-color 0.4s ease;
    
}
.homelist{
    text-decoration: none;
    color: #c48f0a;
}
.homelist:hover {
    color: rgb(177, 10, 10);
}


.home-list-item:hover {
    color: rgb(177, 10, 10);
    background-color: #e5c40a;}

.home-list-item main{
    font-weight: bold;
    


}

/* Profile */
.info-container {
    flex: 2;
    display: flex;
    align-items: center;
    
}

.profile {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;

}
.pfplink{
    list-style: none;
}
.pfptext {
    margin-left: 10px;
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    color : #c48f0a;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.4s ease, background-color 0.4s ease;
    text-decoration: none;
}

.pfptext:hover {
    color: rgb(177, 10, 10);;
    background-color: #e5c40a;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 100vh;
    background-color: #2f0101;

}

.sidebar-logo {
    width: 45px;              
    height: 45px;
    margin-top: 10px;

    border-radius: 50%;       
    object-fit: cover;        

    cursor: pointer;
    background-color: #f4f2f8;   
}

.sidebar-logo:hover {
    transform: scale(1.08);
    transition: 0.2s ease-in-out;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Home Section */
.Home {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #3a3939, #312d2d, #000000);
    color: rgb(224, 174, 10);
    text-align: center;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
}

/* Container */
.Homeimg {
    max-width: 800px;
}

/* Profile Image */
.Homeimg img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #bc9702;
    margin-bottom: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.Homeimg img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(237, 144, 5, 0.7);
}

/* Name */
.Homeimg h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.Homeimg h1 span {
    color: #e7dbda;
}

/* Subtitle */
.typing-text {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ac7c05;
}

/* Quote */
.Homeimg p {
    font-style: italic;
    font-size: 1rem;
    color: #c38a0e;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}



