/* Professions Page Styles */

.professions-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.professions-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  opacity: 0.9;
}

.professions-hero-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
}

.professions-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.professions-hero h1 {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.professions-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Main Content */
.professions-main {
  padding: 80px 0;
  background: #f8f9fa;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

/* Professions Grid */
.professions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.profession-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.profession-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.profession-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gold), #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: white;
}

.profession-card h3 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.profession-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.profession-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.detail-section {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.detail-section h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-section h4 i {
  color: var(--primary-gold);
}

.skills-list,
.products-list,
.locations-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skills-list li,
.products-list li,
.locations-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  font-size: 0.95rem;
  color: #555;
}

.skills-list li::before,
.products-list li::before,
.locations-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
}

.requirements {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* System Section */
.profession-system,
.synergy-section,
.tips-section,
.achievements-section {
  margin-bottom: 80px;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  text-align: center;
  color: #1a1a2e;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-gold);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.system-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.system-card:hover {
  transform: translateY(-3px);
}

.system-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.system-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
}

.system-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Synergy Section */
.synergy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.synergy-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  border-left: 4px solid var(--primary-gold);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.synergy-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.synergy-card h3 i {
  color: var(--primary-gold);
  margin-right: 10px;
}

.synergy-card p {
  color: #666;
  line-height: 1.6;
}

/* Tips Section */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tip-card {
  background: linear-gradient(135deg, #f8f9fa, white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: scale(1.05);
}

.tip-card i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.tip-card h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.tip-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Achievements Section */
.achievements-list {
  max-width: 800px;
  margin: 0 auto;
}

.achievement-item {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: translateX(10px);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 25px;
  flex-shrink: 0;
}

.achievement-icon.gold {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: white;
}

.achievement-icon.silver {
  background: linear-gradient(135deg, #c0c0c0, #808080);
  color: white;
}

.achievement-icon.bronze {
  background: linear-gradient(135deg, #cd7f32, #8b4513);
  color: white;
}

.achievement-info h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.achievement-info p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .professions-hero h1 {
    font-size: 2.5rem;
  }

  .professions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .profession-card {
    padding: 30px 20px;
  }

  .profession-details {
    grid-template-columns: 1fr;
  }

  .system-grid,
  .synergy-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .achievement-item {
    flex-direction: column;
    text-align: center;
  }

  .achievement-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
