﻿
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}


html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Crvena navbar pozadina */
.navbar {
    background-color: #000000 !important; /* AutoLAND crvena */
}

    /* Linkovi u navbaru */
    .navbar .nav-link,
    .navbar .navbar-brand {
        color: white !important;
    }

        /* Hover efekat */
        .navbar .nav-link:hover {
            color: #ffd6d6 !important;
        }

/* NAV LINKOVI U JEDNOM REDU */
.navbar-nav {
    flex-direction: row !important;
}

    /* Razmak između linkova */
    .navbar-nav .nav-item {
        margin-right: 15px;
    }

    /* Desni meni (Login / Register) */
    .navbar-nav.ms-auto {
        flex-direction: row !important;
    }
.login-logo {
    max-width: 3000px;
    width: 150%;
    display: block;
    margin-left:230px
}

/* HERO SEKCIJA - POCETNA */
.hero-section {
    width: 100vw;
    min-height: 90vh;
    background: linear-gradient( rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45) ), url('/images/garage.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
}


.hero-section {
    height: calc(100vh - 70px);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex; /* 🔑 */
    flex-direction: column; /* 🔑 */
    align-items: center;
}


/* NASLOV */
.hero-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 4.0rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.75), 0 14px 30px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 1px #dc3545;
    text-stroke: 1px #dc3545;
}


/* DUGME */
.hero-btn {
    display: inline-block;
    margin-top: 30px;
    background-color: #000; /* crno dugme */
    color: #e63946; /* crvena slova */

    border: 2px solid #e63946;
    padding: 14px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.25s ease;
}


    .hero-btn:hover,
    .hero-btn:active {
        background-color: #e63946; /* crveno dugme */
        color: #000; /* crna slova */
        border-color: #e63946;
    }

    .hero-btn:active {
        transform: scale(0.96);
    }



.hero {
    position: relative;
    width: 100vw;
    min-height: calc(100vh - 70px);
    background: url('/images/garage.jpg') center / cover no-repeat;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55); /* TAMNI OVERLAY */
        z-index: 1;
    }


.hero .btn-danger {
    background-color: #e63946;
    border: none;
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: 30px;
}

    .hero .btn-danger:hover {
        background-color: #c1121f;
    }
    .btn-black-white {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    transition: all 0.25s ease;
}

    .btn-black-white:hover {
        background-color: #222;
        color: #fff;
        border-color: #c00;
        transform: scale(1.05);
    }
    .image-wrapper {
    position: relative;
}

    .image-delete-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 0 7px;
    line-height: 1;
    border-radius: 50%;
    font-weight: bold;
    z-index: 10;
}
