/* --- Base --- */
body {
    background-color: #1a1a1a;
    color: #e2e8f0;
    padding-top: 100px;
    /* offset for fixed navbar */
}

.orange-accent {
    color: #ff8c42;
}

/* --- Navbar --- */
.navbar {
    transition: background-color 0.3s ease;
}

/* --- Cards --- */
.card {
    background-color: #1a1a1a;
    border: 1px solid #2a415a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
    border-color: #ff8c42;
}

/* --- Quote Box --- */
.quote-box {
    position: relative;
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-left: 5px solid #ff8c42;
    margin-bottom: 2rem;
}

.quote-box::before {
    content: '“';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 6rem;
    line-height: 1;
    font-weight: 700;
    color: #ff8c42;
    opacity: 0.1;
    z-index: 0;
}

/* --- Hero Section --- */
.hero-section-about {
    background-image: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    /* margin-bottom: 5rem; */
    /* spacing below hero */
    padding-top: 5rem;
    /* padding-bottom: 5rem; */
    text-align: center;
}

/* --- Section default spacing --- */
section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* --- Footer --- */
/* --- Section default spacing --- */
section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

footer {
    z-index: 999;
    position: relative;
}