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

:root {
    --bg-color: #0c090e;
    --glow-color-1: rgba(235, 186, 179, 0.15); /* Cloud Pink */
    --glow-color-2: rgba(147, 129, 140, 0.1);  /* Sky Grey/Violet */
    --border-color: rgba(235, 186, 179, 0.15);
    --transition-speed: 0.6s;
    --transition-easing: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--bg-color);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Premium Ambient Background Glows */
body::before {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vh;
    top: 20%;
    left: 20%;
    background: radial-gradient(circle, var(--glow-color-1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vh;
    bottom: 10%;
    right: 15%;
    background: radial-gradient(circle, var(--glow-color-2) 0%, transparent 60%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

/* Page Layout */
.page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 2rem;
    z-index: 1;
}

/* Image Wrapper with Premium Card Styling */
.image-wrapper {
    position: relative;
    max-width: 1000px;
    width: 100%;
    max-height: 80vh;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(235, 186, 179, 0.05) inset,
        0 0 40px rgba(235, 186, 179, 0.05);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    /* Animations */
    opacity: 0;
    transform: scale(0.96) translateY(20px);
    animation: 
        fadeInUp 1.2s var(--transition-easing) forwards,
        float 8s ease-in-out infinite 1.2s;
    transition: 
        transform var(--transition-speed) var(--transition-easing),
        box-shadow var(--transition-speed) var(--transition-easing),
        border-color var(--transition-speed) var(--transition-easing);
}

/* Hero Image Specifics */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform var(--transition-speed) var(--transition-easing);
}

/* Interactive Hover States */
.image-wrapper:hover {
    transform: scale(1.02) translateY(-4px) !important;
    border-color: rgba(235, 186, 179, 0.3);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 1px 2px rgba(235, 186, 179, 0.1) inset,
        0 0 60px rgba(235, 186, 179, 0.15);
}

.image-wrapper:hover .hero-image {
    transform: scale(1.015);
}

/* Custom Keyframe Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
    }
    
    .image-wrapper {
        border-radius: 16px;
        max-height: 70vh;
    }
}
