/* 
┌─────────────────────────┐
│           ▌             │
│  ▝▀▖▛▀▖▞▀▖▛▀▖▞▀▖▙▀▖▞▀▘  │
│  ▞▀▌▌ ▌▌ ▖▌ ▌▌ ▌▌  ▝▀▖  │
│  ▝▀▘▘ ▘▝▀ ▘ ▘▝▀ ▘  ▀▀   │
└─────────────────────────┘
*/
a { 
    color: var(--accent); 
    text-decoration: none; 
    transition: all 
    var(--transition-speed) ease; 
}

a:hover { 
    text-decoration: underline; 
    /* color of the hoover on buttons lol */
    color: #ffd000; 
    transform: translateY(1px);
}

section { 
    margin-bottom: 3rem; 
    opacity: 0;
}

/* 
┌──────────┐
│  ▌  ▗▌   │
│  ▛▀▖ ▌   │
│  ▌ ▌ ▌   │
│  ▘ ▘▝▀   │
└──────────┘
*/

h1 { 
    color: var(--accent); 
    margin-bottom: 0.5rem; 
    position: relative;
    display: inline-block;
}
h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) ease;
}
h1:hover::after {
    transform: scaleX(1);
}

/* 
┌──────────┐
│  ▌  ▞▀▖  │
│  ▛▀▖ ▗▘  │
│  ▌ ▌▗▘   │
│  ▘ ▘▀▀▘  │
└──────────┘
*/

h2 { 
    border-bottom: 1px solid var(--border); 
    padding-bottom: 0.3rem; 
    margin-bottom: 1rem; 
    position: relative;
    display: inline-block;
}
h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}
h2:hover::after {
    transform: scaleX(1);
}

/* 
┌──────────┐
│  ▌  ▞▀▖  │
│  ▛▀▖ ▗▘  │
│  ▌ ▌▗▘   │
│  ▘ ▘▀▀▘  │
└──────────┘
*/

h3 { 
    border-bottom: 1px solid var(--border); 
    padding-bottom: 0.3rem; 
    margin-bottom: 1rem; 
    position: relative;
    display: inline-block;
}
h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}
h3:hover::after {
    transform: scaleX(1);
}

/* 
┌────────────────────────┐
│            ▖      ▐    │
│  ▛▀▖▙▀▖▞▀▖▗▖▞▀▖▞▀▖▜▀   │
│  ▙▄▘▌  ▌ ▌ ▌▛▀ ▌ ▖▐ ▖  │
│  ▌  ▘  ▝▀ ▄▘▝▀▘▝▀  ▀   │
└────────────────────────┘
*/

.project { 
    margin-bottom: 1.5rem; 
    padding: 1.5rem;
    border-radius: 8px;
    background: var(--hover-bg);
    transition: all var(--transition-speed) ease;
}


/* 
┌─────────────┐
│  ▐          │
│  ▜▀ ▝▀▖▞▀▌  │
│  ▐ ▖▞▀▌▚▄▌  │
│   ▀ ▝▀▘▗▄▘  │
└─────────────┘
*/

.tag {
    display: inline-block;
    font-size: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    /* transition: all var(--transition-speed) ease; */
}
/* .tag:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
} */

/* 
┌──────────────────────┐
│  ▌     ▐  ▐          │
│  ▛▀▖▌ ▌▜▀ ▜▀ ▞▀▖▛▀▖  │
│  ▌ ▌▌ ▌▐ ▖▐ ▖▌ ▌▌ ▌  │
│  ▀▀ ▝▀▘ ▀  ▀ ▝▀ ▘ ▘  │
└──────────────────────┘
*/

/* Button hover effects */
button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}