:root {
    --primary-teal: #2A9D8F;
    --dark-slate: #264653;
    --soft-bg: #E9C46A;
    /* Accent */
    --light-gray: #f8f9fa;
    --text-dark: #333333;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.bg-custom-dark {
    background-color: var(--dark-slate);
}

.bg-custom-teal {
    background-color: var(--primary-teal) !important;
    color: white;
}

.text-custom-teal {
    color: var(--primary-teal);
}

.btn-outline-custom-teal {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.btn-outline-custom-teal:hover {
    background-color: var(--primary-teal);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(38, 70, 83, 0.8), rgba(42, 157, 143, 0.8)), url('../assets/images/cover.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    margin-top: 56px;
    /* Offset for fixed navbar */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 10%);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.section-title {
    font-weight: 600;
    color: var(--dark-slate);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-teal);
    margin: 10px auto 0;
}

.link-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.profile-placeholder {
    background: #e9ecef;
    border: 5px solid white;
}