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

.back_img {
 float: left;
 width: 100%;
 opacity: 0.8;
}

.img_30 {
  width: 30%;
}

.img_70 {
  width: 70%;
}

.img_50 {
  width: 50%
}

.content {
    font-family: Arial, sans-serif;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 80%;
    background: rgba(0, 0, 0, 0.3);
    padding: 2em;

    img {
        max-width: 100%;
    }

    @media (width <= 1000px) {
        font-size: 0.8em;
    }
}

.warhammer {
    font-weight: bold;
    color: beige;
}

.save_the_date {
    margin-top: 1em;
}

.date {
   font-size: 3em;
   margin: 0.1em 0em 0.2em 0em;
}

.qualifier {
    font-size: 1.2em;
    color: lightgrey;
}

.qualifier_small {
    margin-top: 0.2em;
    font-size: 0.6em;
}

.location {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.venue {
    font-size: 0.7em;
}

a {
    font-weight: bold;
    color: lightgrey;
}

.gold {
    color: #FFD700;
    font-weight: bold;
}

.link-space {
    display: inline-block;
    width: 60px;
}

h1 {
    margin-bottom: 0.5em;
}

.sponsors {
    margin: 1.5em 0em 0.5em 0em;
    font-weight: bold;
}

.sponsor {
    height: 150px;
}

.note {
    font-size: 0.6em;
    font-style: italic;
    margin-bottom: 1em;
}

@media (max-width: 400px) {

    .link-space {
        width: 15px;
    }

    .sponsor {
        height: 80px;
    }
}

.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 20, 20, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 1000;

    & img {
        max-width: 90vw;
        max-height: 80vh;
        border: 4px solid #c9a13b;
        border-radius: 10px;
        box-shadow: 0 0 32px #000c;
    }
}

.active {
    display: flex;
}

.close-btn {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2em;
    color: #e0c97a;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    text-shadow: 2px 2px 8px #000;
}

.thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #c9a13b;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 0 8px #000a;

    &:hover {
        transform: scale(1.08);
        border-color: #e0c97a;
    }

    @media (width <= 500px) {
        width: 60px;
        height: 40px;
    }
}

section {
    background: rgba(24,24,24,0.95);
    margin: 2em auto;
    padding: 2em;
    border-radius: 12px;
    max-width: 900px;
    box-shadow: 0 0 24px #000a;
}
.year-title {
    font-size: 1.7em;
    margin-bottom: 0.5em;
    color: #c9a13b;
    text-shadow: 1px 1px 6px #000;
}

.gallery {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.previous {
  background: #181818 url('background/back_1.jpg') center/cover no-repeat fixed;
  color: #e0c97a;
  font-family: Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}

.previous_content {
    margin: 1em auto;
    width: 80%;
    background: rgba(0, 0, 0, 0.3);
    padding: 2em;

    h1, h3 {
        text-align: center;
    }

    p {
        margin: 1em 0;
    }

    @media (width <= 1000px) {
        font-size: 0.8em;
    }
}

.navigation {
    max-width: 900px;
    margin: 1em auto;
}

.logo {
    text-align: center;

    img {
        max-width: 100%;
    }
}

h3 {
    font-style: italic;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    background-color: #c9a13b;
    color: #e0c97a;
    border: 2px solid #c9a13b;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 2.5em;
    cursor: pointer;
    z-index: 1001;

    @media (width <= 500px) {
        position: relative;
        margin-top: 0.1em;
        font-size: 1em;
        width: 28px;
        height: 28px;
    }

    &.left {
        left: 32px;

        @media (width <= 500px) {
            float: left;
            left: 0;
        }
    }

    &.right {
        right: 32px;

        @media (width <= 500px) {
            float: right;
            right: 0;
        }
    }

    &:hover {
        color: #181818;
        opacity: 0.6;
    }
}

