body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-image: url('your-background-image.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.title {
    text-align: center;
    color: #000; 
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 50px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.title:hover {
    color: #111;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}


.dropdown {
    position: fixed;
    top: 20px;
    right: 20px;
    display: inline-block;
    z-index: 1000;
}

.dropbtn {
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s; 
    background: none; 
}

.dropbtn:hover {
    transform: scale(1.05); 
}

.calendar-icon {
    width: 50px; 
    height: 50px;
    transition: width 0.3s, height 0.3s;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(103, 102, 102, 0.95); 
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
    border-radius: 8px; 
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-content.show {
    display: block;
    opacity: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: rgba(200, 200, 200, 0.8); 
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.gallery img {
    max-width: calc(33.33% - 20px);
    height: auto;
    margin: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.2);
}


@media screen and (min-width: 1024px) {
    .calendar-icon {
        width: 50px; 
        height: 50px;
    }
}


@media screen and (max-width: 768px) {
    .calendar-icon {
        width: 45px; 
        height: 45px;
    }

    .dropdown-content {
        min-width: 140px; 
    }

    .gallery img {
        max-width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .calendar-icon {
        width: 40px; 
        height: 40px;
        background-color: rgb(196, 196, 196);
        border-radius:15px ;
        padding: 5px 6px;
    }

    .dropdown-content {
        min-width: 130px; 
        border: 2px solid #ddd; 
    }

    .dropdown-content a {
        font-size: 16px; 
        padding: 10px 12px; 
    }

    .gallery img {
        max-width: calc(100% - 20px);
    }
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.home-icon {
    position: fixed;
    left: 20px;
    top: 20px; 
    background-color: rgba(44, 43, 32, 0.7);
    color: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 24px;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.home-icon:hover {
    transform: scale(1.1);
    background-color: rgba(59, 32, 32, 0.9);
}

.home-icon i {
    display: inline-block;
    line-height: 1;
}

