/* Black & White Minimalist Design System */
:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --muted-color: #888888;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

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

html, body {
    width: 100%;
    height: 100%;
    background-color: #000000 !important;
    color: var(--text-color);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

/* Page Layout */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3.5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Header Section */
.main-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-out;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    color: var(--text-color);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-container:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-color);
}

/* Main Content Section */
.main-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 2rem 0;
}

.landing-section {
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Typography styles */
.main-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.5);
    animation: textGlowPulse 2s ease-in-out infinite alternate;
}

.italic-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
}

/* Footer & Social Icons */
.main-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    animation: fadeIn 1.6s ease-out;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--text-color);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.copyright {
    font-size: 0.75rem;
    font-weight: 300;
    color: #444444;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlowPulse {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 60px rgba(255, 255, 255, 0.8), 0 0 80px rgba(255, 255, 255, 0.4);
    }
}

/* Responsiveness Settings */
@media (max-width: 640px) {
    .page-container {
        padding: 2.5rem 1.5rem;
    }

    .main-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .desktop-break {
        display: none;
    }
}
