

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #e3d18a;
}

footer {
  text-align: center;
  margin-top: 50px;
  font-size: 16px;
  color: #000000;
}
  
footer p {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #000000;
  border-bottom: 1px solid #000000;
}


.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f6f6cf;
}


main {
  padding: 40px 30px;
}

/* Zabezpečenie zobrazenia v mobilných zariadeniach */
@media (max-width: 768px) {
  .skills-container {
      flex-direction: column;
      align-items: center;
}

.skills-category {
      width: 90%;
      margin-bottom: 20px;
}
}

/* Štýl pre mobily */
.sekcia {
  padding: 20px;
  background-color: #f2f2f2;
  font-size: 16px;
  }
  
/* Pre tablety (šírka 768px) */
  @media screen and (min-width: 768px) {
  .sekcia {
  background-color: #e0f7fa;
  font-size: 18px;
  }
  }
  
/* Pre počítače (šírka 1024px) */
  @media screen and (min-width: 1024px) {
  .sekcia {
  background-color: #b2ebf2;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}
}

nav > a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size:1,5em;
    padding-right: 7px ;
}

header{display: flex;
    justify-content: space-between;}

@media(max-width:480px){
    header{display: inline;}
    nav{display: flex;
       flex-direction: column;
       gap:10px;
       nav > a {border: solid rgb(0, 0, 0) 3px}
    }
    
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.contact-section {
    background-color: #f4f4f4;
    padding: 50px;
    margin-top: 20px;
    text-align: center;
}

.contact-section h2 {
    color: #333;
}

.contact-section p {
    font-size: 18px;
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #000000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #000000;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}



/* Štýl sekcie Moje zručnosti */
.skills-section {
    background-color: #fff;
    padding: 40px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
}


/* Nadpis sekcie */
.skills-section h3 {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Kontajner pre zručnosti */
.skills-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Kategórie zručností (Hard, Soft, Jazykové) */
.skills-category {
    background-color: #f9f9f9;
    border: 1px solid #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 calc(33% - 30px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 330px;
    text-align: left;
}

.skills-category:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Nadpis pre každú kategóriu */
.skills-category h4 {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Zoznam zručností */
.skills-category ul {
    list-style-type: none;
    font-size: 1.1em;
    color: #555;
}

.skills-category ul li {
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
}


/* Označenie pre každú zručnosť */
.skills-category ul li::before {
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 1.2em;
    top: 5px;
}


.section-title {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.skills-category {
  flex: 1 1 250px;
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.skills-category h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #000000;
  padding-bottom: 0.3rem;
}

.skills-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.skills-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #000000;
}

/* Responzivita */
@media (max-width: 768px) {
  .skills-container {
    flex-direction: column;
    align-items: center;
  }

.skills-category {
    width: 100%;
    max-width: 400px;
  }
}

.skills-list {
  list-style-type: disc;   /* zobrazí bodky */
  padding-left: 1.5rem;    /* posunie zoznam doprava, aby boli bodky viditeľné */
  margin: 0;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.intro-section {
  padding: 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000000;
}

.intro-text {
  max-width: 600px;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: #000000;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #000000;
}

.arrow-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-primary[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
}

.details-section {
  padding: 2rem;
  background-color: #f4f4f4;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  background-color: white;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #e0e0e0;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #d0d0d0;
}

.accordion-header[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 1rem;
  animation: fadeIn 0.3s ease-in-out;
}

.accordion-content ul {
  padding-left: 1.5rem;
  margin: 0;
}

.accordion-content li {
  margin-bottom: 0.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .title {
    font-size: 2rem;
  }

.btn-primary {
    width: 100%;
    padding: 1rem;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 20px;
}
  
.container {
  background-color: #ffffff;
  padding: 30px;
  margin: 30px auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
  
.container h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}
  
.container p {
  line-height: 1.6;
  margin-bottom: 15px;
}
  
.item {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
  
.item h3 {
  font-size: 20px;
  color: #34495e;
  margin-bottom: 5px;
}
  
.item em {
  font-style: normal;
  color: #888;
  font-size: 14px;
}
  
.section-end {
  font-style: italic;
  color: #555;
  text-align: center;
}
