@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;  
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #353836;
  color: white;
  font-family: "Cabin", sans-serif;
}
@property --mainColor {
  syntax: "<color>";
  inherits: true;
  initial-value: rgb(235, 137, 8);
} 
/* --mainColor{
  color: rgb(235, 137, 8);
} */
.zuti {
  color: rgb(255, 209, 102);
}
--bijela{
  color: #FFFFFF;
}
--orange{
  color: #f1642c;
}
--zuta { 
color: rgb(255, 209, 102);
}
.txt-cntr {
  text-align: center;
}
.padd8 {
  padding: 0.5rem;
}
.padd16 {
  padding: 1rem;
}
.text-livo {
  text-align: left;
}
.text-centar {
  text-align: center;
}
.text-desno {
  text-align: right;
}

.pad-05 {
  padding: 0.5rem;
}

.link-polje  {
  width: 50%;
  text-align: center;
  border: 1px solid #413d3d;
  border-radius: 0.5rem;
  transition: 0.4s;
}
.link-polje:hover {
    border: 1px solid hsl(42, 100%, 70%);
}
.link-polje1  {
  text-align: center;
  padding: 0 0.5rem;
  border: 1px solid #413d3d;
  border-radius: 0.5rem;
  transition: 0.4s;
}
.link-polje1:hover {
  border: 1px solid hsl(42, 100%, 70%);
}

/* header  ---------------------------------------------------------------    */

header {
  position: sticky;
  top: 16px;
  padding: 0 2rem 0 1rem;
  background-color: #1d1f1d;
  background-color: #26547C;
  height: 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  border-radius: 0 0 1rem 1rem;;
}
header a {
  text-decoration: none;
}



/* navigacija  ----------------------------------------------------------    */
#logo {
  font-weight: bold;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

#logo a {
  transition: 0.5s;
  color: #FFD166;
}
#logo a:hover {
  color: #FFFFFF;
}
ul.prvi-meni {
  font-size: 0.9rem;
}
ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

ul a {
  color: hsl(42, 100%, 70%);
  width: 100%;
  display: block;
  padding: 5px;
  transition: 0.3s;
}
ul a:hover {
  color: var(--bijela);

}

ul li {
  margin-left: 10px;
  box-shadow: none;
  color: var(--bijela);
}

/* ul li:hover {
  color: #09c372;
  color: #09c372;
  transition: 0.3s;
} */

.chat,
.call {
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  border: 1px solid #413d3d;
  transition: 0.4s;
}
.chat:hover,
.call:hover {
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  border: 1px solid hsl(42, 100%, 70%);
}
/* .chat {
  border: 1px solid #09c372;
}
.chat:hover {
  border: 1px solid #62f7b6;
}
.call {
  border: 1px solid #75c5f0;
}
.call:hover {
  border: 1px solid #d8ebf5;
} */

.call a {
  color: #75c5f0;
}
.call a:hover {
  color: #d8ebf5;
}

.chat a {
  color: #09c372;
}
.chat a:hover {
  color: #86f5c5;
}
.isto-isto {
  width: 50%;
  text-align: center;
}
.flag {
  display: flex;
  padding: 0 0.5rem;
  border: 1px solid #413d3d;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.4s;
}
.flag img {
  margin: auto;
}
.flag:hover {
  border: 1px solid silver;
}
.flag-donji {
  width: 50%;
  margin-top: 1.5rem;
  text-align: center;
  border: 1px solid #413d3d;
  border-radius: 0.5rem;
  transition: 0.4s;
}
.flag-donji:hover {
  border: 1px solid hsl(42, 100%, 70%);
}
/* HAMBURGER itd.  -------------------------------------------------------- */
#trix {
  margin: auto 0;
  display: none;
  cursor: pointer;
}
#trix div {
  width: 35px;
  height: 3px;
  background-color: #09c372;
  background-color: var(--zuta);
  background-color: hsl(42, 100%, 70%);
  margin: 6px 0;
  transition: 0.4s;
}
#trix.aktivan div  {
  background-color: hsl(42, 100%, 70%);
}
.aktivan .crta1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.aktivan .crta2 {
  opacity: 0;
}

