@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    font-family: "Roboto", serif;
    box-sizing: border-box;
}

header{
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo Section */
.logo-container{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.logo{
    width: 60px;
    height: auto;
    margin-right: 10px;
}

/* Toast styles */
#toast-container{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast{
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    font-size: 14px;
    max-width: 320px;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast-hide{ opacity: 0; transform: translateY(8px); }
.toast-success{ background: #2e7d32; }
.toast-error{ background: #b00020; }
.toast-warning{ background: #f57c00; }
.toast-info{ background: #3949ab; }
.toast .toast-message{ margin: 0; }
.title{
    display: flex;
    flex-direction: column;
    line-height: 1;
    padding-top: 0;
}
.title a{
    display: flex;
    text-decoration: none;
    flex-direction: column;
    align-items: center;
}
.logo-main{
    font-size: 34px;
    font-weight: bold;
    color: rgb(107, 27, 64);
}
.logo-sub{
    font-size: 17px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgb(107, 27, 64);
    padding-top: 5px;
}

/* Navigation Section */
.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}
.nav_links{
    display: flex;
    list-style: none;
    margin: auto;
}
.nav_links li{
    margin: 0 15px;
    position: relative;
}
.nav_links a{
    text-decoration: none;
    color: rgb(107, 27, 64);
    text-transform: uppercase;
    font-weight: bold;
}
.nav_links a:hover:not(.active){
    color: #efcf4e;
    text-shadow: 2px 2px 5px #F5C300;
}
.nav_links a.active{
    color: #F5C300 !important;
}
.nav_links li{
    position: relative;
}
.nav_links li:hover .dropdown_menu{
    display: block;
    z-index: 10;
}
.dropdown_menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    padding: 5px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.dropdown_menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.dropdown_menu a{
    display: block;
    padding: 4px 10px;
    text-decoration: none;
    color: rgb(107, 27, 64);
    font-weight: bold;
}
.dropdown_menu a:hover{
    color: #F5C300;
    text-shadow: 1px 1px 5px #F5C300;
}
.nav_links li:focus-within .dropdown_menu{
    display: block;
}
.dropdown_menu:focus{
    outline: none;
    border: none;
    box-shadow: none;
}

/* Icons */
.icons{
    display: flex;
    list-style: none;
    gap: 15px;
}
.icons i{
    color: rgb(107, 27, 64);
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.icons i:hover{
    color: #efcf4e;
    transform: scale(1.1);
}

/* Footer Section */
footer{
    width: 100%;
    background-color: rgb(107, 27, 64);
    padding: 15px 20px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.footer-bottom{
    font-size: 0.9rem;
    text-align: left;
    color: #D3D3D3;
    width: 50%;
    padding-top: 10px;
}
.footer-socials{
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.footer-socials a{
    color: #BCBCBC;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    margin: 0 5px;
}
.footer-socials a:hover{
    color: #efcf4e;
    transform: scale(1.03);
}

/* Hamburger menu */
.hamburger-menu i{
    font-size: 22px;
    color: #6b1b40;
    transition: color 0.3s ease, transform 0.3s ease;
}
.hamburger-menu:hover i{
    color: #efcf4e;
    transform: scale(1.1);
}

/* Menu Mobile */
.mobile-nav{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.mobile-nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav li{
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.mobile-nav a{
    text-decoration: none;
    color: #6b1b40;
    font-weight: bold;
    display: block;
}

/* Media Query */
@media (max-width: 767px){
    .nav-container {
        display: none;
    }
    .hamburger-menu{
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
    .mobile-nav{
        display: none;
    }
    .mobile-nav.open{
        display: flex;
    }
}
@media (min-width: 768px){
    .hamburger-menu{
        display: none;
    }
    .nav-container{
        display: flex;
    }
    .mobile-nav{
        display: none;
    }
}
@media (max-width: 385px){
    .logo{
        width: 50px;
    }
    .logo-main{
        font-size: 22px;
    }
    .logo-sub{
        font-size: 12px;
    }
    .hamburger-menu{
        font-size: 25px;
    }
    .hamburger-menu i{
        font-size: 25px;
    }
    .nav_links a.active{
        color: #F5C300;
        text-shadow: 1px 1px 5px #F5C300;
    }
    .nav_links a:hover{
        color: #F5C300;
        text-shadow: 1px 1px 5px #F5C300;
    }
    .mobile-nav a.active{
        color: #F5C300;
        text-shadow: 1px 1px 5px #F5C300;
    }
    .mobile-nav li{
        padding: 12px;
    }
}