.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

h1,
h2,
h3 {
    font-family: 'Quicksand', sans-serif;
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0px;
    background-color: #f7fdf9;
    transition: 0.3s;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid #ccc;
    color: #1F3C88;
    background-color: white;
    position: relative;
    box-sizing: border-box;
}

.logo {
    height: 80px;
    margin-left: 15px;
}

.menu_list {
    display: flex;
    gap: 60px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu_list a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

#home:hover,
#activities:hover,
#about_us:hover,
#support_accessibility:hover {
    color: #5FA8D3;
}

.actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

body.menu_open {
    background: none;
}

.moto {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #3A7CA5 0%, #3F88B3 100%);
    border-color: #1F3C88;
    border-radius: 3px;
    padding: 15px 0;
    margin: 0;
    position: relative;
    white-space: nowrap;
}

.our_moto {
    display: inline-block;
    width: max-content;
    animation: slide 30s linear infinite;
}

.moto_content {
    display: inline-flex;
    gap: 100px;
    padding-right: 100px;
}

.the_moto {
    color: #f1f5f9;
    font-size: 20px;
    font-weight: bold;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.last_menu {
    width: 100%;
    background-color: #F4F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    box-sizing: border-box;
}

.the_last_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.last_menu h3 {
    color: #1F3C88;
    margin: 0 0 15px 0;
}

.last_menu_list {
    display: flex;
    align-items: center;
    list-style: none;
    flex-direction: column;
    padding: 0;
    margin: 0 0 30px 0;
    gap: 15px;
    width: 100%;
}

.last_menu_list a {
    text-decoration: none;
    color: #1F3C88;
    margin: 0;
    font-weight: 400;
}

.last_menu_list a:hover {
    color: #5FA8D3;
}

.our_footer {
    text-align: center;
    margin: 0;
    color: #1F3C88;
    width: 100%;
}


@media (min-width: 319px) and (max-width: 480px) {
    .last_menu {
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        flex-direction: column;
        gap: 15px;
    }

    .the_last_list {
        width: 100%;
    }

    .end_title {
        text-align: center;
    }

    .last_menu {
        width: 100%;
        margin: 0;
    }

    .last_menu_list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


@media (min-width: 481px) and (max-width: 1200px) {
    .moto {
        width: 98%;
        margin: 5px;
    }

    .menu_list {
        width: 100%;
    }

    .last_menu {
        width: 93%;
        margin: 20px;
    }
}

@media (max-width: 700px) {

    #home,
    #about_us,
    #activities,
    #support_accessibility {
        border: none;
        background-color: transparent;
        padding: 0;
    }

    .hamburger {
        display: block;
    }

    .logo {
        margin-left: 0;
    }

    .menu_list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        display: none;
        z-index: 1000;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .menu_list.active {
        display: flex;
    }

    .menu_list li {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }

    .menu_list a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        text-align: left;
        color: #1e3a8a;
        font-weight: 600;
        box-sizing: border-box;
    }

    .menu_list a:hover {
        background-color: #f1f5f9;
    }
}


.selection-area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.filter-label {
    font-size: 1.5rem;
    color: #4f9c6b;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
}

.modern-select {
    width: 100%;
    padding: 15px 25px;
    font-size: 1.3rem;
    border-radius: 12px;
    border: 2px solid #1e3a8a;
    background-color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modern-select:hover {
    border-color: #3b82f6;
    transform: scale(1.02);/
}

#daySelect {
    padding: 10px;
    border-radius: 5px;
    border: 3px solid #4f9c6b;
    background-color: white;
    font-family: inherit;
    cursor: pointer;
}

.activities-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 50px;
    justify-content: center;
    max-width: 1600px;
    margin: 60px auto;
}


.activity-card {
    background-color: #f6fbf8;
    border-radius: 16px;
    border: 1px solid #e2efe7;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 300px; 
    width: 100%;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    max-width: 380px;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(30, 58, 138, 0.3);
    border-color: #1e3a8a;
}

.image-placeholder {
    width: 100%;
    height: 280px;
    background-color: beige;
    display: block;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-info {
    padding: 20px;
    text-align: center;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-sizing: border-box;
}

.card-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #184f31;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}

.card-info p {
    margin: 0;
    font-size: 1rem;
    color: black;
}

.card-link {
    text-decoration: none !important;
    display: block;
    color: inherit;
}

.card-link h3 {
    text-decoration: none !important;
    font-size: 1.2rem;
    color: #184f31 !important;
}

.card-link p {
    text-decoration: none !important;
    color: black !important;
}


@media (min-width: 319px) and (max-width: 480px) {
    .filter-label {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .modern-select {
        font-size: 0.9rem;
        padding: 8px 12px;
        width: 100%;
        max-width: 280px; 
    }

   .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 8px;
    }

    .activity-card {
        height: 180px; 
        max-width: 100%;
    }

    .image-placeholder {
        height: 60%;
    }

    .card-info {
        height: 40%;
        padding: 5px;
    }

    .card-info h3 {
        font-size: 0.85rem;
        min-height: auto;
    }

    .card-info p {
        display: none; 
    }
}


@media (min-width: 481px) and (max-width: 1200px) {
   
    .filter-label {
        font-size: 1.2rem;
    }

    .modern-select {
        font-size: 1.1rem;
        padding: 10px 20px;
        max-width: 400px;
    }

.activities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .activity-card {
        height: 320px;
        max-width: 320px;
    }

    .card-info {
        height: 120px;
    }
}