/* 
   ADANTIA - Minimalist Premium Stylesheet
   Design Paradigm: Ultra-clean Dark Glassmorphism & Gold Accent Core
*/

:root {
    /* Color Palette */
    --bg-dark: #070a13;
    --bg-darker: #04060c;
    --bg-card: rgba(17, 24, 39, 0.45);
    --border-color: rgba(255, 255, 255, 0.05);

    --gold-color: #d4af37;
    --gold-hover: #e5c158;
    --gold-glow-color: rgba(212, 175, 55, 0.15);

    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #4b5563;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Transitions & Blurs */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --blur-glass: blur(20px);
}

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

html,
body {
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    display: flex;
    flex-direction: column;
}

/* Glowing Ambient Background Orbs */
.glowing-orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-color) 0%, rgba(212, 175, 55, 0) 70%);
}

.orb-2 {
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0e377e 0%, rgba(14, 55, 126, 0) 70%);
    animation-delay: -7s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 40px) scale(1.08);
    }
}

/* Minimalist Centered Layout */
.minimal-layout {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    position: relative;
    z-index: 10;
}

/* Glassmorphic Card */
.glass-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 60px 48px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}

/* Brand Identity */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.logo-svg {
    transition: var(--transition-smooth);
}

.logo-svg:hover {
    transform: rotate(180deg);
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ffffff 30%, #d5af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-tagline {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.company-brief {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Contact Button */
.contact-action {
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: transparent;
    color: var(--gold-color);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.btn-primary:hover {
    color: var(--bg-dark);
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    box-shadow: 0 0 30px var(--gold-glow-color);
    transform: translateY(-2px);
}

/* Footer */
.minimal-footer {
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 20px 24px 30px;
    z-index: 10;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .glass-card {
        padding: 40px 24px;
    }

    .logo-title {
        font-size: 1.8rem;
    }
}

/* Firefox-specific performance optimization */
@-moz-document url-prefix() {
    .glass-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}