*{
    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 button - visible on mobile */
.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #dcddde;
    z-index: 1100;
}

/* Responsive dropdown menu */
@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;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.wave{
    display: inline-block;
    animation: wave 2s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave{
    0%, 60%, 100%{transform: rotate(0);}
    10%{transform: rotate(14deg);}
    20%{transform: rotate(-8deg);}
    30%{transform: rotate(14deg);}
    40%{transform: rotate(-4deg);}
    50%{transform: rotate(10deg);}
}

.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;
}

.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;
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.title {
    color: #fff;
    font-size: 28px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.social-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.social-btn:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.social-btn i {
    font-size: 30px;
    color: white;
    transition: all 0.4s ease;
    z-index: 2;
}

.social-btn .text {
    position: absolute;
    bottom: -100%;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    font-weight: 500;
    transition: all 0.4s ease;
    color: white;
    font-size: 14px;
}

.social-btn:hover .text {
    bottom: 10px;
}

.social-btn:hover i {
    transform: translateY(-15px);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.social-btn:hover::before {
    transform: translateX(100%);
}

/* Social media specific colors */
.facebook { background: linear-gradient(45deg, #3b5998, #6d84b4); }
.twitter { background: linear-gradient(45deg, #1da1f2, #0084b4); }
.instagram { background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045); }
.github { background: linear-gradient(45deg, #333, #6e5494); }
.youtube { background: linear-gradient(45deg, #ff0000, #cc0000); }
.linkedin { background: linear-gradient(45deg, #0077b5, #00a0dc); }

/* Add ripple effect */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.social-icons a{
    color: #fff;
    margin: 0 8px;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.cursor {
  display: inline-block;
  animation: blink 0.7s infinite;
  color: #fff;
  font-weight: bold;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.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;
}