




/* 🔹 Jednotný štýl pre všetky sekcie 🔹 */

/* Skrývanie všetkých sekcií mimo aktuálnej */
section {
  display: none;
  padding: 80px 20px;
  background-color: #f5f2ec;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: #444;
  line-height: 1.7;
  font-size: 18px;
}

/* Wrapper obsahu sekcií – mierne centrovanie */
section > * {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* Nadpisy sekcií */
section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
  text-align: left;
}

/* Texty a zoznamy */
section p,
section li {
  font-size: 18px;
  margin-bottom: 15px;
  color: #444;
}

section ul,
section ol {
  margin-left: 40px;
}

/* Odkazy */
section a {
  color: #8b5e3c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

section a:hover {
  color: #5c3b23;
  text-decoration: underline;
}

/* Obrázky v sekciách */
section img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 30px;
  display: block;
}

/* 🔹 Úvodná welcome sekcia 🔹 */
.welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.welcome img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: -1;
}

.welcome-content {
  z-index: 2;
}

.welcome h1 {
  font-size: 5rem;
  color: #222;
  margin-bottom: 15px;
}

.welcome .tagline {
  font-size: 1.8rem;
  color: #333;
  font-style: italic;
}

/* 🔹 Header a navigácia 🔹 */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background-color: #e7d8cc;
  font-size: 16px;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.logo a {
  color: #8b5e3c;
}

nav a {
  text-decoration: none;
  color: #333;
  margin-left: 20px;
}

nav a:hover {
  text-decoration: underline;
}

/* 🔹 Footer 🔹 */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
  font-size: 14px;
}

/* 🔹 Hero / Úvodná sekcia 🔹 */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 80px 20px 40px 20px;
}

.intro-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 48px;
  color: #333;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 25px;
  font-style: italic;
}

.hero p {
  line-height: 1.6;
  font-size: 18px;
  color: #444;
  margin-bottom: 15px;
}

.hero img {
  width: 90%;
  max-width: 1000px;
  border-radius: 12px;
  margin-top: 40px;
  display: block;
}

/* 🔹 Sekcie o eshope 🔹 */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 40px 20px;
  line-height: 1.7;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}

.about-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 15px;
}

.about-content ul {
  list-style: disc;
  margin: 10px 0 20px 40px;
}

.about-content a {
  color: #fff;
  background-color: #8b5e3c;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.about-content a:hover {
  background-color: #a77450;
}

/* 🔹 Sekcia Ako nakupovať 🔹 */
.shopping-steps {
  list-style: decimal;
  margin: 30px 0 0 40px;
  padding: 0;
  font-size: 18px;
  color: #444;
  line-height: 1.8;
}

.shopping-steps li {
  margin-bottom: 20px;
}

.shopping-steps strong {
  color: #8b5e3c;
  font-weight: 600;
}

/* 🔹 Sekcia Kontakt 🔹 */
.contact {
  background-color: #f5f2ec;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 40px;
}

.contact-info {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: left;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.contact-info h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #333;
}

.contact-info a {
  color: #8b5e3c;
  text-decoration: none;
}

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

.contact-info .quote {
  margin-top: 30px;
  font-style: italic;
  color: #5a5a5a;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact button {
  background-color: #8b5e3c;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.contact button:hover {
  background-color: #6e472d;
}

/* 🔹 Sekcia Legislatíva 🔹 */
.law {
  background-color: #faf8f5;
  padding: 80px 20px;
}

.law-content {
  max-width: 900px;
  margin: 0 auto;
  color: #444;
  line-height: 1.7;
}

.law-content h2 {
  font-size: 36px;
  text-align: left;
  margin-bottom: 40px;
  color: #333;
}

.law-content h3 {
  margin-top: 30px;
  color: #222;
  font-size: 22px;
}

.law-content p {
  font-size: 18px;
  margin: 10px 0;
}

.law-content ul {
  list-style: disc;
  margin: 10px 0 20px 40px;
  font-size: 18px;
}

.law-content li {
  margin-bottom: 8px;
}

.law-docs a {
  color: #8b5e3c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-decoration 0.3s;
}

.law-docs a:hover {
  color: #5c3b23;
  text-decoration: underline;
}

/* 🔹 Scrollovanie */
html {
  scroll-behavior: smooth;
}


/* 🔹 Logo v headeri 🔹 */
.logo {
  font-family: Arial, Helvetica, sans-serif; /* rovnaký font ako text */
  font-weight: 700; /* hrubšie */
  font-size: 24px;  /* mierne väčšie */
  color: #222;      /* tmavšie ako nadpisy sekcií */
}

/* 🔹 Nadpisy sekcií 🔹 */
section h2 {
  font-family: Arial, Helvetica, sans-serif; /* rovnaký font ako text */
  font-weight: 500; /* menej hrubé ako logo */
  font-size: 36px;
  color: #333;      /* tmavšia sivá, ale nie úplne čierna */
  margin-bottom: 30px;
  text-align: left;
}

/* 🔹 Jednotný font pre celé telo a sekcie 🔹 */
body, section, .about-content, .contact-info, .law-content {
  font-family: Arial, Helvetica, sans-serif;
  color: #444;
  line-height: 1.7;
  font-size: 18px;
}

/* 🔹 Logo v headeri 🔹 */
.logo {
  font-family: Arial, Helvetica, sans-serif; /* rovnaký font ako text */
  font-weight: 700; /* hrubšie */
  font-size: 24px;  /* mierne väčšie */
  color: #222;      /* tmavšie ako nadpisy sekcií */
}

/* 🔹 Nadpisy sekcií 🔹 */
section h2, .about-content h2, .contact h2, .law-content h2 {
  font-family: Arial, Helvetica, sans-serif; /* rovnaký font ako text */
  font-weight: 500; /* menej hrubé ako logo */
  font-size: 36px;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
}

/* 🔹 Logo a navigácia s tmavými farbami 🔹 */

/* Logo v ľavom hornom rohu */
.logo {
  font-family: Arial, Helvetica, sans-serif; /* rovnaký font ako text */
  font-weight: 700; /* hrubšie ako nadpisy sekcií */
  font-size: 24px;  /* mierne väčšie */
  color: #5c3b23;   /* tmavohnedá farba */
}

/* Navigácia – tmavá farba textu */
nav a {
  text-decoration: none;
  color: #222;      /* tmavosivá/čierna pre hlavicku */
  margin-left: 20px;
  font-weight: 500; /* mierna hrúbka pre lepší vzhľad */
}

nav a:hover {
  text-decoration: underline;
  color: #5c3b23;   /* tmavohnedá pri hover */
}


body {
  margin: 0;
}
