html {
    height: 100%;
}

body {
    background: url('https://res.cloudinary.com/dutukkel2/image/upload/v1776968818/CarMarket_Cover_Pic_v2_fz1qkz.jpg') no-repeat center center fixed;
    background-size: cover;
    height: calc(100vh - 164px);
    color: #555;
    font-family: 'Lato';
}

/* from Bulma */
.icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}

.logo-font {
    text-transform: uppercase;
}

.main-logo-link {
    width: fit-content;
}

.shop-now-button {
    background: black;
    color: white;
    min-width: 260px;
}

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

.shop-now-button:hover,
.shop-now-button:active,
.shop-now-button:focus,
.btn-black:hover,
.btn-black:active,
.btn-black:focus {
    background: #222;
    color: white;
}

.text-black {
    color: #000 !important;
}

.border-black {
    border: 1px solid black !important;
}

.bg-black {
    background: #000 !important;
}

/* -------------------------------- Media Queries */

/* Slightly larger container on xl screens */
@media (min-width: 1200px) {
  .container {
    max-width: 80%;
  }
}

/* fixed top navbar only on medium and up */
@media (min-width: 992px) {
    .fixed-top-desktop-only {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }

    .header-container {
        padding-top: 164px;
    }
}

.profile-page {
    background: #f5f5f5;
    min-height: 100vh;
}

.profile-nav {
    padding-top: 40px;
}

.profile-nav-link {
    color: #4f6f95;
    text-decoration: underline;
    font-size: 15px;
    margin-bottom: 10px;
    display: inline-block;
}

.profile-card {
    background: #ffffff;
    border: 2px solid #cfcfcf;
    max-width: 640px;
    min-height: 620px;
    padding: 40px 30px 30px;
    text-align: center;
}

.profile-image-wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto 35px;
    border: 2px solid #bdbdbd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info-block {
    max-width: 420px;
    margin: 0 auto;
}

.profile-info-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    margin-bottom: 22px;
    text-align: left;
}

.profile-label {
    width: 110px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.profile-value {
    flex: 1;
    font-size: 16px;
    color: #444;
    padding-top: 4px;
}

.profile-extra-text {
    margin-top: 45px;
    margin-bottom: 35px;
    color: #444;
    font-size: 15px;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.profile-btn {
    min-width: 140px;
}

.btn-blue {
    background-color: #4f81bd;
    border: 1px solid #4f81bd;
}

.btn-blue:hover {
    background-color: #3b6da8;
    border-color: #3b6da8;
}

/* Tablet */
@media (max-width: 991px) {
    .profile-nav {
        text-align: center;
        padding-top: 0;
        margin-bottom: 20px;
    }

    .profile-nav-link {
        display: block;
        margin-bottom: 8px;
    }

    .profile-card {
        max-width: 560px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .profile-card {
        min-height: auto;
        padding: 28px 18px 24px;
    }

    .profile-image-wrap {
        width: 95px;
        height: 95px;
        margin-bottom: 28px;
    }

    .profile-info-row {
        gap: 10px;
        margin-bottom: 18px;
    }

    .profile-label {
        width: 95px;
        font-size: 16px;
    }

    .profile-value {
        font-size: 14px;
    }

    .profile-extra-text {
        margin-top: 30px;
        margin-bottom: 25px;
        font-size: 14px;
    }

    .profile-actions {
        flex-direction: column;
        align-items: center;
    }

    .profile-btn {
        width: 100%;
        max-width: 220px;
    }
}