/* Custom Styles for Mind Vault */

/* Font Face */
@font-face {
    font-family: 'Science Gothic';
    src: url('ScienceGothic.ttf') format('truetype');
    font-weight: 100 900;
}

/* Gradient Background for Hero */
.bg-light-gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Step Circle for "How it Works" */
.step-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Overrides */
.navbar-brand {
    font-family: 'Science Gothic', sans-serif;
    font-weight: 700;
    color: #2c3e50 !important;
    gap: 0.2rem;
}

.navbar-brand img {
    height: 33px;
    /* 10% bigger than 30px */
    width: 33px;
}

/* Profile Circle */
.profile-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

/* Ensure cards have same height in grid */
.card {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

/* Language Selector Cursor */
.lang-selector a {
    cursor: pointer;
    font-weight: bold;
}