@media screen and (max-width: 768px) {
    /* Header adjustments for tablets */
    header {
        flex-direction: column;
        padding: 10px 20px;
        justify-content: center;
    }

    header h1 {
        font-size: 18px;
        line-height: 1.2;
    }

    #navbar-menu {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #ddd;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        display: none;
    }

    #navbar-menu.show {
        display: block;
    }

    #navbar-menu a {
        color: black;
        padding: 10px 0;
        text-transform: uppercase;
    }

    #navbar-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .bt2 {
        width: 100px;
        font-size: 14px;
        margin-left: 35%;
    }

    /* Landing Section */
    #landing {
        height: 90vh;
    }

    #landing h1 {
        font-size: 30px;
    }

    #landing span {
        font-size: 14px;
        padding: 4px;
    }

    #landing p {
        font-size: 14px;
    }

    /* Photo Grid Adjustments */
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-gap: 10px;
    }

    /* About Section */
    #abt .abt {
        flex-direction: column;
        gap: 15px;
    }

    #abt .txt {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    #abt video {
        width: 100%;
        height: auto;
    }

    /* Footer adjustments */
    footer {
        font-size: 14px;
        flex-direction: column;
        gap: 10px;
    }

    footer span img {
        width: 50px;
        height: 50px;
    }
}
@media screen and (max-width: 480px) {
    /* Header adjustments for mobile */
h2{
    font-size: 20px;
}
    .slideshow{
        height: 90%;
    }
    header {
        padding: 10px;
    }

    header h1 {
        font-size: 16px;
        text-align: center;
    }

    #navbar-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    #navbar-menu a {
        font-size: 14px;
        padding: 8px 0;
    }

    .menu-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
    }

    /* Landing Section */
    #landing {
        height: 85vh;
    }

    #landing h1 {
        font-size: 40px;
    }

    #landing span {
        font-size: 12px;
    }

    #landing p {
        font-size: 12px;
    }

  
    /* Photo Grid Adjustments */
    .photo-grid {
        display: flex;
        align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    /* gap: 12px; */
    }

    .photo-grid .grid-item {
        width: 48%;
        height: 20%;
        border-radius: 10px;
    }
    .grid-item:nth-child(1){
        width: 100%;
    }
    .grid-item img {
        border-radius: 10px;  
    }
    .overlays p {
        font-size: 15px;
    }

    /* About Section */
    #abt{
        height: 70%;
    }
    #abt .abt {
        flex-direction: column;
        gap: 10px;
        
    }

    #abt .txt {
        width: 100%;
        height: 30%;
        padding: 10px;
        font-size: 12px;
    }

    #abt video {
        width: 100%;
        height: auto;
    }

    /* Shop Section */
    #shop{
        height: 70vh;
    }
    #shop .abt {
        flex-direction: column;
    }

    #shop .abt .stxt {
        width: 100%;
        font-size: 14px;
    }

    #shop .abt img {
        width: 100%;
        height: auto;
    }

    /* Footer adjustments */
    footer {
        font-size: 12px;
        text-align: center;
    }

    footer span img {
        width: 40px;
        height: 40px;
    }
}
