@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

body {
    background-color: #1a1a1a;
    color: #c4b49b;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    /* background-image: url('https://i.imgur.com/vlvt4v5.png'); */
    /* background-repeat: no-repeat; */
    /* background-position: top center; */
    /* background-attachment: fixed; */
    /* background-size: contain; */
}

.container {
    max-width: 960px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(10, 10, 10, 0.85);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: #a3700f;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header-img {
    display: block;
    margin: 10px auto 10px auto;
    max-width: 100%;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(196, 180, 155, 0), rgba(196, 180, 155, 0.75), rgba(196, 180, 155, 0));
    margin: 15px 0;
}

a {
    color: #dcb14a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

b {
    color: #a3700f;
    font-weight: bold;
}

u {
    text-decoration: none;
    border-bottom: 1px solid #c4b49b;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}

.icon {
    color: #c4b49b;
    margin-right: 10px;
}

.past-competitions-list a {
    margin-right: 15px;
}


/* Spoilers / Details */
details {
    border: 1px solid #444;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    background-color: rgba(0,0,0,0.2);
}

summary {
    cursor: pointer;
    font-weight: bold;
    color: #dcb14a;
    outline: none;
}

summary:hover {
    color: #fff;
}

/* Prize Pictures Gallery */
.prize-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.prize-gallery a {
    display: block;
    border: 2px solid #444;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.prize-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.prize-gallery a:hover {
    transform: scale(1.05);
    border-color: #dcb14a;
}

.jury-member {
    margin-bottom: 30px;
    padding: 15px;
    border-left: 3px solid #a3700f;
    background-color: rgba(0,0,0,0.1);
}

.jury-member b {
    font-size: 1.2em;
}

.jury-member i {
    color: #fff;
}

.jury-member span {
    display: block;
    margin-top: 5px;
}

.final-message {
    text-align: center;
    font-size: 1.5em;
    font-family: 'Cinzel', serif;
    margin-top: 40px;
}

header img {
    display: block !important;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
    height: auto;
}