/* Global styles */
body {
    margin: 0;
    font-family: "Noto Serif JP", Sans-serif;
    margin-left: 17%;
}

h2 {
    color: #980000; 
    font-family: "Noto Serif JP", Sans-serif; 
    font-size: 26px; 
    font-weight: 600; 
    width: fit-content;
    margin: 0px 0px 10px 0px; 
    padding: 0px 15px 11px 15px; 
    border-style: solid; 
    border-width: 0px 0px 2px 0px; 
    border-color: #FF8200; 
    display: inline-block; 
    text-align: center;
}

h3 {
    color: #565656;
    font-family: "Noto Serif JP", Sans-serif;
    font-size: 22px;
    font-weight: 600;
}

/* sticky side menu */
.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 14.5%;
    height: 100vh;
    padding: 20px;
}

.sticky-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.sticky-menu li {
    margin-bottom: 15px;
    text-align: center;
}

.sticky-menu a {
    text-decoration: none;
    color: #828282;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.sticky-menu a:hover {
    color: #ff6900;
}

.menu-logo {
    display: block;
    margin: 20px auto 45px;
    width: 75%;
    height: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.social-icons .icon {
    width: 30px;
    height: 30px;
}

.sticky-menu .copyright {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* main content */
.main-content {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    min-height: 300px;
    overflow: hidden; 
    background-image: url('../imgs/home_img.jpg');
    background-size: cover;
    background-position: center;
}

.background-image {
    width: 100vw; 
    height: 100vh; 
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
}

.center-text {
    color: #414141;
    font-size: 35px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* bottom menu */
.bottom-menu {
    position: relative;
    bottom: auto;
    width: 100%;
    margin: 0;
    height: 15vh;
    background-color: #EE7D64;
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.bottom-menu .menu-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bottom-menu .menu-links a {
    color: white;
    text-decoration: none;
}

/* footer menu */
footer.footer-menu {
    position: relative;
    bottom: auto;
    width: 100%;
    margin: 0;
    height: 20vh;
    background-color: #EE7D64;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center; 
}

footer.footer-menu .menu-links {
    display: flex;
    justify-content: center; 
    gap: 60px;
    list-style: none;
    padding: 0;
    margin: 50px;
}

footer.footer-menu .menu-links a {
    color: white; 
    text-decoration: none;
}

footer.footer-menu .copyright {
    margin-top: 50px;
    text-align: center;
    color: #FFFFFF;
    font-family: "Noto Serif JP", Sans-serif;
    font-size: 12px;
    font-weight: 300;
}

/* drawer toggle button */
.drawer-toggle {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    background-color: #EE7D64;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.drawer-toggle.active {
    display: block;
}

@media (max-width: 784px) {
    body {
        margin-left: 0;
    }
    .sticky-menu {
        display: none; 
    }
    .drawer-toggle {
        display: block; 
    }
    .main-content {
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: top center;
        flex-direction: column;
        padding: 10px;
        height: auto;
        min-height: 50vh;
    }
    .center-text {
        font-size: 20px;
        height: 100%;
    }
    .bottom-menu {
        flex-direction: column;
        gap: 20px;
    }
    footer.footer-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .content-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }
    .content-row > div {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }
    .content-row img {
        margin-bottom: 16px;
    }
}

/* Fijita add CSS */
.u-mobile {
    display: none;
}

  @media screen and (max-width:768px) { 
.u-mobile {
    display: block;
}
}