@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
  color: #e4b76e;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: #fff;
  color: #fff;
  border-bottom: 1px solid #444;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
  gap: 1rem;
}

.leftt, .centerr, .rightt {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.leftt {
  flex: 1;
}

.centerr {
  flex: 3;
  justify-content: center;
}

.rightt {
  flex: 1;
  justify-content: flex-end;
}

.logo img {
  height: 80px;
}

.search-box {
  display: flex;
  border: 1px solid #444;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  width: 100%;
  max-width: 600px;
}

.search-box input {
  border: none;
  background: transparent;
  padding: 0.5rem 1rem;
  color: #252525;
  flex: 1;
}

.search-box button {
  background: #000;
  color: white;
  border: none;
  padding: 0 1rem;
  cursor: pointer;
}

.cart {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #252525;
}

.cart-icon {
  text-decoration: none; 
  color: inherit;        
}

.burger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #252525;
}

.nav-bar nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid #444;
}

.nav-left {
  flex: 1;
  position: relative;
}

.nav-right {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-bar a {
  color: #252525;
  text-decoration: none;
  font-weight: 500;
}

.nav-bar a:hover {
  text-decoration: underline;
}

.category-btn {
  background: #333;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #333;
  border: 1px solid #444;
  border-top: none;
  z-index: 9999;
  width: 220px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 0.5rem 0;
}

.category-dropdown ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-dropdown li {
  width: 100%;
}

.category-dropdown a {
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  display: block;
  transition: background 0.3s;
}

.category-dropdown a:hover {
  background: #444;
}

.category-dropdown.open {
  display: block;
}

@media (max-width: 768px) {
  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .leftt, .centerr, .rightt {
    flex: 0 0 100%;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .leftt {
    order: 1;
    gap: 0.5rem;
  }

  .centerr {
    order: 3;
    display: flex;
    margin-top: 0.5rem;
    padding: 0 1rem;
  }

  .rightt {
    order: 2;
    justify-content: flex-end;
  }

  .burger {
    order: 1;
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .search-box {
    width: 100%;
    max-width: 100%;
  }

  .category-btn {
    display: none;
  }

  .nav-bar {
    display: none;
    width: 100%;
  }

  .nav-bar.open {
    display: block;
  }

  .nav-bar nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
  }

  .nav-right {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .category-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }
}


.containerkontakt {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 100px 40px 110px 40px;
    animation: fadeIn 1s ease;
}

.containerkontakt h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #111;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}

.contact-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-item:nth-child(4) {
    animation-delay: 0.4s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #555;
}

.contact-item p,
.contact-item a {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    word-break: break-word;
}

.contact-item a:hover {
    color: #e4b76e;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-item h3 i {
    margin-right: 8px;
    color: #e4b76e;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h2 {
        font-size: 1.5rem;
    }
}
/* FOOTER */
.site-footer {
  background-color: #1F1F1F;
  color: #eee;
  padding: 3rem 2rem 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: auto;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #fff;
}

.footer-links ul,
.footer-contact ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li,
.footer-legal ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-links a,
.footer-legal a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #e4b76e;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: #87D037;
  text-decoration: none;
}