/* ============================================
   LUEN – UVJETI KORIŠTENJA
   ============================================ */

:root {
  --plum: #391B26;
  --merlot: #7A3451;
  --lavender: #B39BA8;
  --rose: #D6C8D0;
  --cream: #FAF7F4;
  --white: #ffffff;
}

/* === PAGE WRAPPER === */
.terms-page {
  background: var(--cream);
  padding: 8rem 0 5rem;
}

.terms-page .container {
  max-width: 64rem;
}

/* === HEADER === */
.terms-header {
  text-align: center;
  margin-bottom: 4rem;
}

.terms-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--merlot);
  margin-bottom: 0.5rem;
  display: block;
}

.terms-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--plum);
}

.terms-date {
  font-size: 0.875rem;
  color: var(--lavender);
  margin-top: 0.75rem;
}

/* === CONTENT BOX === */
.terms-content {
  background: var(--white);
  padding: 4rem;
  border: 1px solid var(--rose);
}

.terms-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* === INTRO === */
.terms-intro {
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--plum);
}

/* === SECTIONS === */
.terms-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream);
}

.terms-section:last-child {
  border-bottom: none;
}

.section-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 1rem;
}


  .terms-section p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;

}

/* === LIST === */
.terms-list {
  padding-left: 1.25rem;
  margin-top: 1rem;
}

.terms-list li {
  margin-bottom: 0.5rem;
  color: #555;
}

.terms-list li::marker {
  color: var(--merlot);
}

/* === LINKS === */
.terms-link {
  color: var(--merlot);
  text-decoration: underline;
}

.terms-link:hover {
  color: var(--plum);
}

/* === SUPPORT BOX === */
.support-box {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--rose);
  text-align: center;
}

.support-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--plum);
  margin-bottom: 1rem;
}

.support-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.support-text {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 1rem;
}

.support-button {
  display: inline-block;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--plum);
  border-bottom: 1px solid var(--plum);
  padding-bottom: 2px;
}

.support-button:hover {
  color: var(--merlot);
  border-color: var(--merlot);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .terms-page {
    padding-top: 6rem;
  }

  .terms-title {
    font-size: 2rem;
  }

  .terms-content {
    padding: 2rem 1.5rem;
  }

  .terms-intro {
    font-size: 1.125rem;
  }
}
