/* iOS 7 Lock Screen Landing Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 100;
    overflow: hidden;
    background: #000;
}

.landing-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.landing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/photos/DSCN1755.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(1.1);
    z-index: 1;
}

/* iOS 7 Lock Screen Content */
.ios7-lock-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 40px;
}



/* Artist Name */
.ios7-artist-name {
    font-size: 28px;
    font-weight: 100;
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* iOS 7 Slide to Enter */
.ios7-slide-container {
    position: relative;
    width: 280px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ios7-slide-container:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.ios7-slide-text {
    font-size: 16px;
    font-weight: 300;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* iOS 7 Bottom Slide Indicator */
.ios7-slide-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ios7-slide-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* iOS 7 Responsive Design */
@media (max-width: 768px) {
    .ios7-artist-name {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .ios7-slide-container {
        width: 240px;
        height: 45px;
    }

    .ios7-slide-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ios7-lock-content {
        padding: 0 20px;
    }

    .ios7-artist-name {
        font-size: 20px;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .ios7-slide-container {
        width: 200px;
        height: 40px;
    }

    .ios7-slide-text {
        font-size: 12px;
    }

    .ios7-slide-indicator {
        bottom: 20px;
    }
}
