body{
    margin: 0;
    background-color: #bffcf9;
}
a{
    color: inherit;
    text-decoration: none;
}
.info{
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
#navbar{
    display: flex;
    align-items: center;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    background-color: hsl(0, 0%, 25%);
}
#divider{
    background-color: black;
    width: 10vw;
    height: 5px;
    margin: auto;
    border: none;
    border-radius: 5px;
}
#title{
    margin: 5px;
    margin-left: 15px;
    width: 200px;
    height: 90px;
    cursor: pointer;
    transition: width 0.5s ease;
}
#wrapper{
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
    color: white;
    font-size: 1.2rem;
}
#homeBtn{
    margin: 15px; 
    cursor: pointer;
    transition: font-size 0.5s ease;
}
#homeBtn:hover{
    font-size: 1.4rem;
}
#aboutBtn{
    margin: 15px; 
    cursor: pointer;
    transition: font-size 0.5s ease;
}
#aboutBtn:hover{
    font-size: 1.4rem;
}
#whatDay{
    font-size: 8rem;
    margin-top: 18vh;
    font-weight: bold;
}
#whatPeriod{
    font-size: 2rem;
    margin: 15px;
}
#nextPeriod{
    font-size: 1.5rem;
    margin: 15px;
}
#contactBtn{
    transition: font-size 0.5s ease;
}
#contactBtn:hover{
    font-size: 1.4rem;
}
/* Hamburger menu - hidden by default on desktop */
#hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 20px;
    margin-left: auto;
}

#hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hamburger animation when open */
#hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 6px);
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
}

#hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}
@media screen and (max-width:768px) {
    #title{
        margin: 3px;
        margin-left: 10px;
        width: 200px;
        max-width: 40vw;
        height: auto;
        cursor: pointer;
    }
    #whatDay{
        font-size: 8rem;
        margin-top: 15vh;
        font-weight: bold;
    }
     /* Show hamburger menu on mobile */
    #hamburger {
        display: flex;
    }
    
    /* Hide the navigation by default on mobile */
    #wrapper {
        position: absolute;
        top: 70px; /* Adjust based on your navbar height */
        right: 0;
        background-color: hsl(0, 0%, 25%);
        flex-direction: column;
        width: 200px;
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
        border-radius: 5px 0 0 5px;
        display: none; /* Hidden by default */
        z-index: 1000;
    }
    
    /* Show wrapper when active */
    #wrapper.active {
        display: flex;
    }
    
    /* Style menu items for mobile */
    #homeBtn, #aboutBtn, #contactBtn {
        width: 100%;
        padding: 15px 20px;
        margin: 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    #homeBtn:hover, #aboutBtn:hover, #contactBtn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        font-size: 1.2rem;
    }
}