/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


 .gc-homepage {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}
.gc-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 20px;
    width: calc(33.333% - 20px);
}
.gc-image {
    display: flex;
    height: 180px;
    margin-bottom: 20px;
}
.gc-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: flex;
    align-self: center;
}

.gc-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 100%;
}

.gc-title {
    font-size: 2rem;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

.gc-content {
    flex-grow: 1;
    font-size: 1.4rem;
}

.gc-content p {
    margin-bottom: 10px;
}

/* Media queries for responsiveness */
@media (max-width: 1200px) {
    .gc-row {
        flex: 1 1 calc(50% - 20px); /* 2 columns with gap */
    }
}

@media (max-width: 768px) {
    .gc-row {
        flex: 1 1 100%; /* 1 column with gap */
    }
}




@media (max-width: 768px) {
    .site-main-menu {
        display: block;
        position: absolute;
        top: 0;
        left: -250px; /* Start hidden to the left */
        width: 250px;
        height: 100%;
        background-color: #333;
        transition: left 0.3s ease;
        z-index: 9999; /* Make sure it's above other content */
        padding-top: 60px; /* Adjust according to header height */
    }
    
    /* Style for the burger menu button */
    .mobile-menu-button {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 10000; /* Make sure the button is above the menu */
        position: relative;
        flex-direction: column;
    }

    /* Burger lines */
    .mobile-menu-button span {
        background-color: #ec002f;
        display: block;
        height: 4px !important;
        width: 30px;
        margin: 2px 0;
        transition: 0.3s ease;
    }
    
    /* Style the burger button when menu is active */
    .mobile-menu-active .mobile-menu-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-active .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-active .mobile-menu-button span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Slide in the menu when active */
    .mobile-menu-active .site-main-menu {
        left: 0;
        margin: 0;
        height: 100% !important;
        position: fixed;
        padding-top: 10%;
    }
    
    /* Prevent the body from scrolling when the menu is open */
    .mobile-menu-active body {
        overflow: hidden;
    }


    ul#menu-main-menu {
        flex-direction: column;
    }

     ul#menu-main-menu li {
        margin: 10px 40px !important;
    }

    ul#menu-main-menu li a {
        color: white;
    }

    .site-main-menu {
        margin-top: 0!important;
    }
}