*{
    box-sizing: border-box;
}
body {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100dvh;
}
 
header { 
    background-color: rgb(59, 59, 59);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}
 
.logo {
    flex-basis: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.naslov {
    flex-grow: 1;
    text-align: center;
    margin: 0 20px;
}

.naslov a {
    text-decoration: none;
    color: white;
}

.navigation {
    flex-grow: 2;
}

.navigation ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.navigation ul li {
    margin: 0;
}

.navigation ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    transition: background-color 0.3s ease;
}

.navigation ul li a:hover,
.navigation ul li a.active {
    background-color: yellow;
    color: black;
    border-radius: 4px;
}

main{
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


.info-section {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 40px auto;
    gap: 40px;
    padding: 0 20px;
}

.info-left, .info-right {
    width: 48%;
}

.info-left p, .info-right p {
    text-align: justify;
}

.info-right{
    margin-left: 0;
}


 
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
   
}
 
.content h2 {
    margin-bottom: 20px;
}
 
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}
 
.gallery-container img {
    width: 33%;
    margin-bottom: 20px;
    border-radius: 5px;
}
 
.menu-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
 
.menu-container h3 {
    margin-bottom: 10px;
}
 
.menu-container ul {
    list-style: none;
    padding: 0;
}
 
.menu-container li {
    margin-bottom: 5px;
}
 
footer {
    background-color: rgb(59, 59, 59);
    color: #fff;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 20px auto 40px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.slider-slide {
    display: none;
    width: 100%;
    height: 400px;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 12px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 28px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    transition: background-color 0.3s ease;
}

.prev {
    left: 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: white;
}

.product-container img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}


