/* The Grid */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    }

/* The Box */
.project-box, .nav-button {
    display: inline-block;
    padding: 20px;
    border: 1px solid light blue;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

                                                            
/* This part makes the icons and text sit perfectly on the same line */
.nav-button {
    display: inline-flex; 
    align-items: center;  
    gap: 8px;             
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    background-color: #fff;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-button:hover {
    border-color: #007bff;
    color: #007bff;
    background-color: #f8fbff;
    transform: translateY(-2px);
}

/* This makes sure the icons aren't too big or too small */
.material-symbols-outlined {
    font-size: 20px;
    vertical-align: middle;
}

/* About Page Layout */
.about-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    flex-wrap: wrap; /* Helps with mobile screens */
    }

/* PFP Styling */
.pfp img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #007bff;
    margin-bottom: -50px; /* Overlaps the bio box slightly */
    position: relative;
    z-index: 1;
    }

/* Bio Box */
.bio-box {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 60px 20px 20px;
    width: 350px;
    background: #fff;
    }

/* Progress Bars */
.skills-box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #f9f9f9;
    }

.skill { margin-bottom: 15px; }

.bar {
    width: 100%;
    height: 12px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 5px;}
                                                                                                      
.progress {
    height: 100%;
    background: #007bff;
    border-radius: 10px
    }

/* 1. Container - */
.contact-container {
    text-align: center;
    padding: 50px 20px;
    }

/* 2. Grid - */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    }

/* 3. Item - */
.contact-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    width: 250px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    }

/* 4. Copy Button */
.copy-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    }
                                                                                            
    
.status-badge {
    background-color: #28a745;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    float: right;
    }

