body {
    padding: 0px;
    background-color: rgb(26, 23, 24);
    margin: 0;
    width: 100%;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

.logo {
    display: block;
    margin: 30px auto;
    width: 150px;
}

.navbar-logo {
    width: 130px;
}

.navbar {
    background-color: rgb(26, 23, 24);
}

.navbar-nav .nav-link {
    color: rgb(231, 54, 49);
    font-family: 'Roboto', sans-serif !important;
}

.navbar-toggler-icon {
    display: none;
}

.custom-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.custom-toggler-icon span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #E73631;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
}

.navbar-toggler.collapsed .custom-toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.collapsed .custom-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.collapsed .custom-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar {
    font-family: 'Roboto', sans-serif !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgb(26, 23, 24);
}

.image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: rgb(254, 244, 221);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.form-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.form-overlay .btn-primary {
    background-color: rgb(231, 54, 49);
    border: none;
}

.form-overlay .btn-primary:hover {
    background-color: rgb(200, 45, 40);
}
#portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.portfolio-item {
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin-bottom: 0;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: flex;
    border-radius: 10px;
    margin: 0;
}

.image-below {
    text-align: center;
    margin-top: 0px;
}

.image-below .portfolio-img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
}

p {
    font-size: 14px;
    color: rgb(254, 244, 221);
    margin-top: 20px;
}

.text-center a {
    color: rgb(254, 244, 221);
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}

.home-img,
.about-img,
.portfolio-img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 70px;
}

.home-img-mobile,
.about-img-mobile,
.portfolio-img-mobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .home-img,
    .about-img,
    .portfolio-img {
        display: none;
    }

    .home-img-mobile,
    .about-img-mobile,
    .portfolio-img-mobile {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-top: 80px;
    }

    .portfolio-item {
        margin-bottom: 15px;
        text-align: center;
    }

    .portfolio-item img {
        max-width: 50%;
        margin: 0 auto;
        border-radius: 10px;
    }
}