/* custom.css */
ul.big li{
    font-size:19px;
    margin:20px;
}
.btn {
    background-color: #fd7e14 !important; /* Din anpassade bakgrundsfärg */
    border-color: #ffc107 !important; /* Din anpassade kantfärg */
    color: black; /* Textfärg */
    font-weight:bold;
}
label{
    font-weight: bold;
}
.btn:hover, .btn:focus, .btn:active {
    background-color: #fd7e14 !important; /* Din anpassade hover-färg */
    border-color: #ffc107; /* Din anpassade hover-kantfärg */
    color: black; /* Textfärg */
}

.nav-link {
    /*color: #fd7e14 !important; /* Din anpassade bakgrundsfärg */
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    /*color: #ffc107 !important; /* Din anpassade bakgrundsfärg */
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
}

.navbar-brand img {
    height: 70px;
    margin: 0px;
}



.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-left: 15px !important;
    padding-right: 15px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #FFF;
    background-color: #000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
    font-weight: 600;
    width: 100%;
}

.footer a {
    color: #EEE;
    text-decoration: none;
}

@media (min-width: 768px) {
    .footer {
        height: 70px;
        flex-direction: row;
    }

    .footer p {
        margin: 0 10px;
        font-size: 1rem;
    }
}

.full-width-image {
    width: 100%;
    height: auto;
}

.container-fluid {
    padding: 0;
}

.object-image {
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
    cursor: pointer;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-text {
    font-size: 1.1rem;
}

.info-box {
    background-color: #e3e3e5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;

}

.modal-dialog {
    max-width: 70%;
    height: auto;
    margin-top: 0px !important;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.return-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}

.return-link .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
}

.card-img-top {
    height: 300px;
    object-fit: cover;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-text {
    font-size: 1.1rem;
}

.price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #007bff;
}

.carousel-inner img {
    height: 300px;
    object-fit: cover;
}

.contact-person {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.contact-photo {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
    border-radius: 30%; /* Makes the image circular */
    margin-bottom: 20px; /* Space between the image and text */
}

@media (min-width: 768px) {
    .contact-person {
        align-items: flex-start;
        text-align: left;
    }

    .contact-photo {
        margin-right: 10px; /* Space between the image and text */
        margin-bottom: 10px; /* Remove bottom margin */
    }
}