/* General Reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #111;
    padding: 1rem 0;
    position: relative;
}

.logo {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 1.5rem;
    color: #e63946;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    z-index: 10;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    padding-right: 3cm;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;   
    font-family: 'Verdana', sans-serif;
    position: relative;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent; /* Výchozí průhledný rámeček */
    border-radius: 5px; /* Zaoblené rohy rámečku */
}

nav a:hover {
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    background-color: #d42a2a;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #000;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.hero p {
    font-size: 1.2rem;
    font-family: 'Arial', sans-serif;
}

.merch {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.item:hover {
    transform: translateY(-5px);
}

.item img {
    max-width: 100%;
    border-radius: 8px 8px 0 0;
}

.item h2 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.item p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
}

footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
}
