* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #141e30, #243b55);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
}


/* #region Social Banner (Discord/LinkedIn/GitHub/Email) */
.social-banner {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    justify-content: space-between; /* 🔥 key change */
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2em;
}

.social-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.302);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.discord-btn:hover {
    background: rgba(88, 101, 242, 0.8);
    border-color: #5865F2;
}

.linkedin-btn:hover {
    background: rgba(0, 119, 181, 0.8);
    border-color: #0077B5;
}

.github-btn:hover {
    background: #75156d;
    border-color: #9a1c90;
}

.email-btn:hover {
    background: #ea4335cc;
    border-color: #EA4335;
}
/* #endregion */

/* #region Profile Section */

.profile-section {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile-name {
    font-size: 1em;
    font-weight: 500;
    color: white;
}

/* #endregion */

/* #region Hero Section */
.hero-section {
    padding: 20px 0px 20px 25px;
    text-align: left;
}

h1 {
    color: white;
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #b6cbe2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 {
    color: white;
    font-size: 1.8em;
    margin: 10px 25px;
    padding: 0;
}
h3 {
    color: rgb(0, 0, 0);
    margin: 0;
}

body > .hero-section > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    margin: 0;
    line-height: 1.6;
}
/* #endregion */


/* #region Projects Tabs */
.projects-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 20px;
    margin: 10px 25px;
    padding: 0;
}
/* Drop to 2 columns */
@media (max-width: 1000px) {
    .projects-container {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
}
/* Drop to 1 column */
@media (max-width: 600px) {
    .projects-container {
        grid-template-columns: 1fr;
    }
}

.project-card {
    background: linear-gradient(135deg, #afe0e5, #b6cbe2);
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    min-width: 0.5em;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.1em;
}
.project-card p{
    margin: 0;
    padding: 10px 15px;
}

.card-link {
    display: block;
    padding: 10px 15px;
    margin: 15px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-align: center;
    margin-top: auto;
}

.card-link:hover {
    background-color: #0056b3;
}

/* #region Project Tags */

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 15px 10px;
}
.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8em;
    color: white;
    background: rgba(2, 42, 84, 0.25);
}

.tag.main-tag {
    background: rgba(0, 123, 255, 0.6);
}
/* #endregion */

/* #endregion */