@charset "utf-8";
/* CSS Document */

        
* {
    box-sizing: border-box;
}

body, html {
  height: 100%;
  margin: 0;
  background-color: #000000;
} 

.pt-serif-regular {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.pt-serif-bold {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}

.pt-serif-regular-italic {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.pt-serif-bold-italic {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: italic;
}

        
/* Navigacija fiksirana na vrhu */
.navbar {
    background-color: rgba(33, 37, 41, 0.95) !important;
    padding: 15px 0;
    }
    

.nav-link {
    font-family: "Roboto Condensed", sans-serif!important;
    font-weight: 300;
    letter-spacing: 1.5px;
    font-size: 16px;
    color: rgba(255,255,255,0.8) !important;
    transition: 0.3s;
}
    
.nav-link:hover, .nav-link.active { 
        color: #c9ae61 !important;
        font-weight: bold;
        }

@media (max-width: 1300px) {
    .nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: 14px;
        letter-spacing: normal;
    }
}
        
h1 {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    color: #ffffff;
    text-align: left!important;
}
    
h2 {
    font-size: 1.2rem; /* Smanji po želji */
    font-weight: 600;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
    font-style: normal;
    color: #000000;
    text-align: center;
    margin-top: 1px;
}
        
p {
    margin-bottom: 5px;
    color: #ffffff;
} 

.btn {
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    width: 150px;
    height: 40px;
    background-color: #e0bc75;
    color: black;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;    
    display: inline-block;
}

.btn:hover {
    background-color: #8F5400;
    transform: scale(1.1); 
}

.btn-list {
    /* Dimenzije kvadrata */
    width: 40px;
    height: 40px;
    
    /* Blago zaobljene ivice */
    border-radius: 6px; 
    
    /* Centriranje strelice (SVG) */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Izgled (prilagodi svojim bojama) */
    background-color: #c9ae61;
    color: #000;
    
    /* Ponašanje */
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}

/* Osigurava da strelica nasledi boju */
.btn-list svg {
    fill: black;
}

.wine-menu {
    display: flex; 
    gap: 10px; 
    background-color: #c9ae61; 
    padding-right: 5px; 
    padding-left: 5px;
    height: 24px;
    border-radius: 4px;
}
        
/* Mobilni */
        
@media (max-width: 768px) {

h1 {
    font-size: 24px!important;
} 
    
.container {
    width: 100%!important;
} 
	
.navbar-brand>img {
    display: block;
}
    
#opis {
    width: 100%!important;
}  
    
.btn {
    font-family: "PT Sans", sans-serif;
    font-size: 12px;
    width: 150px;
    height: 40px;
    background-color: #e0bc75;
    color: black;
    border: none;
}
 }
        
#cart-badge {
    border-radius: 50%;
    padding: 3px 6px;
    display: none; /* Sakriveno dok je korpa prazna */
}
        
i:hover {
    color: white;
}  
        
/* Kontejner za ikonicu i badge da bi na mobilnom stajali zajedno */

/* Wrapperu dajemo fiksnu širinu ikonice da ga ništa ne rasteže */
.cart-wrapper {
    position: relative;
    display: inline-block;
    width: 24px;   /* Širina ikonice korpe */
    height: 24px;  /* Visina ikonice korpe */
    vertical-align: middle;
    line-height: 1;
}

#cart-badge {
    color: #fff !important;
    font-size: 9px !important;
    font-weight: bold;
    
    /* Savršen krug */
    width: 16px;
    height: 16px;
    line-height: 16px; 
    text-align: center;
    border-radius: 50%;
    
    /* APSOLUTNO POZICIONIRANJE NA IVICU WRAPPERA */
    position: absolute;
    top: -8px;    /* Ide iznad gornje ivice */
    right: -10px; /* Ide desno van ivice */
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Isključujemo Bootstrap-ovo pomeranje za ovaj specifičan link */
.nav-link .cart-wrapper {
    margin-top: -5px; /* Fino podešavanje visine cele ikonice u odnosu na tekst */
} 
    
@media only screen and (max-width: 768px) {
    .opis-vina {
    font-family: "PT Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;

    }    
}
        
 /* Definisanje glavne zlatne i tamne boje za ceo sajt */
:root {
    --gold: #c9ae61;
    --dark-bg: #212529;
    --red: red;
}

/* Dugme "Zakaži degustaciju" i "Close" u modalu */
.btn-gold, .btn-lg[data-bs-target="#myModal"] {
    background-color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    color: #000 !important;
    border-radius: 0; /* Oštre ivice daju elegantniji izgled */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover, .btn-lg[data-bs-target="#myModal"]:hover {
    background-color: #b89a50 !important;
    color: #fff !important;
}

/* Sređivanje HR linije da prati boju teksta ili zlata */
hr {
    border-top: 2px solid var(--gold) !important;
    opacity: 1;
    margin: 0px;
}

/* Hover efekat na linkove u navigaciji */
.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

/* Boja badge-a za korpu da ne odskače previše crvenom, možeš probati zlatnu */
#cart-badge {
    background-color: var(--red);
    color: #fff;
}

/* Modal header/footer pozadina ako želiš da bude tamna kao navigacija */
.modal-content {
    border-radius: 0;
    border: 2px solid var(--gold);
}

.modal-header {
    border-bottom: none;
}
    
/* Modal buttons */
       
#btn-wa  {
    width: 250px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .5px;
}
    
#btn-wa:hover  {
    background-color: black!important;
}
    
    
#btn-mail {
    width: 250px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
} 
    
/* Tekst */
.opis-vina {
    font-family: "PT Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    padding-top: 8px;
}  

 @media (min-width: 992px) and (max-width: 1200px) {
    .custom-class {
        /* podešavanja za laptop */
    }
        h1 {
        font-size: 24px!important;
    }
     
        h2 {
        font-size: 16px!important;
    }
    
    p {
        font-size: 14px!important;
    }
     
     #opis {
         margin-top: 100px!important;
     }
     
     
.opis-vina {
    font-size: 14px;
    line-height: normal;
}  
}

        
    


