/* Meet Artist Page Specific Styles */
.meet-artist-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Phone Section */
.phone-section {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    perspective: 1000px;
}

.phone-frame {
    width: 320px;
    height: 620px;
    background: #1a1a1a;
    border-radius: 35px;
    padding: 15px;
    box-shadow: 
        0 0 0 2px #333,
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transform: rotate(-5deg);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.phone-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.artist-photo {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
    border: none;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.artist-photo.active {
    opacity: 1;
    z-index: 2;
}

/* Removed cloud decorations since image now fills entire phone screen */

/* Content Section */
.content-section {
    flex: 1;
    max-width: 700px;
}

.content-text {
    color: #8b5a3c;
}

.page-title {
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

.meet-script {
    font-family: 'Great Vibes', cursive;
    font-size: 9.5rem;
    font-weight: 400;
    display: block;
    margin-bottom: -0.5rem;
    transform: rotate(-8deg);
    transform-origin: left center;
}

.your-artist-caps {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    line-height: 0.9;
}

.artist-description {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

.artist-description p {
    margin-bottom: 1.5rem;
}

.artist-description p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

.contact-button-container {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .meet-artist-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 1.5rem;
    }
    
    .content-section {
        max-width: 600px;
    }
    
    .meet-script {
        font-size: 4.5rem;
    }
    
    .your-artist-caps {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .meet-artist-container {
        gap: 2rem;
        padding: 1rem;
    }
    
    .phone-frame {
        width: 280px;
        height: 540px;
        padding: 12px;
    }
    
    .phone-notch {
        width: 120px;
        height: 24px;
    }
    
    .meet-script {
        font-size: 4rem;
    }
    
    .your-artist-caps {
        font-size: 2.5rem;
    }
    
    .artist-description {
        font-size: 1rem;
    }
    
    .contact-button-container {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 240px;
        height: 460px;
        padding: 10px;
    }
    
    .meet-script {
        font-size: 3.5rem;
    }
    
    .your-artist-caps {
        font-size: 2rem;
    }
    
    .artist-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .page-title {
        margin-bottom: 2rem;
    }
    
    .contact-button-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .contact-button-container .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Animation for phone */
.phone-frame {
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

.artist-photo.active {
    animation: photoGlow 4s ease-in-out infinite alternate;
}

@keyframes photoGlow {
    0% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1.05);
    }
} 