body {
    font-family: "Raleway";
}

.hero-header {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: bold;
    text-align: center;
    color: #000;
    background-color: #ffffff;
    padding: 20px;
}

.cursor {
    display: inline-block;
    background: #000;
    width: 10px;
    height: 1.75rem;
    animation: blink 1.5s step-end infinite;
}

@keyframes blink {
    from, to {
        background: transparent;
    }
    50% {
        background: #000;
    }
}

/* Interactive Space Background */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

#space-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-section .hero-header {
    color: #333333 !important;
    text-shadow: none;
    background-color: transparent !important;
    font-size: clamp(1.5rem, 4vw, 3rem);
    position: relative;
    z-index: 10;
    line-height: 1.2;
}

.hero-section .cursor {
    background: #333333 !important;
    box-shadow: none;
}

.hero-section .lead {
    color: #555555 !important;
    text-shadow: none;
    font-weight: 300;
    position: relative;
    z-index: 10;
}

.responsive-img {
    height: auto;
    max-width: 600px;
}

.btn-outline-black {
    color: #000;
    border-color: #000;
}

.btn-outline-black:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.bd-footer a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.01);
}

.btn-outline-black {
    border: 1px solid black;
    color: black;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-black:hover {
    background-color: black;
    color: white;
}

.container {

}

/* Fix for rounded-circle icons to be perfect circles */
.rounded-circle.p-2 {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* Medium icons with p-3 padding */
.rounded-circle.p-3 {
    width: 60px !important;
    height: 60px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* Keep header icons as perfect circles */
.rounded-circle.p-4 {
    width: 100px !important;
    height: 100px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}