/* Base resets and styling */
* {
    margin: 0;
    padding: 0;
    box-gradient: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f7f6f2; /* Matches the soft cream background of the image */
    background: radial-gradient(circle at center, #fcfbfa 0%, #f2f1ec 100%);
    color: #2d3748;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.page-container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.image-wrapper {
    width: 100%;
    max-width: 800px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 1px 3px rgba(0, 0, 0, 0.04);
    background-color: #ffffff;
    padding: 10px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(63, 94, 45, 0.12), 
                0 1px 3px rgba(0, 0, 0, 0.02);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    user-select: none;
    -webkit-user-drag: none;
}

.footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #718096;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.8s forwards;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .page-container {
        padding: 12px;
    }
    
    .image-wrapper {
        border-radius: 16px;
        padding: 6px;
    }
    
    .hero-image {
        border-radius: 10px;
    }
    
    .footer {
        padding: 20px 10px;
        font-size: 0.8rem;
    }
}
