body {
    background-color: rgb(44, 44, 44);
    color: white;
    margin: 0;
}

.hamburger-menu {
    position: relative;
    margin-left: auto;
}

.hamburger-button {
    background: none;
    border: none;
    color: #f7941c;
    font-size: 32px;
    cursor: pointer;
    padding: 0 10px;
    margin-top: -8px;
    transition: color 0.3s ease;
}

.hamburger-button:hover {
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 40px;
    background-color: #2d2d2d;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 1px solid #f7941c;
    border-radius: 5px;
}

.dropdown-content a {
    color: #f7941c;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(247, 148, 28, 0.1);
    color: white;
}

.hamburger-menu.active .dropdown-content {
    display: block;
}

.all-text {
    display: flex;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 100%;
}

.text-wrapper {
    width: 49%;
    margin-left: 1vw;
}

.text-wrapper * {
    display: flex;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 50%;
}

#mission-statement {
    width: 50%;
}

.images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 730px) {
    .all-text {
        display: block;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        width: 94vw;
        margin: 3vw
    }

    .text-wrapper {
        display: block;
        width: 94vw;
        margin: 0vw;
    }

    .text-wrapper * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        width: 94vw;
    }

    #mission-statement {
        width: 94vw;
        margin: 0vw;
    }
}

.about-content {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.top-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.mission-statement {
    background: rgba(247, 148, 28, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f7941c;
}

.mission-statement h2 {
    color: #f7941c;
    margin-bottom: 20px;
    font-size: 24px;
}

.mission-statement p {
    color: white;
    line-height: 1.6;
    font-size: 14px;
}

.image-gallery {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    grid-column: 1 / 2;
    flex-wrap: wrap;
}

.image-gallery img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.announcements {
    background: rgba(247, 148, 28, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f7941c;
}

.announcements h2 {
    color: #f7941c;
    margin-bottom: 20px;
    font-size: 24px;
}

.announcements-scroll {
    height: 400px;
    overflow-y: auto;
    padding-right: 15px;
    color: white;
    line-height: 1.6;
    font-size: 14px;
}

.announcements-scroll::-webkit-scrollbar {
    width: 8px;
}

.announcements-scroll::-webkit-scrollbar-track {
    background: rgba(247, 148, 28, 0.1);
    border-radius: 4px;
}

.announcements-scroll::-webkit-scrollbar-thumb {
    background: #f7941c;
    border-radius: 4px;
}

.announcement {
    padding: 15px;
    border-bottom: 1px solid rgba(247, 148, 28, 0.3);
    margin-bottom: 15px;
    font-size: 14px;
}

.announcement:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.competition-info {
    background: rgba(247, 148, 28, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f7941c;
}

.competition-info h2 {
    color: #f7941c;
    margin-bottom: 20px;
    font-size: 24px;
}

.competition-info h3 {
    color: #f7941c;
    margin: 20px 0 15px;
    font-size: 18px;
}

.competition-info p {
    color: white;
    margin: 15px 0;
    font-size: 14px;
}

.comp-link {
    color: #f7941c;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.comp-link:hover {
    color: white;
}

.competition-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.comp-button {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Lucida Console", Monaco, monospace;
}

.comp-button:hover {
    background: #f7941c7e;
    color: #ffffff;
}

.contact-section {
    background: rgba(247, 148, 28, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f7941c;
}

.contact-section h2 {
    color: #f7941c;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-section p {
    color: white;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-link {
    color: #f7941c;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: white;
}

.disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(247, 148, 28, 0.3);
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-style: italic;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .top-section {
        grid-template-columns: 1fr;
    }

    .image-gallery {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {

    .top-section,
    .bottom-section {
        grid-template-columns: 1fr;
    }

    .announcements {
        grid-column: span 1;
    }
}

.right-header {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: row;
}