/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    background-color: #1c1c1e;
    color: #f5f5f5;
}

nav {
    width: 200px;
    background-color: #2e2e30;
    height: 100vh;
    padding-top: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

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

nav ul li {
    margin: 20px 0;
    text-align: center;
}

nav ul li a {
    color: #ffd966;
    text-decoration: none;
    font-weight: bold;
    display: block;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    padding: 10px 0;
    font-size: large;
}

nav ul li a:hover {
    background-color: #ff4c4c;
    color: #fff;
    box-shadow: 0 0 10px #ff914d;
}

main {
    flex-grow: 1;
    padding: 20px;
    background-color: #1c1c1e;
}

.header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff4c4c, #ff914d, #ffd966);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #ff914d;
}

.header-text {
    text-align: center;
    flex-grow: 1;
}

.header-text h1 {
    margin-bottom: 5px;
    font-size: 3em;
    color: #fff;
    text-shadow: 1px 1px #000;
}

.header-text p {
    font-size: 16px;
    font-style: italic;
    color: #fef9c3;
    text-shadow: 1px 1px #000;
    font-size: 2em;
}

.image-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    gap: 10px;
    /* space between images */
    max-width: 1000px;
    margin: auto;
    padding: 10px;
}

.image-grid-four img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* optional for rounded corners */
}

.image-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 10px;
    /* space between images */
    max-width: 1000px;
    margin: auto;
    padding: 10px;
}

.image-grid-three img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* optional for rounded corners */
}

.image-grid-one {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* 1 column */
    gap: 10px;
    /* space between images */
    max-width: 1000px;
    margin: auto;
    padding: 10px;
}

.image-grid-one img {
    width: 60%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* optional for rounded corners */
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: auto;
    padding: 10px;
}

.image-grid figure {
    margin: 0;
    text-align: center;
}

.image-grid h3 {
    font-weight: bold;
    color: #ff914d;

}

.image-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.image-grid figcaption {
    margin-top: 5px;
    font-size: 0.95rem;
    color: #555;
}

.convention h3 {
    text-align: "center";
    font-weight: bold;
    color: #ff914d;
}

.convention iframe {
    display: block;
    margin: auto;
    position: relative;
}

.convention a {
    color: #ff914d;
}

.contact a {
    color: #ff914d;
}

.contact h3 {
    text-align: "center";
    font-weight: bold;
    color: #ff914d;
}

h2 {
    color: #ff4c4c;
    margin-bottom: 10px;
    text-align: center;
    font-size: 2em;
}

h3 {
    color: #ff914d;
    font-size: 2em;
}

p,
label,
input,
textarea {
    color: #ccc;
}

form input,
form textarea {
    background-color: #2e2e30;
    border: 1px solid #ff914d;
    padding: 5px;
    width: 100%;
    color: #f5f5f5;
}

form input[type="submit"] {
    background: linear-gradient(90deg, #ff4c4c, #ff914d);
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    padding: 10px;
    font-weight: bold;
    box-shadow: 0 0 8px #ff914d;
    transition: background 0.3s, box-shadow 0.3s;
}

form input[type="submit"]:hover {
    background: linear-gradient(90deg, #ff914d, #ffd966);
    box-shadow: 0 0 12px #ffd966;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}