body {
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    padding: 15px 0;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/hero.jpg') center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
}

.card {
    border: none;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.section-title {
    font-weight: bold;
    margin-bottom: 30px;
}
footer h5 {
    margin-bottom: 15px;
}

footer p {
    font-size: 14px;
}

footer a:hover {
    color: #ff4d4d !important;
}
.carousel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
}
.hero-img {
    height: 90vh;
    object-fit: cover;
}

/* DARK OVERLAY */
.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    z-index: 1;
}

/* TEXT ABOVE OVERLAY */
.carousel-caption {
    z-index: 2;
}