﻿/* InDevelopment.css */

.dev-section {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    overflow: hidden;
}

/* Animated breathing gradient background */
@keyframes dev-breathe {
    0%, 100% {
        opacity: 0.18;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.35;
        transform: translateY(-50%) scale(1.15);
    }
}

.dev-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient( ellipse at center, rgba(125, 27, 211, 0.45) 0%, rgba(222, 155, 24, 0.15) 35%, transparent 70% );
    animation: dev-breathe 6.5s ease-in-out infinite;
}

.dev-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 540px;
    padding: 60px 48px;
    background: rgba(18, 10, 36, 0.58);
    backdrop-filter: blur(32px) saturate(1.8);
    -webkit-backdrop-filter: blur(32px) saturate(1.8);
    border: 1.5px solid rgba(125, 27, 211, 0.35);
    border-radius: 28px;
    box-shadow: 0 0 0 1px rgba(125, 27, 211, 0.12) inset, 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(125, 27, 211, 0.12);
    animation: float-in 0.8s ease-out;
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon wrapper */
.dev-icon-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(125, 27, 211, 0.35));
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        opacity: 0.75;
    }

    50% {
        opacity: 1;
    }
}

/* Main heading */
.dev-heading {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, rgba(236, 230, 255, 0.92) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subheading */
.dev-subheading {
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 400;
    color: rgba(236, 230, 255, 0.62);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 420px;
}

/* Status indicator */
.dev-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 36px;
    padding: 10px 18px;
    background: rgba(125, 27, 211, 0.08);
    border: 1px solid rgba(125, 27, 211, 0.22);
    border-radius: 999px;
}

.status-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(236, 230, 255, 0.72);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(222, 155, 24, 0.85);
    box-shadow: 0 0 8px rgba(222, 155, 24, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 8px rgba(222, 155, 24, 0.6);
    }

    50% {
        box-shadow: 0 0 12px rgba(222, 155, 24, 1);
    }
}

/* CTA Button */
.dev-cta {
    display: inline-block;
    padding: 13px 32px;
    background: var(--primary, #7D1BD3);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    border: 1.5px solid rgba(125, 27, 211, 0.55);
    transition: filter 0.22s, transform 0.18s, box-shadow 0.22s, border-color 0.22s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

    .dev-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
        pointer-events: none;
    }

    .dev-cta:hover {
        filter: brightness(1.18);
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(125, 27, 211, 0.45);
        border-color: rgba(125, 27, 211, 0.8);
    }

        .dev-cta:hover::before {
            left: 100%;
        }

    .dev-cta:active {
        transform: translateY(0);
    }

/* Accent line */
.dev-accent-line {
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient( 90deg, transparent 0%, rgba(125, 27, 211, 0.4) 20%, rgba(222, 155, 24, 0.3) 50%, rgba(125, 27, 211, 0.4) 80%, transparent 100% );
    border-radius: 999px;
}

/* Responsive */
@media (max-width: 640px) {
    .dev-section {
        min-height: calc(100vh - 92px);
        padding: 40px 16px;
    }

    .dev-container {
        padding: 48px 28px;
        border-radius: 20px;
    }

    .dev-icon-wrap {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }

    .dev-heading {
        margin-bottom: 16px;
    }

    .dev-subheading {
        margin-bottom: 28px;
        font-size: 15px;
    }

    .dev-status {
        margin-bottom: 28px;
    }

    .dev-cta {
        margin-bottom: 18px;
        font-size: 14px;
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    .dev-container {
        padding: 40px 20px;
    }

    .dev-heading {
        font-size: 32px;
    }

    .dev-subheading {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .dev-gradient,
    .dev-icon,
    .status-dot {
        animation: none !important;
    }

    .dev-container {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .dev-cta {
        transition: filter 0.18s, border-color 0.18s;
    }
}
