:root {
    --bg-gradient: linear-gradient(135deg, #09090e 0%, #171721 100%);
    --accent: #6b46c1;
    --text-primary: #f8f9fa;
    --text-sec: #adb5bd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    opacity: 0;           /* INITIAL STATE FOR FADE IN */
    transform: scale(0.95);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    max-width: 100%;
}

.image-wrapper.visible {
    opacity: 1;
    transform: scale(1);
}

.hero-image {
    display: block;
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    transition: transform 0.6s ease;
    border-radius: 20px;
}

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

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 9, 14, 0.4), transparent);
    pointer-events: none;
}

.content {
    text-align: center;
    opacity: 0;           /* INITIAL STATE FOR FADE IN */
    transform: translateY(20px);
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s; /* Delays so image shows first */
}

.content.visible {
    opacity: 1;
    transform: translateY(0);
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #d8b4fe, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-sec);
    font-size: 1.1rem;
    font-weight: 300;
}
