@font-face {
    font-family:AileronThin;
    src: url(/fonttype/aileron.thin.otf);
}
@font-face {
    font-family:AileronReg;
    src: url(/fonttype/aileron.regular.otf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    min-height: 100%;
    background: white;
}

.center-fit{
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
}
.text-middle{
    bottom: 0;
    text-align: center;
    color: white;
    background-color: black;
    font-size: 20px;
}
.no-color-url{
    color: white;
    text-decoration: none;
    cursor: pointer;
}


.container-fluid {
    background-color: #000000;
}

.logo-container{
    display: grid;
    place-items: center;
    padding-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
}
.contact-img {
    width: 25%;
    border-radius: 1.5rem;
}
.ig-text-style{
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 30px;
}
.contact-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center ;
    padding: 0 1rem;
    align-items: center;
    width: 100%;
    position: relative;
    padding-right: 17rem;
    margin-bottom: 5rem;
}
.contact-data-container{
    display: grid;
    justify-self: flex-end;
    width: fit-content;
    height: auto;   
    column-gap: 2.5rem;
    row-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    margin: 0;
    font-family:AileronReg;
    font-size: 20px;
}
.contact_img img{
    padding-top: 40px;
    width: 100%;
    height: auto;
    
}
.contact-title{
    font-size: 40px;
}
.contact-info {
    margin-bottom: 0;
    padding-top: 11px;
}
.about_dbco_container{
    columns: 990px;
    align-items: center;
    padding-top: 20mm; 
}
.about_dbco_container img{
    width: 100%; 
}
.gotop {
    position: fixed;
    width: 40px;
    height: 40px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(131, 131, 131, 0.712);
    bottom: 120px;
    right: 50px;
    font-family: AileronReg;
    text-align: center;
    line-height: 40px; 
    color: white;
    font-size: 16px;
}

.copyright{
    display: flex;
    background-color: black;
    color: white;
    height: 100px;
    width: 100%;
    padding: 40px 0;
    justify-content: center;
}

@media only screen and (max-width:430px) {
    .about_dbco_container{
        columns: 990px;
        align-items: center;
        padding-top: 20mm; 
    }
    .about_dbco_container img {
        width: 100%;
    }
    .copyright{
        display: flex;
        background-color: black;
        color: white;
        height: 100px;
        width: 100%;
        padding: 40px 0;
        justify-content: center;
        font-size: 12px;
    }
    .gotop {
        width: 60px;
        height: 60px;
        right: 10px;
        line-height: 60px;
        font-size: 26px;
    }
}

/* --- STICKY FOOTER FIX --- */
.sticky-footer-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Forces body to be at least window height */
}

main {
    flex: 1; /* Pushes footer down if content is short */
    display: flex;
    flex-direction: column;
}
/* --- CUSTOM TOAST NOTIFICATION --- */
#toast-notification {
    visibility: hidden; /* Hidden by default */
    min-width: 250px;
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    text-align: center;
    border-radius: 8px; /* Rounded corners */
    padding: 16px;
    position: fixed;
    z-index: 10000; /* On top of everything */
    left: 50%;
    bottom: 30px; /* Start position */
    transform: translateX(-50%); /* Center horizontally */
    font-size: 16px;
    font-family: 'AileronReg', sans-serif;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

/* Class to make it visible */
#toast-notification.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px; /* Moves up slightly when appearing */
}