/* ===== GLOBALNE VARIJABLE ===== */
:root {
  --primary-color: #eba14c;
  --secondary-color: #f6f6ff;
  --accent-color: #eba14c;
  --dark-color: #1a1423;
  --light-color: #ffffff;
  --text-color: #333333;
  --light-text: #f8f9fa;
  --gray-light: #e9ecef;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ===== GLAVNI STILOVI ===== */
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--secondary-color);
}

/* ===== HERO SEKCIJA ===== */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../assets/hero-bg.jpg") center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
  margin-bottom: 3rem;
}

.hero-content h1 {
  font-family: "Forum", serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-content .subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 400px;
  margin: 0 auto;
}

/* ===== KONTEJNER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== KATEGORIJE ===== */
.category-selector {
  margin-bottom: 3rem;
}

.selector-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.category-btn {
  background-color: var(--light-color);
  border: none;
  padding: 1rem 0.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  color: var(--text-color);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.category-btn i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.category-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.category-btn.active {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.category-btn.active i {
  color: var(--light-text);
}

/* ===== CIJENOVNI SADRŽAJ ===== */
.price-content {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.price-header {
  text-align: center;
  margin-bottom: 2rem;
}

.price-header h2 {
  font-family: "Forum", serif;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.price-header .subtitle {
  color: #666;
  font-style: italic;
}

.package-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.package {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

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

.package h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
}

.package p {
  color: #555;
  margin-bottom: 1rem;
}

.package ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.package ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.package ul li:before {
  content: "✓";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.price-highlight {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-color);
  margin: 1rem 0;
  display: block;
}

.extras-section {
  margin-top: 3rem;
}

/* ===== CTA SEKCIJA ===== */
.cta-section {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  color: var(--light-text);
}

.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #ffb347;
  transform: translateY(-2px);
}

/* ===== RESPONZIVNOST ===== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .subtitle {
    font-size: 1rem;
  }

  .selector-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 250px;
  }

  .selector-buttons {
    grid-template-columns: 1fr;
  }

  .category-btn {
    min-height: 60px;
    padding: 0.8rem 0.5rem;
  }
}
