/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
/* Set body font and background color */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}
/* Style header and navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 20px;
}
nav ul {
    display: flex;
    list-style: none;
}
nav li {
    margin-right: 20px;
}
nav a {
    color: #fff;
    text-decoration: none;
}
/* Style main sections */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}
section {
    margin-bottom: 40px;
}
h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
ul {
    list-style: none;
}
li h3 {
    margin-bottom: 10px;
}
li p {
    margin-bottom: 20px;
}
/* Style form */
form label {
    display: block;
    margin-bottom: 10px;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}
form button {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}
form button:hover {
    background-color: #666;
}
/* Set gallery styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 -10px;
}
.gallery img {
    max-width: calc(33.33% - 20px);
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.gallery-image:hover {
    transform: scale(1.5);
    transition: transform 0.2s ease-in-out;
}  
.gallery-image {
    max-width: calc(33.33% - 20px);
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    z-index: 1001;
}
/* Add responsive styles */
@media screen and (max-width: 768px) {
    .gallery img {
        max-width: calc(50% - 20px);
   }
}
/* Set footer styles */
footer {
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}
footer p {
    margin: 0;
}
/* Add responsive styles */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
   }
    nav ul {
        flex-direction: column;
        align-items: center;
   }
    nav li {
        margin: 10px 0;
   }
    main {
        padding: 20px;
   }
    form button {
        margin-top: 20px;
   }
    .gallery img {
        max-width: calc(50% - 20px);
   }
}
/* Discord widget styles */
.discord-widget {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
/* Style nav menu */
.nav-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}
