/* ============================= */
/* RESET */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================= */
/* BASE */
/* ============================= */
body {
    font-family: "Poppins", sans-serif;
    background-color: black;
}

/* ============================= */
/* NAVBAR */
/* ============================= */
.navbar {
    width: 100%;
    height: 60px;
    background-color: #320101;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 50px;
    color: gold;
    font-family: "Rowdies", sans-serif;
}

/* Logo */
.logo-container {
    flex: 1;
}

.logoimage {
    height: 40px;
    width: auto;
    cursor: pointer;
}

.logo {
    font-size: 24px;
    color: rgb(239, 190, 14);
    cursor: pointer;
    text-align: center;


}

/* Navigation */
.home-container {
    flex: 4;
}

.homelist {
    display: flex;
    list-style: none;
    gap: 30px;
}

.home-list-item {
    cursor: pointer;
    color: #c48f0a;
    padding: 5px 10px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.home-list-item a {
    text-decoration: none;
    color: inherit;
}

.home-list-item:hover {
    color: rgb(177, 10, 10);
    background-color: #e5c40a;
}

/* Profile */
.info-container {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.profile {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c38a0e;
}
.pfplink {
    text-decoration: none;
}
.pfptext {
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    color: #c48f0a;
    padding: 4px 8px;
    border-radius: 6px;
    transition: 0.3s ease;
    text-decoration: none;
}

.pfptext:hover {
    color: rgb(177, 10, 10);
    background-color: #e5c40a;
}

/* ============================= */
/* SIDEBAR */
/* ============================= */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 100vh;
    background-color: #330101;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-logo {
    width: 45px;
    height: 45px;
    margin-top: 15px;
    border: #c38a0e solid 2px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    background-color: #f4f2f8;
    transition: 0.3s ease;
}

.sidebar-logo:hover {
    transform: scale(1.08);
}

/* ============================= */
/* HOME SECTION */
/* ============================= */
.Home {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #792202, #3d0702, #660d03);
    color: rgb(224, 174, 10);
    text-align: center;
    padding: 40px;
}

.Homeimg {
    max-width: 800px;
}

.Homeimg img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #bc9702;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.Homeimg img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(237, 144, 5, 0.7);
}

.Homeimg h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.Homeimg h1 span {
    color: #e0af0b;
}

.typing-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ac7c05;
}

.Homeimg p {
    font-style: italic;
    font-size: 1rem;
    color: #c38a0e;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================= */
/* TABLET RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {

    .container {
        padding: 0 20px;
    }

    .homelist {
        gap: 15px;
    }

    .Homeimg h1 {
        font-size: 2rem;
    }

    .Homeimg img {
        width: 150px;
        height: 150px;
    }
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 480px) {

    .container {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    .home-container {
        display: none; /* Hide nav links on small screens */
    }

    .info-container {
        justify-content: center;
        margin-top: 5px;
    }

    .sidebar {
        display: none; /* Hide sidebar */
    }

    .Home {
        padding: 20px;
    }

    .Homeimg h1 {
        font-size: 1.6rem;
    }

    .typing-text {
        font-size: 1rem;
    }

    .Homeimg p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .Homeimg img {
        width: 120px;
        height: 120px;
    }
}




