/*
Theme Name: Joalpe Coming Soon 2026
Theme URI: https://www.joalpe.nl
Author: Joalpe
Author URI: https://www.joalpe.nl
Description: A future-forward, ultra-modern Coming Soon theme.
Version: 3.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: joalpe-coming-soon
*/

:root {
    --primary: rgb(234, 88, 12);
    --accent: #ffffff;
    --dark: #0f172a;
    --light: #f8fafc;
    --glass-surface: rgba(255, 255, 255, 0.75); /* More transparency for depth */
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 25px 50px -12px rgba(0, 0, 0, 0.15); /* Softer, deeper shadow */
    --shadow-sharp: 0 0 0 1px rgba(255, 255, 255, 0.3);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark);
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Subtle gradient overlay for depth */
body::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.2) 100%);
    opacity: 0.95;
    z-index: 0;
}

.main-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 680px; /* Slightly more focused width */
    padding: 1.5rem;
}

.glass-card {
    background: var(--glass-surface);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    padding: 4rem 3.5rem;
    box-shadow: var(--shadow-soft), var(--shadow-sharp);
    text-align: center;
}

.logo-wrap {
    margin-bottom: 3.5rem;
    position: relative;
    display: flex;
    justify-content: center;
}

.logo-wrap img {
    height: auto;
    width: 100%;
    max-width: 280px; /* Refined size - prominent but not overwhelming */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

h1 {
    font-weight: 800;
    font-size: 2.25rem;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    color: var(--dark);
    line-height: 1.1;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 2rem;
    border: 1px solid rgba(234, 88, 12, 0.15);
    box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.05);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(234, 88, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

.description {
    color: #475569;
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Modern Grid for Contact Info */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Explicit 2 column grid */
    gap: 1rem;
    text-align: left;
}

.info-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.25rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Make the last item (Hours) span full width */
.info-item:last-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(234, 88, 12, 0.2);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px; /* Align with icon */
}

.info-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.info-value {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.3;
    white-space: nowrap;
}

.hours-group {
    display: flex;
    gap: 2rem;
}

footer {
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media (max-width: 640px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
    }
    h1 {
        font-size: 2rem;
    }
    .info-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .hours-group {
        flex-direction: column;
        gap: 4px;
    }
}
