@font-face {
    font-family: 'Gellix';
    src: url('assets/Gellix/Gellix-Regular.woff2') format('woff2'),
         url('assets/Gellix/Gellix-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gellix';
    src: url('assets/Gellix/Gellix-SemiBold.woff2') format('woff2'),
         url('assets/Gellix/Gellix-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gellix';
    src: url('assets/Gellix/Gellix-Bold.woff2') format('woff2'),
         url('assets/Gellix/Gellix-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Gellix', sans-serif;
    background-color: #aca595;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1
}

.header {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 35px;
}

.header-logo {
    height: 30px;
}

.header-text {
    font-size: 16px;
    font-weight: bold;
    color: #efe7dd;
    letter-spacing: 3px; 
}

.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: #efe7dd;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom;
    transform: translateY(19%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}


.main-logo {
    width: 100%;
    max-width: 500px;
}

.footer {
    background-color: #aca595;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 35px;
}

.footer-left {
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
}

.footer-right {
    text-align: right;
}

.contact-button {
    padding: 10px 40px;
    background-color: #000;
    color: #efe7dd;
    font-size: 11px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: inline-block;
}

.contact-button:hover {
    background: #333;
}

@media (max-height: 650px) {
    .hero-image {
        transform: translateY(35%) !important;
    }
}

@media (max-height: 750px) {
    .hero-image {
        transform: translateY(25%);
    }
}

@media (max-width: 430px) {
    .hero-image {
        transform: scale(3) translateY(-20%);
    }
}

@media (max-width: 768px) {
    body {
        height: -webkit-fill-available;
        min-height: env(safe-area-inset-bottom, 100vh);
    }
    
    .header {
        padding: 10px 20px;
    }

    .header-logo {
        width: 13%;
        height: auto;
    }

    .header-text {
        font-size: 12px;
    }

    .hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        transform: scale(1.4) translateY(-10%)
    }

    @media (max-width: 768px) and (max-height: 745px) {
        .hero-image {
            transform: translateY(10%);
        }
    }

    .main-logo {
        width: 368px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 20px;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .footer-left p {
        font-size: 12px;
    }
}