/* CSS Variables - Matching Dashboard */
:root {
    --primary-base: #062133;
    --secondary-base: #ED7687;
    --success-base: #1DD19C;
    --background-light: #F7F7F8;
    --background-white: #FFFFFF;
    --grey-20: #f1f3f5;
    --grey-30: #e9ecef;
    --grey-40: #dee2e6;
    --grey-50: #ced4da;
    --grey-70: #868e96;
    --grey-80: #495057;
    --pink-accent: #ee8d9a;
    --jem-purple: #DD3CFE;
    --jem-teal: #2AD5AF;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-light);
    color: var(--grey-80);
}

/* Container Layout */
.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Panel - Message Content */
.left-panel {
    width: 500px;
    background-color: var(--background-white);
    border-right: 1px solid var(--grey-30);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    position: relative;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 420px;
    padding-top: 60px;
}

.header {
    margin-bottom: 40px;
    text-align: center;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 18px;
}

.header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-base);
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}

.message {
    margin-bottom: 35px;
}

.message h2 {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey-80);
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}

.message p {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey-80);
    line-height: 1.6;
    margin-bottom: 20px;
}

.message strong {
    color: var(--primary-base);
    font-weight: 600;
}

.back-soon {
    padding: 20px;
    background-color: var(--grey-20);
    border-radius: 8px;
    border-left: 4px solid var(--success-base);
}

.back-soon p {
    font-size: 14px;
    color: var(--grey-80);
    font-weight: 500;
    margin: 0;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--grey-30);
}

.links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    justify-content: center;
}

.links a {
    font-size: 14px;
    color: var(--grey-70);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.links a:hover {
    color: var(--primary-base);
}

.copyright {
    font-size: 12px;
    color: var(--grey-70);
    font-weight: 400;
    text-align: center;
}

/* Right Panel - Background */
.right-panel {
    flex: 1;
    background: linear-gradient(135deg, #1a2332 0%, #0f4a5c 50%, #1a6b6b 100%);
    position: relative;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(128, 128, 128, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(26, 107, 107, 0.4) 0%, transparent 50%),
        rgba(26, 35, 50, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
}

.brand-content {
    color: var(--background-white);
    max-width: 600px;
}

.brand-logo {
    margin-bottom: 30px;
}

.brand-logo-img {
    width: 80px;
    height: auto;
    /* Remove filter to show the actual coral/red logo */
}

.brand-tagline {
    font-size: 36px;
    font-weight: 700;
    color: var(--background-white);
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
}

.brand-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.logo-item {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .left-panel {
        width: 100%;
        min-height: 100vh;
        padding: 30px 20px;
    }
    
    .right-panel {
        display: none;
    }
    
    .header h1 {
        font-size: 24px;
    }
    
    .brand-tagline {
        font-size: 28px;
    }
    
    .company-logos {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .left-panel {
        padding: 20px 15px;
    }
    
    .logo {
        width: 100px;
    }
    
    .header h1 {
        font-size: 22px;
    }
    
    .message h2 {
        font-size: 16px;
    }
    
    .message p {
        font-size: 14px;
    }
    
    .links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeIn 0.6s ease-out;
}

.brand-content {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .right-panel {
        display: none;
    }
    
    .left-panel {
        width: 100%;
        box-shadow: none;
        border: none;
    }
}