@font-face {
    font-family: 'AauxNext-Bold';
    src: url('../fonts/aauxnextbdwebfont.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'AauxNext-Black';
    src: url('../fonts/AauxNextBlk.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'AauxNext-Light';
    src: url('../fonts/aauxnextltwebfont.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'AauxNext-Medium';
    src: url('../fonts/aauxnextmdwebfont.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Albertan-Pro-Book';
    src: url('../fonts/Albertan-Pro-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Albertan-Pro-Inline';
    src: url('../fonts/Albertan-Pro-Inline.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Albertan-Pro-Light';
    src: url('../fonts/Albertan-Pro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Albertan-Pro-Medium';
    src: url('../fonts/Albertan-Pro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Albertan-Pro-SemiBold';
    src: url('../fonts/Albertan-Pro-Semi-Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Albertan-Pro-Medium';
    src: url('../fonts/Albertan-Pro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}



html, body {
    background-color: #1B140A;
    text-align: center;
    color: #CDAB53;
    font-family: 'Albertan-Pro', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%;
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.logo {
    width: 55%;
    height: auto; 
    max-height: 60px; 
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin-inline: auto;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1.5s ease, transform 1.5s ease;
    display: block;
}

.logo.visible {
    opacity: 1;
    transform: scale(1);
}

.image img {
    width: 100%;
    height: auto;
}

.contact-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 700px;
}

.contact-col {
    text-align: left;
    min-width: 180px;
}

.contact-col-1 {
    flex: 1.6;
}

.contact-col-2 {
    flex: 1;
}

.contact-container p {
    margin-top: 10px;
    font-size: 15px;
    word-spacing: 1px;
    line-height: 1.6em;
}

.contact-container a {
    color: #CDAB53;
    text-decoration: underline;
}

.contact-container a:hover {
    opacity: 0.6;
}

/* Responsive 630px */
@media (max-width: 630px) {
    .logo {
        width: 100%;
        max-width: 100%;
        height: auto !important; 
        max-height: 60px; 
        margin: 15px 0 25px 0;
        display: block;
        will-change: transform, opacity;
        top: 30px;
    }

    .container {
        max-width: 100%;
    }

    .contact-wrapper-desktop {
        justify-content: flex-start;
        position: relative;
    }

    .contact-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 10px 15px;
        max-width: 100%;
        gap: 5px;
    }

    .contact-col {
        width: 100%;
        margin-bottom: 10px;
        text-align: left;
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .contact-container p {
        font-size: 14px;
    }
    .contact-col-2 br {
        display:none;
    }
    .container {
        margin: unset;
    }
}




@media (min-width: 630px) {
    img.image-mobile {
        display:none;
    }

    }
    @media (max-width: 631px) {
    img.image-desktop {
        display:none;
    }
        img.image-mobile {
        display:block;
    }
    .contact-wrapper {
        justify-content: flex-start;
    }
    } 


