
/* GENERAL */
@font-face {
    font-family: "OCR-A-BT";
    src: url("src/fonts/OCR-A-BT.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: "Jura";
    src: url("src/fonts/Jura-VariableFont_wght.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Jura", monospace;
    background-color: black;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "OCR-A-BT", monospace; */
}

/* HEADER */
header {
    background-color: black;
    padding: 16px 0;
    width: 100%;
    position: fixed;
    top: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 30%;
    min-width: 200px;
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space */
}

nav {
    flex: 1;
}

.navbar {
    display: flex;
    gap: 5%;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: max(18px, 1.5vw);
    width: max-content;
    
}

.nav-links a:hover {
    /* background-color: #444; */
    /* background-color: white; */
    /* color: black; */
}


.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    min-width: 180px;
    list-style: none;
    /* border: 2px dashed white; */
    width: 100%;
    
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 10px;
    width: 100%;
    display: block;
    color: black;

}

.dropdown-menu a:hover{
  background-color: black;
  color: white
  
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* CONTENT */
.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 136px 16px 16px 16px;
    gap: 30px;
    width: 100%;
}

/* map */

.map-block{
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    /* border-radius: 40px; */
    /* background: #B31412; */
    /* padding: 10px; */
    overflow: hidden;
    width: fit-content;
    max-width: 850px;
    width: 100%;
    gap: 12px;
    margin-bottom: 15px;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); */
}

.map-wrapper .map{
  width: 100%;
}

.map-title {
  font-size:max(16px, 1.5vw);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    color: white;
    align-self: flex-start;
}

.question {
    color: white;
    margin-bottom: 15px;
}

/* categories */
.categories {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.categories .categories-title {
  color: white;
  display: flex;
  align-items: center;
  margin: auto;
  max-width: 850px;
  width: 100%;
}

.categories .card {
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    /* border-radius: 10px; */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin: auto;
    max-width: 850px;
    width: 100%
  }

.categories  .card img {
    border-radius: 8px;
    object-fit: cover;
  }

.categories  .card-content {
    flex: 1;
    margin-left: 30px;
  }

.categories  .card-title {
    font-size: max(18px, 2.1vw); /* Responsive title */
    font-weight: bold;
    margin-bottom: 8px;
  }

.categories  .card-description {
    font-size: 1.1rem;
    font-weight: 500  ;
    /* color: #555; */
  }

  .card img{
    max-width: 225px;
  }

.coffe-img {
    background-image: url('src/images/categories/kavova_machina.jpg');
}
.tv-img {
    background-image: url('src/images/categories/televisor.jpg');
}
.laptop-img {
    background-image: url('src/images/categories/laptop.jpg');
}
.phone-img {
    background-image: url('src/images/categories/telefon.jpg');
}

/* .categories .card .title {
    font-size: 2.1vw;
} */

.footer { 
    width: 100%;
    background-color: black;
    color: white;
    padding: 16px 0;
    transition: all 0.5s ease;
    box-sizing: border-box;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
  }
  
  .footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }
  .footer-info .item{
    display: flex;
    gap: 8px
  }

 
 

  .footer-info a{
    color: inherit;
    text-decoration: none;
  }
  
  .footer-social a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 5px 10px;
    padding: 8px 12px;
    /* border-radius: 5px; */
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background: white;
    color: black;
  }

  .highlighted {
    --blur: 1.75rem;
    --box-blur: calc(0.5 * var(--blur));
    --glow: var(--color);
    border-radius: 12px;
    box-shadow: 
      /* --- "glass" tube --- */
      /* inside */ inset 0 0 0 2px rgba(0, 0, 0, 0.15),
      /* outside */      0 0 0 2px rgba(0, 0, 0, 0.15),
      /* --- glow --- */
      /* inside */ inset 0 0 var(--box-blur) var(--glow),
      /* outside */      0 0 var(--box-blur) var(--glow);
    color: var(--color, white);
    --color: #FDA802;
     filter: brightness(125%);
  }

  @media (max-width: 690px) {
    .footer-social{
      display: flex;
      flex-direction: column;
    }

    .footer-info{
      justify-content: center;
    }
  }

  @media (max-width:590px) {
    .navbar{
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
   .card{
    flex-direction: column;
   } 
  }

  @media (max-width:420px) {
    .footer-container{
      display: flex;
     flex-direction: column;
     gap: 8px;
    } 

    .footer-info{
      padding:0 22px ;
    }
   }