@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Outfit:wght@300;400;500&display=swap');

:root {
    --bg-color: #ffffff;
    --text-primary: #000000;
    --text-secondary: #4a4a4a;
    --text-muted: #888888;
    --border-color: #e0e0e0;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.8;
    letter-spacing: 0.02em;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Move content to top */
    padding: 1rem 2rem;
    overflow-x: hidden;
}

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

/* Logo Area */
.logo-container {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -6rem;    /* Pull up to top of page */
    margin-bottom: -10rem; /* Pull text up into video padding */
    position: relative;
    overflow: hidden;
}

.logo-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Area */
.content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.subheadline {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: var(--text-primary);
    margin-bottom: 3rem;
}

.instagram-link {
    font-size: 0.9rem;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 6rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.6;
}

.instagram-link span {
    color: var(--text-muted);
    font-weight: 300;
    margin-right: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    body {
        padding: 1.5rem;
        justify-content: flex-start;
        padding-top: 4rem;
    }

    .logo-container {
        width: 100%;
        max-width: 400px;
        aspect-ratio: 1 / 1;
        margin-top: -4rem;
        margin-bottom: -6rem;
    }

    h1 {
        margin-bottom: 1rem;
    }

    .subheadline {
        margin-bottom: 2.5rem;
    }

    .divider {
        margin-bottom: 2.5rem;
    }

    .instagram-link {
        margin-bottom: 4rem;
    }
}
