/* ============================================
   Migration Placeholder Page Styles
   ============================================ */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Declarations */
@font-face {
    font-family: 'Toyota Type';
    /*src: url('../fonts/ToyotaType-Book.woff2') format('woff2'),*/
    url('../fonts/ToyotaType-Book.woff') format('woff'),
    /*url('../fonts/ToyotaType-Book.ttf') format('truetype'),*/
    /*url('../fonts/ToyotaType-Book.otf') format('opentype');*/
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --Toyota-Primary-White: #FFF;
    --Toyota-Primary-Black: #282830;
}

/* Body & Background */
body {
    font-family: 'Toyota Type', sans-serif;
    background: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    background: var(--Toyota-Primary-Black, #282830);
    z-index: 1;
}

/* Main Container */
.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

/* Logo Styles */
.logo {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo svg {
    height: auto;
    width: 56px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Typography */
.title {
    color: var(--Toyota-Primary-White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Toyota Type', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.description {
    color: var(--Toyota-Primary-White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Toyota Type', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.date {
    color: var(--Toyota-Primary-White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Toyota Type', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.9;
}

.date span {
    font-weight: 400;
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State */
#completion-date {
    transition: opacity 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .title {
        font-size: 28px;
        line-height: 36px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .container {
        animation: none;
        opacity: 1;
        transform: none;
    }

    #completion-date {
        transition: none;
    }
}