.aktivan .crta3 {
  -webkit-transform: rotate(45deg) translate(-6px, -7px);
  transform: rotate(45deg) translate(-6px, -7px);
}

.mobile-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  top: 50px;
  height: min-content;
  width: 40%;
  padding: 2rem;
  background-color: #1d1f1d;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  transition: 0.4s;
  scale: 0;
}
#trix.aktivan .mobile-menu {
  scale: 1;
  transition: 0.4s;
}

.mobile-menu li {
  margin-bottom: 2px;
}

/* HAMBURGER itd.  -------------------------------- KRAJ ---------------- */

/* navigacija  ----------------------------------------------------------  KRAJ  */

/*  MAIN */
.kockice {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 16px;
  background-color: #303030;
  background-image: url(img/kockiceZP.png);
  background-repeat: repeat-x;
}

.slika {
  background-image: url(./img/auto2_3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  width: 100%;
  height: 40vh;
  max-width: 1200px;
  /* position: relative; */
  margin: 0 auto;
  padding: 0.5rem;
  /* overflow: hidden; */
}
.blurko {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  width: 80%;
  height: 65%;
  margin: 4rem auto;
  padding: 0.5rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.5px);
  box-shadow: 0px 0px 10px #26547C;
  border-radius: 1rem;
}
/* .blender {
  color: #1d1f1d;
  filter: blur(2px); 
} */
.blurko p {
  text-shadow: rgb(25, 26, 25) 1px 1px 3px;
}
.blurko .textlead {
  color: rgb(235, 137, 8);
  color: #FFD166;
  font-size: 2.3rem;
  font-weight: 700;
}
.blurko .textich {
  font-size: 1.1rem;
  color: #fafcfb;
  text-shadow: rgb(25, 26, 25) 2px 2px 2px;
}
/* #logo {
  font-size: 1rem;
} */
.logolead {
  /* background-image: url(./img/logo50.png);
  background-repeat: no-repeat;
  background-position: center center; */
  /* height: 100px; */
  min-height: 30px;
  margin: 0;
  margin-bottom: 0;
}
.logo-image {
  height: 50px;
  filter: drop-shadow(8px 8px 0.5rem #303030);
  
}
.slika2 {
  width: 90vw;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}
.slika2 img {
  width: 100%;
  border-radius: 1rem;
  margin: 2rem auto 1rem auto;
}
.slika2 h1 {
  position: absolute;
  top: 7%;
  width: 90%;
  font-size: 650%;
  color: transparent;
/*   background-image: url(./img/greenfield.jpg);
  background-size: cover;
  background-clip: text;
  background-position: center center; */
  text-shadow: 0 10px 10px rgb(37, 245, 37);
  mix-blend-mode: overlay;
  /* background: rgba(0,0,0,.5); */
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
  /* color: transparent; */
}

.transpanel {
  width: 100%;
  height: 21rem;
  background: transparent;
  background-size: cover;
  position: absolute;
  top: 80px;
  left: 0;
  backdrop-filter: blur(10px);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(48, 48, 48, 0.3), rgb(138, 182, 120), rgb(255, 255, 255, 0.3),rgba(255, 255, 255, 0.3));
  background-size: 30px;
}
.opis-transparent {
  position: absolute;
  top: 40%;
  left: 20%;
  width: 60%;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  text-shadow: 0 0px 7px rgb(5, 5, 10);
}
.wrapko {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

main {
  width: 100%;
  padding: 0.5rem;
  margin: 0 auto;
  padding-top: 0.5rem;
  line-height: 1.8;
}
.intro-text {
  width: 100%;
  background-color: #303030;
  padding: 2rem;
  border: 1px solid #26547C;
  border-radius: 1rem;
}
main .text{
  width: 90%;
  margin: 2rem auto;
  padding: 2rem;
}
.text {
  width: 100%;
  background-color: #303030;
  padding: 1rem;
  border: 1px solid #26547C;
  border-radius: 1rem;
}
.istaka {
  color: rgb(235, 137, 8);
  color: rgb(255, 209, 102);
  background-color: #303030;
  text-shadow: 3px 3px 3px #1d1f1d;
  font-size: 1.1rem;
  font-weight: 500;
}
.slika-text {
  display: grid;
  grid-template-columns: 1fr 45%;
  justify-content:start;
  gap: 0.5rem;
  width: 100%;
  margin: 0 auto;
  /* border: 1px solid #666; */
  border-radius: 1rem;

}
.slika-text .intro-text {
  padding: 3rem;
  padding-top: 0rem;
}



.pozivi {
  margin-top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-top: 0.5rem;
  border: 6px double #26547C;
  border-radius: 1rem;
  background-color: #303030;
}
.pozivi button.phone, .pozivi button.whatsapp {
  width: 60%;
  color: #FFD166;
  padding: 0.5rem;
  font-size: 1.3rem;
  border: 1px solid #999;
  /* border: 1px solid #FFF; */
  border-radius: 1rem;
  box-shadow: 0px 0px 5px #fff;
  /* box-shadow: 0 0 10px #FFF; */
  cursor: pointer;
  transition: 0.5s;
  /* background-color: #26547C; */
  background: url(./img/pozaPlava.png);
  background-repeat: repeat-x;
  background-position: top;
  /* text-shadow: 3px 3px 3px #1d1f1d; */
/*    */
  outline: 2px solid #FFD166;
}
.pozivi button.phone:hover {
  box-shadow: 0px 0px 10px #fff;
  text-shadow: 3px 3px 3px #1d1f1d;
  color: #FFD166;
  background-position: center;
}
.pozivi button.whatsapp:hover {
  box-shadow: 0px 0px 10px #fff;
  text-shadow: 3px 3px 3px #1d1f1d;
  color: #FFD166; 
  background-position: center;
}

.phone,
.whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-width: 150px;
}
.phone {
  margin-top: auto;
  margin-bottom: 1.5rem;
}
.whatsapp {
  margin-bottom: auto;
  margin-top: 1.5rem;
}
/* ARTICLE  ----------------------------------------------------------------- */
article {
  margin: 0 auto;
  width: 100%;
  padding: 1rem;
  line-height: 1.8;
}
article div.text {
  width: 100%;
  padding: 2rem;
}
/* ARTICLE  ---------------------------------------------- KRAJ ------------ */

