* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #E3DCDD;
    color: #22040C;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 1.5rem 2rem;
}

/* Desktop nav – your original big beautiful version */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(58, 9, 23, 0.9);
    padding: 1.25rem 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 900px;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: #E3DCDD;
    text-decoration: none;
    padding: 0.8rem 1.25rem;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background-color: #9E7C87;
    color: #22040C;
    transform: translateY(-2px);
}

.nav-menu a.active {
    background-color: #5A1225;
    color: #E3DCDD;
    font-weight: 600;
}

/* ONLY MOBILE – tiny bar + no overlap */
@media (max-width: 720px) {
    nav {
        padding: 0.35rem 0;
        background: rgba(58, 9, 23, 0.94);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .nav-menu {
        gap: 4px 10px;
        padding: 0 6px;
    }
    .nav-menu li {
        margin: 0;
    }
    .nav-menu a {
        font-size: 0.78rem;
        padding: 0.4rem 0.75rem;
        border-radius: 6px;
    }
    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .nav-menu a {
        font-size: 0.73rem;
        padding: 0.35rem 0.65rem;
    }
    body {
        padding-top: 65px;
    }
}

main {
    margin-top: 2rem;
    text-align: center;
}

h1 { font-size: 2rem; color: #3B0917; }
p { font-size: 1.05rem; margin-bottom: 1rem; color: #3B0917; }
.image-row { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 1.5rem; }
.image-container { flex: 1 1 45%; display: flex; justify-content: center; }
.bartfart-img { width: 100%; max-width: 400px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; border: 3px solid #000; box-shadow: 0 6px 20px rgba(0,0,0,0.35); display: block; transition: none; }
.button { display: inline-block; margin-top: 1.5rem; padding: 0.9rem 1.8rem; background: #5A1225; color: #E3DCDD; text-decoration: none; font-weight: 600; border-radius: 8px; font-size: 1rem; transition: all 0.25s ease; box-shadow: 0 3px 10px rgba(58, 9, 23, 0.3); }
.button:hover, .button:focus { background: #3B0917; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(58, 9, 23, 0.4); }
footer { margin-top: 4rem; text-align: center; font-size: 0.95rem; color: #3B0917; border-top: 1px solid #9E7C87; padding-top: 1.2rem; }
.submit-form { max-width: 520px; margin: 2.5rem auto; display: flex; flex-direction: column; text-align: left; background: #F0EBEC; padding: 2rem; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.submit-form label { margin-top: 1.2rem; font-weight: 600; color: #3B0917; }
.submit-form input, .submit-form select, .submit-form textarea { width: 100%; padding: 0.8rem; margin-top: 0.5rem; border: 1px solid #9E7C87; border-radius: 6px; font-size: 1rem; background: #fff; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.submit-form input:focus, .submit-form select:focus, .submit-form textarea:focus { border-color: #5A1225; outline: none; box-shadow: 0 0 0 3px rgba(90, 18, 37, 0.25); }
.submit-form button { margin-top: 1.8rem; }
.confirm { text-align: center; margin-top: 3rem; }
@media (max-width: 600px) { .image-row { flex-direction: column; } .image-container { width: 85%; } .bartfart-img { width: 100%; max-width: none; } }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; padding: 1rem 0; margin-top: 1.5rem; }
.gallery-grid img { width: 100%; height: auto; border-radius: 12px; border: 3px solid #000; object-fit: cover; box-shadow: 0 6px 20px rgba(0,0,0,0.35); transition: transform 0.2s ease; }
.load-btn { display: block; margin: 2rem auto; padding: 0.9rem 1.8rem; background: #5A1225; color: #E3DCDD; text-decoration: none; font-weight: 600; border-radius: 8px; font-size: 1rem; cursor: pointer; transition: all 0.25s ease; box-shadow: 0 3px 10px rgba(58, 9, 23, 0.3); border: none; }
.load-btn:hover, .load-btn:focus { background: #3B0917; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(58, 9, 23, 0.4); }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); } }
.rage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 1.5rem; }
.rage-item video { width: 100%; border-radius: 12px; border: 3px solid #000; box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
.hidden-rage { display: none; }
@media (max-width: 600px) { .rage-grid { grid-template-columns: 1fr; } }
.fact-list { text-align: left; max-width: 700px; margin: 1.5rem auto; font-size: 1.05rem; line-height: 1.6; }
.fact-list li { margin-bottom: 0.6rem; }
.fact-section { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 2rem 0; align-items: flex-start; }
.fact-section .image-container { flex: 1 1 300px; display: flex; justify-content: center; }
.fact-section .fact-content { flex: 2 1 400px; text-align: left; }
.fact-section h2 { margin-bottom: 0.8rem; }
.fact-section ul { list-style: disc inside; line-height: 1.6; }
@media (max-width: 800px) { .fact-section { flex-direction: column; align-items: center; } .fact-section .fact-content { text-align: center; } }
.facts-table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 1rem; }
.facts-table th, .facts-table td { border: 2px solid #9E7C87; padding: 0.7rem 1rem; text-align: left; }
.facts-table th { background-color: #5A1225; color: #E3DCDD; }
.facts-table tr:nth-child(even) { background-color: #F0EBEC; }
@media (max-width: 600px) { .facts-table th, .facts-table td { padding: 0.5rem; font-size: 0.9rem; } }