body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background-color: #f8f5f1;
  color: #2c2c2c;
}

.page-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin: 0;
  color: #3e2e2e;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #a88778;
  text-transform: lowercase;
  margin-top: -10px;
  font-weight: 500;
  letter-spacing: 2px;
}

/* Upload box */
.upload-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  margin-bottom: 40px;
  text-align: center;
}

.input-file {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px auto;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

/* MODERNA DUGMAD */
.btn-main {
  background: linear-gradient(to right, #e6b8a2, #d39d8e);
  color: white;
  padding: 12px 28px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-download {
  background: linear-gradient(to right, #7ba97a, #6d9e6e);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Galerija */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  object-fit: cover;
}

.gallery-img:hover {
  transform: scale(1.03);
}


.lightbox-download {
  display: inline-block;
  margin-top: 10px;
  background: #7ba97a;
  color: white !important; /* OVDJE DODAJ !important */
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.lightbox-download:hover {
  background: #5e865f;
  color: white !important; /* I OVDJE */
}
.lightbox-download:visited,
.lightbox-download:active {
  color: white !important;
}
.lightbox-download::after {
  content: ' (otvori i zadrži za čuvanje u galeriju)';
  font-size: 12px;
  color: #ccc;
  display: block;
  margin-top: 5px;
}




