/* Font Import - Taz:Bold and Taz:Regular */
@font-face {
    font-family: 'Taz';
    src: url('../fonts/Taz-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Taz';
    src: url('../fonts/Taz-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Debug border around all div elements */
/*
div {
    border: 1px solid #991f26;
    border-style: dotted;
}
*/

body {
    font-family: 'Taz', sans-serif;
    background-color: #ee1f26;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    padding: 126px 40px;
    display: flex;
    justify-content: center;
}

.content {
    max-width: 776px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 63px;
}

/* Header Section */
.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.logo {
    width: 100.53px;
    height: 126.89px;
}

.logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.title {
    font-family: 'Taz', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 66px;
    text-align: center;
    color: white;
    white-space: pre-wrap;
}

/* App Download Section */
.app-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.app-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
}

.qr-code {
    width: 200px;
    height: 200px;
    background-color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.qr-code svg {
    width: 100%;
    height: 100%;
    display: block;
}

.app-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 465.334px;
}

.app-title {
    font-family: 'Taz', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 44px;
    color: white;
    white-space: pre-wrap;
}

.app-subtitle {
    font-family: 'Taz', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 26.4px;
    color: white;
}

.app-subtitle-mobile {
    display: none;
    font-family: 'Taz', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 19.8px;
    color: white;
    text-align: center;
}

.store-buttons {
    display: flex;
    gap: 0;
    align-items: center;
}

.store-badge {
    width: 168.75px;
    height: 51.136px;
    display: block;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-text {
    font-family: 'Taz', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 19.8px;
    color: white;
    white-space: nowrap;
}

/* Button Section */
.button-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 417.563px;
    width: 100%;
}

.button-info {
    font-family: 'Taz', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1;
    text-align: center;
    color: white;
    white-space: pre-wrap;
}

.mobile-text {
    display: none;
}

.button {
    background-color: white;
    border: 2px solid #a4a8ad;
    border-radius: 8px;
    padding: 16px;
    min-width: 120px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Taz', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    color: #303233;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive Design - Tablet */
@media screen and (max-width: 768px) {
    .container {
        padding: 80px 30px;
    }

    .content {
        gap: 50px;
    }

    .title {
        font-size: 48px;
        line-height: 52.8px;
    }

    .app-title {
        font-size: 32px;
        line-height: 35.2px;
    }

    .app-subtitle {
        font-size: 20px;
        line-height: 22px;
    }

    .qr-code {
        width: 160px;
        height: 160px;
    }

    .button-section {
        max-width: 100%;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 480px) {
    .container {
        padding: 37px 20px;
    }

    .content {
        gap: 58px;
        max-width: 393px;
    }

    /* Header Section Mobile */
    .header-section {
        gap: 16px;
    }

    .logo {
        width: 64px;
        height: 80.781px;
    }

    .title {
        font-size: 40px;
        line-height: 44px;
    }

    /* App Section Mobile */
    .app-content {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .qr-code {
        display: none;
    }

    .app-info {
        max-width: 100%;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .app-title {
        font-size: 24px;
        line-height: 26.4px;
        text-align: center;
        max-width: 288px;
    }

    .app-subtitle {
        display: none;
    }

    .app-subtitle-mobile {
        display: block;
    }

    .store-buttons {
        justify-content: center;
    }

    /* Contact Section Mobile */
    .contact-section {
        width: auto;
        gap: 8px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-text {
        font-size: 18px;
        line-height: 19.8px;
    }

    /* Button Section Mobile */
    .button-section {
        gap: 12px;
        max-width: 100%;
    }

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }

    .button-info {
        font-size: 16px;
    }

    .button {
        font-size: 20px;
        padding: 16px;
        height: 56px;
        min-width: 135px;
    }
}

