/* ============================= */
/* GLOBAL RESET */
/* ============================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================= */
/* BODY */
/* ============================= */

body {
    font-family: "Cinzel", Georgia, serif;
    background-color: #0b0b0b;
    background-image: radial-gradient(circle at top, #1a1a1a 0%, #0b0b0b 60%);
    color: #e6e6e6;
    line-height: 1.6;
}

/* ============================= */
/* LAYOUT */
/* ============================= */

main {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    min-height: 70vh;

    background-color: #141414;
    border: 1px solid #2a2a2a;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

/* ============================= */
/* NAVIGATION */
/* ============================= */

header {
    background: linear-gradient(to bottom, #111, #0d0d0d);
    border-bottom: 1px solid #2a2a2a;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.4rem 2rem;
}

nav a {
    color: #c9a227;
    text-decoration: none;
    font-weight: 700;
    margin-right: 2.5rem;
    letter-spacing: 1px;
    transition: all 0.25s ease;
}

nav a:hover {
    color: #f5d76e;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* ============================= */
/* HEADINGS */
/* ============================= */

h1 {
    font-size: 2.7rem;
    margin-bottom: 2rem;
    color: #d4af37;
    text-align: center;
    letter-spacing: 2px;
}

h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #c9a227;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 0.5rem;
}

h3 {
    margin-bottom: 0.6rem;
    color: #d4af37;
}

/* ============================= */
/* MOD GRID */
/* ============================= */

.mod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* ============================= */
/* MOD CARD */
/* ============================= */

.mod-card {
    background: linear-gradient(145deg, #161616, #1e1e1e);
    padding: 1.6rem;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    position: relative;
}

.mod-card:hover {
    transform: translateY(-8px);
    border-color: #c9a227;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.mod-card a {
    text-decoration: none;
    color: inherit;
}

.mod-card h3 {
    color: #d4af37;
    margin-bottom: 0.6rem;
}

.mod-card p {
    color: #bbb;
    font-size: 0.95rem;
}

/* ============================= */
/* IMAGES */
/* ============================= */

.mod-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #2a2a2a;
}

/* ============================= */
/* BUTTON STYLE */
/* ============================= */

.button,
.big-button {
    display: inline-block;
    background: linear-gradient(145deg, #c9a227, #8b6f2f);
    color: #111;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.25s ease;
}

.button:hover,
.big-button:hover {
    background: linear-gradient(145deg, #f5d76e, #c9a227);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* ============================= */
/* LINKS */
/* ============================= */

a {
    color: #d4af37;
}

a:hover {
    color: #f5d76e;
}

/* ============================= */
/* FOOTER */
/* ============================= */

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #2a2a2a;
    margin-top: 4rem;
    color: #777;
    font-size: 0.9rem;
    background-color: #111;
}

/* ============================= */
/* SCROLLBAR */
/* ============================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b0b0b;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
}

::-webkit-scrollbar-thumb:hover {
    background: #c9a227;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    nav a {
        margin-right: 1.2rem;
    }

    main {
        padding: 2rem 1.2rem;
    }
}

/* ============================= */
/* HUSSITE GALLERY */
/* ============================= */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery img {
    width: 100%;
    border: 3px solid #8b6f2f;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

/* ============================= */
/* LIGHTBOX */
/* ============================= */

#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 5vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(4px);
    cursor: zoom-out;
}

#lightbox img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border: 4px solid #8b6f2f;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
    animation: zoomIn 0.2s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

