/* Font Face */
@font-face {
    font-family: 'Alte Haas Grotesk';
    src: url('fonts/AlteHaasGroteskRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Alte Haas Grotesk';
    src: url('fonts/AlteHaasGroteskBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

body {
    font-family: 'Alte Haas Grotesk', sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Welcome Container */
.welcome-container {
    min-height: 100vh;
    max-width: 100vw;
    padding: 1.75rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    animation: fadeInWelcome 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes fadeInWelcome {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Header with Logo */
.welcome-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.logo {
    height: 3.5rem;
    width: auto;
}

/* Main Content - Cards */
.welcome-content {
    flex: 1;
    display: flex;
    gap: 2rem;
    align-items: stretch;
    max-width: 100%;
}

/* Choice Card */
.choice-card {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    max-width: 100%;
    min-height: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.choice-card:active {
    transform: scale(0.98);
}

.choice-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Custom image positioning per card */
.choice-card:first-child .choice-image {
    object-position: center center;
}

.choice-card:last-child .choice-image {
    object-position: right top;
}

.choice-card:hover .choice-image {
    transform: scale(1.05);
}

.choice-label {
    position: absolute;
    bottom: 1rem;
    font-family: 'Alte Haas Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #f5edd6;
}

.choice-card:first-child .choice-label {
    right: 1.5rem;
}

.choice-card:last-child .choice-label {
    left: 1.5rem;
}

/* Tablet */
@media (max-width: 1024px) {
    .welcome-container {
        padding: 1.5rem 2rem 2rem;
    }

    .welcome-header {
        margin-bottom: 1.25rem;
    }

    .logo {
        height: 2.75rem;
    }

    .choice-label {
        font-size: 1.6rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .welcome-container {
        padding: 1.25rem 2.5rem 2.5rem;
    }

    .welcome-header {
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .logo {
        height: 2rem;
    }

    .welcome-content {
        flex-direction: column;
        gap: 1rem;
    }

    .choice-card {
        flex: 1;
        width: 100%;
        border-radius: 24px;
    }

    .choice-label {
        font-size: 1.5rem;
    }

    .choice-card:first-child .choice-label {
        right: 1.5rem;
        bottom: 1.5rem;
    }

    .choice-card:last-child .choice-label {
        right: 1.5rem;
        top: 1.5rem;
        left: auto;
        bottom: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .welcome-container {
        padding: 1rem 2rem 2rem;
    }

    .welcome-header {
        margin-bottom: 1rem;
    }

    .logo {
        height: 1.75rem;
    }

    .choice-card {
        flex: 1;
        width: 100%;
        border-radius: 18px;
    }

    .choice-label {
        font-size: 1.3rem;
    }

    .choice-card:first-child .choice-label {
        right: 1rem;
        bottom: 1rem;
    }

    .choice-card:last-child .choice-label {
        right: 1rem;
        top: 1rem;
        left: auto;
        bottom: auto;
    }
}
