* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fafafa;
  color: #333;
}

/* Horný panel */
.top-bar {
  background: #593F3E;
  color: white;
  font-size: 14px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-around;
}

/* Navigácia */
.navbar {
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
}
.logo {
  color: #1f0d5b;
  font-weight: bold;
  font-size: 26px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #593F3E;
  font-size: 18px;
  font-weight: 800;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #ffda6b;
}
.nav-icons input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.nav-icons button {
  background: #6b4ad8;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

/* Hero sekcia */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  background: linear-gradient(to right, #593F3E, #d4bfbf);
  color: white;
}
.hero-text {
  max-width: 500px;
}
.hero-text h2 {
  font-size: 42px;
  margin-bottom: 10px;
}
.hero-text span {
  color: #fff;
  font-weight: bold;
}
.hero-text .highlight {
  margin-top: 10px;
  font-size: 18px;
  color: #ffda6b;
}
.hero-text .center {
  margin-top: 10px;
  font-size: 18px;
  color: white;
}
.hero-text .btn {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #1f0d5b;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.hero-text .btn:hover {
  background: #ffda6b; 
  box-shadow: 0 4px 15px rgba(107, 74, 216, 0.4); 
  transform: scale(1.05); 
}

.hero-image img {
  width: 400px;
  border-radius: 10px;
}

/* Produkty */
.products {
  padding: 60px 8%;
  text-align: center;
}
.products h3 {
  font-size: 28px;
  color: #1f0d5b;
  margin-bottom: 40px;
}
.product-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.product-card h4 {
  margin: 15px 0 10px;
  color: #1f0d5b;
  font-weight: 1000;
}
.product-card p {
  font-size: 14px;
  color: #555;
}
.product-card button {
  background: #6b4ad8;
  color: white;
  border: none;
  padding: 8px 16px;
  margin-top: 15px;
  border-radius: 4px;
  cursor: pointer;
}

/* Pätička */
footer {
  background: #593F3E;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}

.monaco-font {
  font-family: "Monaco", monospace;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 55px;
}

.contact-info {
  padding: 60px 8%;
  text-align: center;
}

.contact-info h3 {
  font-size: 28px;
  color: #1f0d5b;
  margin-bottom: 40px;
}

.contact-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card p {
  font-size: 16px;
  color: #5b5a5a;
  margin-bottom: 12px;
}

.contact-card strong {
  color: #906967;
}

.contact-card a {
  color: #6b4ad8;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.center-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px; 
  text-align: center;
}

.center-text p{
  color: #1f0d5b;
  text-align: center;
}

.document-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.doc-btn {
  display: inline-block;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(107, 74, 216, 0.3);
}

.doc-btn:hover {
  background: #ffda6b;
  color: #1f0d5b;
  box-shadow: 0 6px 20px rgba(107, 74, 216, 0.4);
  transform: scale(1.08);
}