* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #2f3136;
    color: #dcddde;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar, footer {
    background: #202225;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 5px;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    color: #dcddde;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover,
.social-icons a:hover {
    color: #7289da;
}

.nav-links i {
    margin-right: 6px;
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #dcddde;
    z-index: 1100;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 55px;
        right: 20px;
        background: #202225;
        border: 1px solid #444;
        border-radius: 10px;
        padding: 10px 15px;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
        z-index: 1000;
        width: 180px;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar {
        position: relative;
        justify-content: space-between;
    }
}

main.center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

main.center h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

main.center p {
    max-width: 700px;
    font-size: 1.1rem;
    color: #ccc;
}

.social-icons a {
    color: #fff;
    margin: 0 8px;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.about-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

.about-box {
    background-color: #202225;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.about-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #7289da;
}

.about-box h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.about-box p {
    font-size: 0.95rem;
    color: #ccc;
}

.about-section {
    margin-top: 50px;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.tech-item {
    width: 120px;
    height: 120px;
    background-color: #2f3136;
    border: 2px solid #444;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    text-align: center;
}

.tech-item i {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: #7289da;
}

.tech-item p {
    font-size: 0.9rem;
    margin: 0;
}

.tech-item:hover {
    background-color: #40444b;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: #fff;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding: 0 40px;
}

.about-text {
    flex: 1;
}

.about-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.about-text p {
    max-width: 600px;
    padding: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-pfp {
    flex-shrink: 0;
}

.pfp-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .about-text p {
        padding: 10px;
        font-size: 1rem;
    }

    .about-boxes {
        padding: 0 15px;
    }

    .about-section {
        padding: 0 15px;
    }
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #b9bbbe;
  background-color: #2f3136;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #dcddde;
  font-weight: 500;
}

.breadcrumb li::after {
  content: "›";
  margin: 0 8px;
  color: #72767d;
  font-weight: bold;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  color: #7289da;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.breadcrumb a:hover {
  color: #aabfff;
  text-decoration: underline;
}