/* Finen Landing Page Specific Styles */

.logo {
    content: url('../logofinen.png') !important;
}

.finen-hero {
    padding-top: calc(min(8vh, 14.4vw) + env(safe-area-inset-top));
    padding-bottom: 60px;
    background-color: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-text {
    padding: 20px;
}

.hero-text h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.finen-bg {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1 / 1;
    background-image: url('../finen.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.finen-mockup-bg:hover {
    transform: scale(1.02);
}

.feature-box {
    padding: 30px;
    margin: 20px 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.app-store-button {
    margin-top: 30px;
    padding: 15px 30px;
    background-color: black;
    color: white;
    display: inline-block;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.app-store-button:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-image-container {
        margin-top: 40px;
    }

    .finen-mockup {
        max-height: 50vh;
    }
}