/* Form -------------------------------------------------------------------- */

.sljasti_zuto {
  box-shadow: 0 0 10px #FFD166;
}
.sljasti_plavo {
  box-shadow: 0 0 10px #26547C;
}
.naslov-quote {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin: 5rem auto 1rem;
  text-align: center;
  box-shadow: inset 0 0 30px #26547C;
  border-radius: 50px;
  width: 85%;
}
h2.naslov-quote {
  color: rgb(255, 209, 102);
  
}

.zuti-shine {
  text-transform: uppercase;
  margin: 3rem auto 1.7rem;
  text-align: center;
  border-radius: 50px;
  width: 90%;
  box-shadow: 0 0 15px #ecd717;
  box-shadow: inset 0 0 15px #26547C;
  font-size: 1.2rem;
  color: rgb(255, 209, 102); 
  
}
form {
  margin: 15px 5px;
}

form label {
  display: block;
  margin-bottom: 0;
  margin-top: 1rem;
  margin-left: 1.5rem;
  font-size: 1.3rem;
  /* font-weight: bold; */
}

form button {
  display: block;
  /* width: 50%; */
  max-width: 350px;
  min-width: 230px;
  margin: 2rem auto;
  font-size: 1.2rem;
  padding: 0.5rem 1.1rem;
  border-radius: 1rem;
  border: 3px solid hsl(42, 100%, 70%);
  box-shadow: 0px 0px 5px hsl(42, 100%, 70%);
  color: white;
  color: hsl(42, 100%, 70%);
  cursor: pointer;
  background: url(./img/pozaPlava.png);
  background-repeat: repeat-x;
  background-position: top;
  transition: 0.5s;
}

