/* ==========================================================================
   CAMZA.ai — Minimalist 'Coming Soon' Stylesheet
   ========================================================================== */

:root {
    --bg-dark: #07090e;
    --yellow-primary: #ffe600;
    --yellow-accent: #facc15;
    --yellow-amber: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #ffe600 0%, #ffd700 50%, #f59e0b 100%);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: var(--font-body);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Interactive Canvas */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Ambient Glow Orbs */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    animation: floatGlow 14s ease-in-out infinite alternate;
}

.orb-1 {
    top: 20%;
    left: 25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.18) 0%, rgba(245, 158, 11, 0) 70%);
}

.orb-2 {
    bottom: 20%;
    right: 25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, rgba(255, 215, 0, 0) 70%);
    animation-delay: -7s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}

/* Centered Main Content */
.centered-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

/* Logo Box & Image */
.logo-box {
    max-width: 440px;
    width: 85vw;
    margin-bottom: 32px;
    position: relative;
    filter: drop-shadow(0 0 35px rgba(255, 230, 0, 0.25));
    animation: logoFloat 4s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.camza-logo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 230, 0, 0.35);
    backdrop-filter: blur(16px);
    padding: 10px 24px;
    border-radius: 9999px;
    box-shadow: 0 0 30px rgba(255, 230, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--yellow-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--yellow-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
}

.badge-text {
    font-family: var(--font-heading);
    font-size: clamp(12px, 2.5vw, 15px);
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
}

/* Contact Email Copy Button */
.contact-email {
    position: relative;
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    cursor: pointer;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-icon {
    width: 16px;
    height: 16px;
    stroke: var(--yellow-primary);
    transition: transform 0.3s ease;
}

.contact-email:hover {
    color: #ffffff;
    background: rgba(255, 230, 0, 0.08);
    border-color: rgba(255, 230, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
    transform: translateY(-2px);
}

.contact-email:hover .email-icon {
    transform: scale(1.1);
}

/* Copy Tooltip Feedback Badge */
.copy-tooltip {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--yellow-primary);
    color: #07090e;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.35);
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--yellow-primary);
}

.contact-email.copied {
    border-color: var(--yellow-primary);
    background: rgba(255, 230, 0, 0.12);
    box-shadow: 0 0 25px rgba(255, 230, 0, 0.35);
}

.contact-email.copied .copy-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
