.logo-img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.hero-section {
  padding: 80px 0;
  background: var(--gradient-bg);
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-button {
  background: var(--primary-color);
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.hero-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.about-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-info {
  background: rgba(139, 69, 19, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin: 2rem 0;
}

.characters-section {
  padding: 80px 0;
  background: var(--gradient-bg);
}

.character-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: transform 0.3s ease;
  height: 100%;
}

.character-card:hover {
  transform: translateY(-5px);
}

.character-image {
  margin-bottom: 20px;
}

.character-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.character-description {
  color: var(--text-light);
  line-height: 1.6;
}

.artifacts-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.7);
}

.artifact-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: transform 0.3s ease;
  height: 100%;
}

.artifact-card:hover {
  transform: translateY(-5px);
}

.artifact-image {
  margin-bottom: 20px;
}

.artifact-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.artifact-description {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-section {
  padding: 80px 0;
  background: var(--gradient-bg);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px var(--shadow-color);
}

.uk-input,
.uk-textarea {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.uk-input:focus,
.uk-textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.uk-button-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.uk-button-primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.uk-button-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.uk-button-secondary:hover {
  background: var(--accent-color);
  color: white;
}

body {
  overflow-x: hidden;
}

.uk-container {
  max-width: 100%;
  padding: 0 15px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-section {
  padding: 60px 0;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.3;
  word-wrap: break-word;
}
