<<<<<<< HEAD
:root {
    --primary-color: #007bff;
}

/* Reset a základné štýly */
body {
    max-width: 100%;
    margin: 0;
    padding: 0;
    font: 16px/1.5 system-ui;
}

/* Hlavná navigácia */
.main-nav {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand a {
    color: #007bff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-tools a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-tools a:hover, .nav-tools a.active {
    background: #f0f0f0;
}

/* Dropdown menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #333;
    font: inherit;
}

.dropdown-toggle:after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.8em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 1rem;
    min-width: 300px;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dropdown-group {
    padding: 0.5rem;
}

.dropdown-group h3 {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.dropdown-group a, .dropdown-group span {
    display: block;
    padding: 0.3rem 0;
    color: #333;
    text-decoration: none;
}

.dropdown-group a:hover {
    color: #007bff;
}

.coming-soon {
    color: #999 !important;
    cursor: default;
}

/* Jazykový prepínač */
.nav-end {
    display: flex;
    align-items: center;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-switch a {
    color: #007bff;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border: 1px solid #007bff;
    border-radius: 4px;
}

.lang-switch a:hover, .lang-switch a.active {
    background: #007bff;
    color: white;
}

/* Hlavný obsah */
.content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Converter špecifické štýly */
.converter {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
}

.converter select,
.converter input {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.converter output {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Breadcrumbs */
.breadcrumb {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0 0 1rem;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responzívny dizajn */
@media (max-width: 768px) {
    .nav-tools {
        display: none;
    }
    
    .main-nav {
        justify-content: space-between;
    }
}

/* Footer Styles */
footer {
    background: #f8f9fa;
    padding: 3rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #333;
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #007bff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
=======
:root {
    --primary-color: #007bff;
}

/* Reset a základné štýly */
body {
    max-width: 100%;
    margin: 0;
    padding: 0;
    font: 16px/1.5 system-ui;
}

/* Hlavná navigácia */
.main-nav {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand a {
    color: #007bff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-tools a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-tools a:hover, .nav-tools a.active {
    background: #f0f0f0;
}

/* Dropdown menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #333;
    font: inherit;
}

.dropdown-toggle:after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.8em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 1rem;
    min-width: 300px;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dropdown-group {
    padding: 0.5rem;
}

.dropdown-group h3 {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.dropdown-group a, .dropdown-group span {
    display: block;
    padding: 0.3rem 0;
    color: #333;
    text-decoration: none;
}

.dropdown-group a:hover {
    color: #007bff;
}

.coming-soon {
    color: #999 !important;
    cursor: default;
}

/* Jazykový prepínač */
.nav-end {
    display: flex;
    align-items: center;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-switch a {
    color: #007bff;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border: 1px solid #007bff;
    border-radius: 4px;
}

.lang-switch a:hover, .lang-switch a.active {
    background: #007bff;
    color: white;
}

/* Hlavný obsah */
.content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Converter špecifické štýly */
.converter {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
}

.converter select,
.converter input {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.converter output {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Breadcrumbs */
.breadcrumb {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0 0 1rem;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responzívny dizajn */
@media (max-width: 768px) {
    .nav-tools {
        display: none;
    }
    
    .main-nav {
        justify-content: space-between;
    }
}

/* Footer Styles */
footer {
    background: #f8f9fa;
    padding: 3rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #333;
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #007bff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
>>>>>>> origin/main
}