@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

h1, h2 {
    font-family: 'Poppins', sans-serif;
}

p, ul li {
    line-height: 1.8em;
}

ul {
    padding: 0;
}

.card-body p:last-child,
.card-body ul:last-child {
    margin-bottom: 0;
}

#project-info ul {
    list-style: none;
}

#project-info ul li::before {
    content: '\1F331';
    margin-right: 10px;
}

.hero .hero-info {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-image {
    display: block;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

nav.navbar {
    box-shadow: none;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar .navbar-brand span {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    transition: 0.2s;
    vertical-align: middle;
    padding-left: 5px;
}

.navbar .navbar-brand span:hover {
    color:#4d6e5c;
}

.navbar .container-fluid {
    padding-left: 3rem;
    padding-right: 3rem;
}

.navbar-scroll {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero {
    margin-top: 63px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #668d76;
}

.hero-img {
    border-radius: 5px;
    width: 100%;
    object-fit: cover;
}

.section {
    padding: 5rem 0;
}

.navbar-brand, h2 {
    color: #668d76;
}

#people .card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out;
}

#people img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

#sprints .sprint {
    margin: 50px auto;
}

#sprints .card img {
    padding: 10px;
    border-radius: 5px;
}

#group img {
    filter: grayscale(100%);
}

.btn-plant {
    background-color: #668d76;
    color: #fff;
}

.btn-plant:hover {
    background-color: #4d6e5c;
    color: #fff;
}
