﻿/* Developer Re-Route - Minimal Premium Theme */
:root {
    --bg-primary: #000000;
    --bg-secondary: #121212;
    --bg-tertiary: #1d1d1d;
    --border: rgba(255, 255, 255, 0.12);
    --text-primary: #f5f5f5;
    --text-secondary: #c0c0c0;
    --text-muted: #8a8a8a;
    --shadow: rgba(255, 255, 255, 0.04);
    --font-heading: 'Times New Roman', Times, serif;
    --font-body: 'Times New Roman', Times, serif;
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.75rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.85;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
    color: var(--text-primary);
}

.loader-logo img {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.4));
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin: 1rem 0 0.5rem;
}

.loader-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.12);
    border-top-color: #f5f5f5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 1.75rem auto 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.main-content {
    min-height: 100vh;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 25%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.hero-occupation {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 1.75rem;
    color: var(--text-secondary);
}

.hero-subtitle {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.stat-card {
    text-align: center;
}

.stat-card i {
    font-size: 1.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.stat-card span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: #ffffff;
    color: #000000;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.22);
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.profile-card,
.info-card,
.services-preview,
.cta-section,
.footer {
    border-radius: var(--radius-lg);
}

.profile-card {
    margin: 0 auto 3rem;
    max-width: 640px;
    padding: 2.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.profile-image {
    width: 170px;
    height: 170px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.info-section,
.cta-section {
    padding: 5rem 0;
}

.info-section {
    background: #070707;
}

.info-section h2,
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    text-align: center;
}

.info-card i {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.info-card h3 {
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-secondary);
}

.services-preview {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.services-list span {
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-section {
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

.btn-lg {
    padding: 1.2rem 2.6rem;
    font-size: 1rem;
}

.footer {
    background: transparent;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
}

.footer p {
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.card-container {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
}

.business-card {
    width: min(520px, 100%);
    perspective: 1500px;
}

.card-face {
    width: 100%;
    min-height: 380px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    color: var(--text-primary);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.card-face.front {
    position: relative;
}

.card-face.back {
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
}

.business-card.flipped .front {
    transform: rotateY(180deg);
}

.business-card.flipped .back {
    transform: rotateY(0deg);
}

.flip-btn,
.pause-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    margin-right: 0.75rem;
}

.flip-btn:hover,
.pause-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0 0;
}

.logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.title,
.company {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.tagline,
.contact-item,
.website {
    color: var(--text-secondary);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.95rem;
}

.contact-item i,
.social-link i {
    color: var(--text-secondary);
}

.website {
    color: var(--text-primary);
}

.socials {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .info-grid,
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-list {
        flex-direction: column;
    }

    .card-container {
        padding: 2rem 0;
    }

    .controls {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