form button:hover,
form button:focus {
  box-shadow: 0px 0px 10px #fff;
  background-position: center;
  text-shadow: 3px 3px 3px #1d1f1d;
  outline:none;
  transition: 0.5s;
  color: #FFFFFF;
}

form input,
form textarea {
  width: 95%;
  padding: 10px;
  
  margin-left: 0.5rem;
  margin-bottom: 10px;
  box-sizing: border-box;
  resize: vertical;
  font-size: 1.2rem;
  background-color: #333;
  color: #09c372;
  color: rgb(255, 209, 102);
  font-family: inherit;
  border-radius: 0.5rem;
}
form input:focus, form textarea:focus {
  border: 2px solid rgb(255, 209, 102);
  border-radius: 0.5rem; 
  outline:none;
}
form .ifAirport {
  font-size: 75%;
  margin-left: 1.5rem;
}

/* Form ---------------------------------------------------------KRAJ ------ */




/* CIJENE  --------------------------------------------------------------- */

table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 6rem;
  font-size: 1.1rem;
  /* border: 1px solid silver; */
  border-radius: 0.5rem;
  color: silver;
}
.text-table {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2rem;
  background-color: #303030;
  padding: 0.5rem;
  border: 1px solid #26547C;
  border-radius: 1rem;
}

.tablehead {
  color: #FFD166;
  background-color: #413d3d;
  font-weight: 700;
  font-size: 1.2rem;
}
table td {
  border-radius: 0.5rem;
  width: 50%;
}
tr :nth-child(1) {
  text-align: left;
  padding: 0.5rem 0 0.5rem 2rem;
}
tr :nth-child(2) {
  text-align: right;
  padding: 0.5rem 2rem 0.5rem 0;
}
.redred:hover {
  color: #FFD166;
  background-color: #26547C;
}
/* CIJENE  -------------------------------- KRAJ -------- */

.our-quality .text {
  padding: 4rem;
}
.top-taxi .text {
  padding: 4rem;
}
/*  -----   FOOTER --------------------------------------------------------- */
  .futko {
    display: grid;
    grid-template-columns: 1fr 1fr 100px;
    justify-content: space-between;
    gap: 1.5rem;
    grid-template-areas: 'naziv broj logo';
    padding: 2rem;
    background-color: #1d1f1d;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .fut-info {
    grid-area: naziv;
    line-height: 1.5;
    margin-left: 1.5rem;
    padding: 1rem;
    align-self:last baseline;
  }
  .fut-broj {
    grid-area: broj;
    line-height: 1.5;
    padding: 1rem;
    align-self:last baseline;
  }
  .fut-logo {
    grid-area: logo;
    /* text-align: center;
     */
     padding: 1rem;
     align-self:last baseline;
  }
  .fut-logo img {
    filter:opacity(0.3);
  }
/*  -----   FOOTER ------------------------------------- KRAJ ----------------- */





/*  ---------    MEDIAS -----------------------------------------   */
/*  ---------    MEDIAS -----------------------------------------   */
/*  ---------    MEDIAS -----------------------------------------   */






/*  ---------    MEDIA max 660 -----------------------------------------   */
@media only screen and (max-width: 660px) {
  .blurko {
    margin: 3rem auto;
    gap: 0;
  }
  .blurko .textlead {
    margin: 0 auto;
    font-size: 2rem;
  }
  .blurko .textich {
    font-size: 0.9rem;
  }
  .logolead {
/*     background-image: url(./img/logo40.png);
    background-repeat: no-repeat;
    background-position: center center; */
    /* height: 60px; */
  }
  header nav {
    display: none;
  }
  #trix {
    display: block;
  }
  .mobile-menu {
    left: 0;
    width: 100%;  
  }
  .slika {
    background-position: bottom right;
    width: 100%;
    height: 30vh;
    /* padding: 1rem; */
    padding-bottom: 0;
  }
  .slika-text {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 1rem;
  }

  .pozivi {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
    padding: 2rem;
  }
  .pozivi button {
    width: 60%;
    padding: 0.5rem;
    font-size: 1.1rem;
    border-radius: 1rem;
    margin: 1rem;
  }
  .our-quality {
    width: 100%;
  }
