/*Overall*/
html,body{
    margin: 0;
    padding: 0;
    text-align: center;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,"Helvetica Neue",Arial,"Apple Color Emoji","Segoe UI Emoji";
}

/* Header*/
.Header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: fit-content;
    gap: 0.6vmin;
    padding: 0.6vmin;
}

#Logo{
    flex: 1.3;
    font-size: 2vmin;
    text-align: left;
}

#Address{
    flex: 1;
    font-size: 2vmin;
    text-align: right;
}

#Mobile{
    flex: 1;
    font-size: 2.5vmin;
    text-align: right;
}

#Email{
    flex: 1;
    font-size: 2.5vmin;
    text-align: right;
}

/* Navbar*/
.navbar{
    position:sticky;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(255, 155, 24);
    gap: 1em;
    padding: 1em;
    line-height: 0%;
    align-items: center;
    justify-content: space-around;
}

.navbar a{
    color: white;
    font-size: 2vmin;
    text-decoration: none;
    font-weight: bolder;
}

.navbar a:hover{
    background-color: rgba(236, 204, 161, 0.8);
    padding: 0.5em;
}

.navbar a:focus {
    color: black;
}

.navbar a.active {
    text-decoration: underline ;
}

/* Content */
.content-about{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
    "img c"
    "img c";
}



.content{
    grid-area: c;
    text-align: left;
    width: 75vw;
    padding-bottom: 30px;
    padding-right: 30px;
}

/* Image Handling */
img{
    display: flex;
    flex-direction: column;
    height: 100%;
    float: left;
    width: 100%;
}

.fig19{
    transform: scaleX(-1)
}

.content h2{
    color:grey;
}

.content h3{
    line-height: 0%;
}

.content p{
    color: gray;
    line-height: 1em;
}

li{
    color: gray;
    display: block;
}

.note{
    color: gray;
}

/* Footer*/
.Footer{
    display: flex;
    bottom: 0;
    position: fixed;
    align-items: center;
    background-color: rgb(207, 207, 207);
    width: 100%;
    height: 30px;
}

.Footer #copyright{
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.Footer li{
    display:inline-block ;
    flex: 1;
    color: blue;
    padding-right: 20px;
}

/* Media Query*/
@media (max-width:768px) {
    .content-about{
        grid-template-areas: 
        "img img"
        "c c";
        text-align: left;
        padding: 1em;
    }
    .navbar{
        height: max-content;
    }

    #mobile{
        font-size: 1vmin;
    }
    .content{
        text-align: center;
        width: 89vw;
    }
    p{
        text-align: justify;
    }
    h3{
        text-align: left;
    }
    li{
        text-align: left;
    }
    #Email{
        font-size: 2.2vmin;
    }
    .navbar a:hover{
        padding: 0;
    }
    #address{
        font-size: 1vmin;
    }
    img{
        height: 30vh;
        width:40vw;
    }
}

 /* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 40px;
    right: 10px;
    background: #ff6600a4;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.chat-icon:hover {
    transform: scale(1.1);
}

/* Popup Menu */
.chat-menu {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #333;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: none; /* hidden by default */
    flex-direction: column;
    padding: 10px;
}

.chat-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 8px;
    background: #555;
    text-align: center;
    transition: 0.3s;
}

.chat-menu a:hover {
    background: #ff6600;
}