/* Custom stylesheet for Arghos International Under Construction Page (Luxury Gold Theme) */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #070605;
    --text-primary: #f5f4f0;
    --text-secondary: #dcd9d2;
    --text-muted: #a39c92;
    
    /* Elegant gold gradients matching the logo */
    --accent-start: #dfb76c;
    --accent-end: #b8860b;
    --accent-shimmer: #ffe4a0;
    --accent-gradient: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
    --gold-glow: 0 0 20px rgba(223, 183, 108, 0.35);
    
    /* Glassmorphism properties - Obsidian gold theme */
    --glass-bg: rgba(14, 12, 10, 0.72);
    --glass-border: rgba(223, 183, 108, 0.16);
    --glass-border-hover: rgba(223, 183, 108, 0.35);
    --glass-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(184, 134, 11, 0.08);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1.5rem 1rem;
    overflow-x: hidden;
}

/* Background floating glow blobs */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.bg-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    animation: blobFloat 25s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(223, 183, 108, 0.4) 0%, rgba(184, 134, 11, 0) 70%);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -15%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.3) 0%, rgba(8, 7, 5, 0) 70%);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 50%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(223, 183, 108, 0.2) 0%, rgba(8, 7, 5, 0) 70%);
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(4vw, -6vw) scale(1.15);
    }
    100% {
        transform: translate(-3vw, 5vw) scale(0.9);
    }
}

/* Canvas Particle Layer */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-shimmer) 0%, var(--accent-start) 40%, var(--accent-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Main Container Card */
.main-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.8rem 2rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    max-width: 530px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.main-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 40%, rgba(223, 183, 108, 0.03) 60%, rgba(223, 183, 108, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.main-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 35px 70px -10px rgba(0, 0, 0, 0.95), 0 0 50px rgba(223, 183, 108, 0.12);
}

/* Logo Sizing - Big and Circular to Blend the White Background */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.logo-frame {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(223, 183, 108, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.25), 0 0 15px rgba(223, 183, 108, 0.15);
}

.logo-frame:hover {
    border-color: rgba(223, 183, 108, 0.7);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.45), 0 0 25px rgba(223, 183, 108, 0.25);
    transform: translateY(-3px) scale(1.05);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge Alert */
.status-badge {
    background: rgba(223, 183, 108, 0.08);
    color: var(--accent-start);
    border: 1px solid rgba(223, 183, 108, 0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 auto 1rem auto;
    text-align: center;
    width: fit-content;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(223, 183, 108, 0);
        background: rgba(223, 183, 108, 0.08);
    }
    50% {
        box-shadow: 0 0 12px 2px rgba(223, 183, 108, 0.18);
        background: rgba(223, 183, 108, 0.14);
    }
}

/* Hero Header */
#main-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 0.75rem !important;
}

/* Subtitle descriptions */
.subtitle-text {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 550px;
}

/* Countdown Grid */
.countdown-row {
    margin: 1.2rem 0;
}

.countdown-box {
    background: rgba(18, 16, 13, 0.6);
    border: 1px solid rgba(223, 183, 108, 0.14);
    border-radius: 14px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.countdown-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.countdown-box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(223, 183, 108, 0.4);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.15);
}

.countdown-box:hover::after {
    opacity: 1;
}

.countdown-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-shimmer) 0%, var(--accent-start) 50%, var(--accent-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 2px;
}

.countdown-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
}

/* Progress bar container and text */
.launch-progress-container {
    max-width: 480px;
    margin: 1rem auto;
    width: 100%;
}

.progress-text-row {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.progress-custom-bar {
    height: 8px;
    background: rgba(18, 16, 13, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(223, 183, 108, 0.15);
}

.progress-custom-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--accent-end) 0%, var(--accent-start) 50%, var(--accent-shimmer) 100%);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(223, 183, 108, 0.6);
    animation: loadBar 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loadBar {
    from {
        width: 0%;
    }
    to {
        width: 75%;
    }
}

/* Input Form Controls */
.newsletter-section {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(223, 183, 108, 0.12);
}

.newsletter-section h2 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-start);
}

.subscribe-form {
    max-width: 480px;
    margin: 0 auto;
}

.form-group-custom {
    position: relative;
}

.form-control-custom {
    background: rgba(18, 16, 13, 0.65);
    border: 1px solid rgba(223, 183, 108, 0.22);
    color: var(--text-primary) !important;
    border-radius: 12px;
    padding: 0.75rem 1.1rem;
    font-size: 0.88rem;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-control-custom::placeholder {
    color: #8c857b;
}

.form-control-custom:focus {
    background: rgba(10, 8, 7, 0.9);
    border-color: rgba(223, 183, 108, 0.65);
    box-shadow: 0 0 18px rgba(223, 183, 108, 0.15);
    outline: none;
}

.btn-custom {
    background: var(--accent-gradient);
    color: #0d0b08 !important;
    border: none;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2);
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(223, 183, 108, 0.4);
    color: #0d0b08 !important;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:active {
    transform: translateY(0);
}

/* Form Feedback */
.form-feedback {
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

.form-feedback.success {
    color: #3cd070;
}

.form-feedback.error {
    color: #ff5252;
}

/* Social & Contact info footer */
.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 1.2rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(223, 183, 108, 0.1);
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(18, 16, 13, 0.6);
    border: 1px solid rgba(223, 183, 108, 0.15);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-btn:hover {
    color: #0d0b08;
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(223, 183, 108, 0.35);
    transform: translateY(-4px);
}

.contact-info {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    letter-spacing: 0.02em;
    padding-bottom: 0.5rem;
}

.contact-item {
    transition: var(--transition-smooth);
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.contact-item:hover {
    color: var(--accent-start);
}

/* Footer Copyright */
footer.site-footer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Media Queries for responsive height controls (no scroll constraints) */
@media (max-width: 768px) {
    .main-card {
        padding: 1.8rem 1.2rem;
        margin: 0.5rem;
        border-radius: 20px;
    }
    
    .logo-frame {
        width: 85px;
        height: 85px;
    }
    
    .countdown-val {
        font-size: 1.5rem;
    }
    
    .countdown-box {
        padding: 0.6rem 0.2rem;
        border-radius: 12px;
    }
    
    .subscribe-form .row {
        gap: 8px;
    }
}

/* End of stylesheet */
