/* Osnovni reset i stil */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #E5D9F2 0%, #F5F0FF 100%);
  color: #45239b;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 20px;
}

/* Naslovi i tekst */
h1, h2 {
  color: #6F63F6;
  text-align: center;
  letter-spacing: 1px;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
}

h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

p {
  color: #7A72C9;
  text-align: center;
  font-size: 22px;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Glavni okvir (portfolio kartica) */
.big, .big1g, .big2g {
  width: 90%;
  max-width: 900px;
  background-color: #ffffff;
  margin: 30px auto;
  text-align: center;
  border-radius: 16px;
  border: 2px solid #A294F9;
  box-shadow: 0 8px 30px rgba(162, 148, 249, 0.3);
  padding: 50px 40px;
 
}

.big:hover, .big1g:hover, .big2g:hover {
 
  box-shadow: 0 12px 35px rgba(162, 148, 249, 0.4);
}

/* Linkovi */
a {
  color: #6F63F6;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

a:hover {
  color: #fff;
  background-color: #A294F9;
  border-radius: 8px;
  padding: 8px 14px;
}

/* Sekcija s gumbima */
.zadaci {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.zadaci ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.zadaci ul li {
  background-color: #E5D9F2;
  width: 240px;
  height: 70px;
  font-size: 20px;
  border: 2px solid #A294F9;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.zadaci ul li:hover {
  background-color: #A294F9;
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 6px 18px rgba(162, 148, 249, 0.4);
}

.zadaci ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: inherit;
  font-size: 20px;
}

/* Responsivnost */
@media (max-width: 700px) {
  h1 {
    font-size: 40px;
  }

  .big, .big1g, .big2g {
    width: 95%;
    padding: 30px 20px;
  }

  .zadaci ul li {
    width: 180px;
    height: 60px;
    font-size: 18px;
  }
}






