﻿/* --- FOTOFIRST LANDING PAGE ENHANCED STYLES --- */

.landing-container {
    position: relative;
    min-height: 100vh;
    text-align: center;
    padding: 80px 24px 48px 24px;
    background: linear-gradient(120deg, #eaf1fd 0%, #fafdff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-text h1 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: #163276;
    letter-spacing: -1px;
    line-height: 1.13;
}

.hero-text h3 {
    font-size: 1.32rem;
    margin-bottom: 20px;
    color: #4177fa;
    font-weight: 600;
}

.hero-text p {
    font-size: 1.11rem;
    max-width: 620px;
    margin: 0 auto 36px auto;
    color: #2d3a57;
    letter-spacing: 0.1px;
}

.get-started-btn {
    background: linear-gradient(90deg, #2196f3 0%, #66bbff 100%);
    color: white;
    padding: 16px 44px;
    font-size: 1.17rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 20px #d4e7ff70;
}

    .get-started-btn:hover, .get-started-btn:focus {
        background: linear-gradient(90deg, #1a73e8 0%, #2986ea 100%);
        box-shadow: 0 6px 28px #b0cfff66;
        outline: none;
    }

.photo-collage img {
    position: absolute;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 7px 24px rgba(23,68,155,0.12), 0 2px 8px #b5ccf9;
    transition: transform 0.22s cubic-bezier(.61,.29,.19,.89), box-shadow 0.23s;
    z-index: 1;
}

    .photo-collage img:hover {
        transform: scale(1.06) rotate(-2deg);
        box-shadow: 0 10px 34px #bfdcffcc, 0 3px 12px #aec8f7;
    }

.img-top-left {
    top: 36px;
    left: 34px;
    transform: rotate(-10deg);
}

.img-bottom-left {
    bottom: 36px;
    left: 74px;
    transform: rotate(-4deg);
}

.img-top-right {
    top: 38px;
    right: 38px;
    transform: rotate(11deg);
}

.img-bottom-right {
    bottom: 32px;
    right: 62px;
    transform: rotate(4deg);
}

/* Responsive: shrink images and padding on mobile */
@media (max-width: 900px) {
    .photo-collage img {
        width: 100px;
        height: 100px;
    }

    .landing-container {
        padding: 44px 8px 20px 8px;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

    .get-started-btn {
        padding: 13px 20vw;
        font-size: 1rem;
        border-radius: 9px;
    }
}

@media (max-width: 600px) {
    .photo-collage img {
        width: 58px;
        height: 58px;
    }

    .img-top-left, .img-bottom-left, .img-top-right, .img-bottom-right {
        left: 5px !important;
        right: 5px !important;
        top: 5px !important;
        bottom: 5px !important;
    }

    .landing-container {
        padding: 18px 2vw 10px 2vw;
    }

    .hero-text h1 {
        font-size: 1.34rem;
        margin-bottom: 8px;
    }

    .hero-text h3 {
        font-size: 1.05rem;
    }

    .hero-text p {
        font-size: .93rem;
        margin-bottom: 17px;
    }
}

/* --- END FOTOFIRST LANDING PAGE ENHANCED STYLES --- */