article div.text {
  width: 100%;
  padding: 0;
}
    .top-taxi .text {
  padding: 1.6rem;
}
  table {
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    font-size: 1.1rem;
    /* border: 1px solid silver; */
    border-radius: 0.5rem;
    color: silver;
  }
  .naslov-quote {
    font-size: 1.4rem;
  }
  .futko {
    display: grid;
    grid-template-columns: 1fr 120px;
    justify-content: space-around;
    grid-template-rows: 1fr 1fr;
    gap: 1.2rem;
    grid-template-areas: 'naziv logo'
                          'broj broj';
  }
  .fut-info {
    width: 100%;
    text-align: left;
    grid-area: naziv;
    margin-left: 1.4rem;
    align-self: baseline;
  }
  .fut-broj {
    width: 100%;
    text-align: left;
    grid-area: broj;
    align-self:self-start;
    justify-self:baseline;
    margin-left: 1.4rem;
  }
  .fut-logo {
    width: 100%;
    text-align: end;
    margin:  0 auto;
    grid-area: logo;
  }
}
/*  ---------    MEDIA max 650 -------------------------- KRAJ -----   */

/*  ---------    MEDIA max 400 -------------------------------------   */
@media only screen and (max-width: 400px) {
  #logo {
  font-size: 1.2rem;
}
  .naslov-quote {
    font-size: 1.1rem;
    width: 90%;
  }
.pozivi {
  width: 100%;
  margin: 0 auto;
}
.pozivi button.phone, .pozivi button.whatsapp {
  width: 100%;
}
  .isto-isto {
    width: 90%;
    text-align: center;
  }
  .link-polje  {
    width: 90%;
  }
  .blurko {
    gap: 0;
  }
  .blurko .textlead {
    margin: 0 auto;
    font-size: 1.5rem;
  }
  .blurko .textich {
    font-size: 0.8rem;
  }
  .logolead {
/*     background-image: url(./img/logo30.png);
    background-repeat: no-repeat;
    background-position: center center; */
    /* height: 50px; */
    margin: 0;
    margin-bottom: 0;
  }
  .pozivi {
    width: 100%;
  }
  main {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0rem;
  }
  article {
    width: 100%;
    padding: 0.5rem;
  }
.our-quality .text {
  padding: 1rem;
}
  main div.text {
    width: 100%;
    padding: 2rem;
    margin-top: 1rem;
  }
  .text {
    padding: 0;
  }
  .top-taxi .text {
  padding: 1.6rem;
}
  .our-quality .text{
  padding: 1rem;
}
.intro-text {
  font-size: 0.8rem;
}

  .text-table {
    width: 100%;
    margin: 2rem auto;
    background-color: #303030;
    padding: 0;
    border: 1px solid #666;
    border-radius: 0.5;
    /* border-radius: 1rem; */
  }
  form button {
    display: block;
    width: 90%;
    margin: 2rem auto;
    background-color: #333;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: 0.5s;
  }
  table {
    width: 90%;
    margin: 2rem auto;
    padding: 0;
    font-size: 1rem;
    /* border: 1px solid silver; */
    border-radius: 0.5rem;
    color: silver;
  }
  tr :nth-child(1) {
    text-align: left;
    padding: 0.5rem 0 0.5rem 1rem;
  }
  tr :nth-child(2) {
    text-align: right;
    padding: 0.5rem 1rem 0.5rem 0;
  }
  .futko {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 100px;
    gap: 0.1rem;
    grid-template-areas: 'naziv'
                          'broj'
                          'logo';
    
  }
  .fut-info {
    grid-area: naziv;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0.2rem;
  }
  .fut-broj {
    grid-area: broj;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .fut-logo {
    grid-area: logo;
    text-align: center;
    margin: 0 auto;
    padding: 0.2rem;
  }

}
/*  ---------    MEDIA max 400 ------------------------- KRAJ ------   */