/* Page styling */

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f6f4;
    margin: 0;
    color: #333;
}


/* Header */

header {
    background-color: #2f2f2f;
    color: white;
    padding: 20px;
    text-align: center;
}


/* Navigation */

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

nav a:hover {
    background-color: #c29585;
    color: white;
    border-radius: 4px;
}

nav a.active {
    background-color: #c29585;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
}

/* Main content */

main {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}


/* Headings */

h2 {
    color: #000;
    border-bottom: 2px solid #c29585;
    padding-bottom: 5px;
    font-weight: 700;
    margin-bottom: 12px;
}


.category-title {
    display: inline-block;
    border-bottom: 2px solid #d3d3d3;
    padding-bottom: 4px;
    margin-bottom: 10px;
}


/* Lists for rules */

ul {
    line-height: 1.8;
}


/* Footer */

footer {
    background-color: #2f2f2f;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

footer a {
    color: white;
}

.vote-gallery {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.vote-card {
    flex: 1;
    text-align: center;
}

.vote-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #e6e6e6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.vote-card:hover {
    transform: translateY(-4px);
    transition: 0.2s ease;
}

.gallery-month {
    margin-top: 40px;
}

/* Gallery image size */

.gallery .vote-card img {
    height: 300px;
}

/* Gallery layout */

.gallery .vote-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.gallery .vote-card {
    flex: 0 0 48%;
}

/* Larger gallery images */

.gallery .vote-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Gallery month sections */

.gallery-month {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #e5e5e5;
}

.gallery-month h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #333;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
}

/* Category Page Images */

.category-image {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 6px;
    margin: 10px 0 15px 0;
}