/* Font declarations */
@font-face {
    font-family: 'Neue Haas Display';
    src: url('../fonts/NeueHaasDisplayLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Display';
    src: url('../fonts/NeueHaasDisplayRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Display';
    src: url('../fonts/NeueHaasDisplayMediu.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Neue Haas Display', Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: url('../images/bg.png') no-repeat center center;
    background-size: 100vw 100vh;
    color: black;
    position: relative;
}

.container-fluid {
    height: 100vh;
    padding: 0;
}

.content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.main-content {
    padding-top: 32.5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
}

.logo-img {
    /* max-width: 400px; */
    width: 100%;
    height: 14vh;
}

.tagline {
    font-size: 2.5vh;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin-top: 8rem;
    transform: scaleY(1.2);
    transform-origin: center;
}

.footer {
    padding-bottom: 1.5rem;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.coming-soon {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 3vh;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 300;
    flex: 1;
    text-align: center;
}

.contact {
    font-size: 0.85rem;
    font-weight: 300;
    flex: 1;
}

.contact .email {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 300;
}

.copyright {
    font-size: 0.9rem!important;
    margin-top: 0.5rem;
    opacity: 0.9;
    margin-bottom: 0;
    font-weight: 300;
}

@media (min-width: 1000px) {
    .footer-content {
        text-align: right !important;
    }
}

/* @media (min-width: 2000px) {
    .tagline {
        font-size: 1.25vw;
        margin-top: 8vw;
    }
    .coming-soon{
        font-size: 1.25vw;
    }
    .contact .email{
        font-size: 1.1vw!important;
    }
    .copyright{
        font-size: 0.75vw !important;
    }
} */

@media (max-width: 991.98px) { /* Bootstrap lg breakpoint */
    .footer-content {
      flex-direction: column !important;
      align-items: center;
      text-align: center !important;
    }
    .footer .content {
      display: flex;
    }
    .footer .content{
        text-align: center !important;
    }      
  }
  

@media (max-width: 768px) {
    body {
        background: url('../images/bg_mobile.jpg') no-repeat center center;
        background-size: contain;
        background-color: #ebebe2; /* Beige color */
        background-position-y: top;
    }
    .content-wrapper {
        padding: 0 5%;
        display: none
    }

    .main-content {
        padding-top: 36.5vh;
    }

    .branding {
        margin-bottom: 3rem;
    }

    .logo-img {
        max-width: 300px;
        height: 8vh;
        width: 26vh;
    }

    .tagline {
        font-size: 0.8rem;
        margin-top: 0;
        font-weight: 500;
    }

    .coming-soon{
        font-size: 1.4rem;
    }

    .footer{
        padding-bottom: 4.75rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .contact {
        text-align: center;
    }
    .contact .email{
        font-size: 1rem;
    }
    .copyright{
        font-size: 0.75rem!important;
    }
} 