/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=WDXL+Lubrifont+SC&display=swap');



::-webkit-scrollbar-track {background-color: #000000;}
::-webkit-scrollbar {width: 7px;background-color: #000000;}
::-webkit-scrollbar-thumb { width: 7.5px; background: #cd7a45; border-radius: 2.5px;box-shadow: 0 0 8px 4px hsla(220, 68%, 12%, 0.1);}



/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  --first-color: hsl(273, 97%, 66%);
  --first-color-shape: hsl(253, 33%, 32%);
  --title-color: hsl(273, 8%, 15%);
  --text-color: hsl(273, 4%, 45%);
  --body-color: hsl(273, 100%, 99%);
  --container-color: #fff;
  --title-color-dark: hsl(273, 83%, 98%);
  --text-color-dark: hsl(273, 21%, 56%);
  --container-color-dark: hsl(273, 80%, 14%);
  /*========== Font and typography ==========*/
  --body-font: 'CHINESER', sans-serif;
  --big-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  /*========== z index ==========*/
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 2rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
    font-family: "WDXL Lubrifont SC", sans-serif;
      font-weight: 400;
  font-style: normal;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3 {
  color: var(--title-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.section {
  padding: 4.5rem 0 1rem;
}

.section__height {
  height: 100vh;
}

/*=============== HEADER Y NAV ===============*/
.nav {
  background-color: #000000;
  padding-top: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.nav__shape {
  width: 200px;
  height: 200px;
  background-color: #cd7a45;
  border-radius: 5px;
  position: absolute;
  top: -2rem;
  left: -2rem;
  filter: blur(90px);
}

.nav__close {
  position: relative;
  display: inline-flex;
  font-size: 2rem;
  color: #cd7a45;
  cursor: pointer;
  margin-bottom: 3.5rem;
}

.nav__img {
  width: 70px;
}

.nav__mask {
  width: 80px;
  height: 80px;
  background: linear-gradient(224deg, #cd7a45 -2%, #cd7a45 97%);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.nav__data {
  position: relative;
  margin-bottom: 3rem;
}

.nav__greeting {
  display: block;
  color: #cd7a45;
  font-size: var(--small-font-size);
  font-weight: 500;
  margin-bottom: .25rem;
}

.nav__greeting a {  color: #cd7a45;}
.hosting a {  color: #cd7a45; text-decoration: underline;}


.nav__name {
  color: var(--title-color-dark);
  font-size: var(--big-font-size);
  line-height: 130%;
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav__link {
  color: var(--text-color-dark);
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  font-size: var(--small-font-size);
  font-weight: 500;
  transition: .3s;
}

.nav__link i {
  font-size: 1.15rem;
  color: #cd7a45;
}

.nav__link:hover {
  color: #cd7a45;
}

.main {
  position: relative;
  background-color: #0b0b0b;
  transition: .4s;
}

.header {
  width: 100%;
  background-color: #0b0b0b;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
    background-color: #000000;  color: #cd7a45;
}

.header__nav {
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;  color: #cd7a45;
}

.header__logo, .header__toggle {
  color: #cd7a45;
}

.header__logo {
  font-weight: 500;
}

.header__toggle {
  font-size: 1.15rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  transform: translate(70%);
}

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 4px rgba(40, 37, 37, 0.1);
}

/* Active link */
.active-link {
  color: var(--title-color-dark);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 767px) {
  .show-menu {
    transform: translate(40%);
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .header__nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__shape {
    width: 350px;
    height: 350px;
  }
  .nav__mask {
    width: 100px;
    height: 100px;
      border-radius: 5px;
    margin-bottom: 2rem;
  }
  .nav__img {
    width: 90px;
  }
  .nav__link {
    font-size: var(--normal-font-size);
  }
  .nav__link i {
    font-size: 1.25rem;
  }
}








.section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 2rem; /* Space between image and text */
  margin-top: 10%;
}

.section-content .image-container {
  flex: 1;
}

.section-content .image-container img {
  width: 100%;
  height: auto;
  border-radius: 5px; /* Optional: rounded corners for the image */
}

.section-content .text-container {
  flex: 1;
  color: #cd7a45; 
}

.section-content .title {
  font-size: 2.5rem;
  margin-bottom: 1rem;  color: #cd7a45; 
}

.section-content .subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;  color: #cd7a45; 
}

.section-content .description {
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.section-content .connect-button {
  padding: 10px 20px;
  background-color: #cd7a45;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
      font-family: "WDXL Lubrifont SC", sans-serif;

}

.section-content .connect-button:hover {
  background-color: #f6d978;
}

/* Responsive for Mobile */
@media screen and (max-width: 768px) {
  .section-content {
    flex-direction: column; /* Stack image and text vertically */
    align-items: center;
    text-align: center;
  }

  .section-content .image-container img {
    width: 80%; /* Resize image for smaller screens */
    margin-bottom: 1.5rem;
  }

  .section-content .title {
    font-size: 2rem;
  }

  .section-content .subtitle {
    font-size: 1.2rem;
  }

  .section-content .description {
    font-size: 0.9rem;
  }

  .section-content .connect-button {
    font-size: 1.1rem;
  }
}































.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  padding-bottom: 3rem; /* Add bottom space */
  box-sizing: border-box;
}

.section__height {
  height: auto; /* or remove height completely */
  min-height: 100vh; /* Optional: full viewport height */
  padding: 4rem 1rem; /* Add vertical spacing */
}


.store-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  padding: 1rem;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.store-item:hover {
  transform: translateY(-5px);
}

.store-item img {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: cover; /* Ensures the image fills the box and keeps aspect */
  border-radius: 5px;
  margin-bottom: 1rem;
}

.store-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;  color: #fff;
}

.store-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.85;  color: #cd7a45;
}

.store-price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #cd7a45;
}

.store-button {
  padding: 10px 20px;
  background-color: #cd7a45;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  width: 100%;      font-family: "WDXL Lubrifont SC", sans-serif;
}

.store-button:hover {
  background-color: #f6d978;
}

/* Responsive tweak */
@media screen and (max-width: 480px) {
  .store-title {
    font-size: 1.2rem;
  }

  .store-subtitle {
    font-size: 0.95rem;
  }

  .store-price {
    font-size: 1rem;
  }
}



.store-info {
  color: #cd7a45;
  font-size: 1rem;
  line-height: 1.8;
}

.store-info h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #cd7a45; /* Zlatna nijansa za naglasak */
  text-align: left;
}

.store-info ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.store-info li {
  margin-bottom: 0.75rem;
}

.store-info a {
  color: #cd7a45;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.store-info a:hover {
  color: #f6d978;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .store-info {
    font-size: 0.95rem;
    padding: 1.5rem;
  }

  .store-info h3 {
    font-size: 1.3rem;
  }
}
