/* 
   Nazareth Background Remover - Design System
   Colors extracted from Nazareth-BKG-Remover.py
*/

:root {
    --bg-primary: #0a0c0f;      /* Deep charcoal */
    --bg-secondary: #14181c;    /* Slightly lighter charcoal */
    --accent-cyan: #00b8ff;     /* Vibrant cyan */
    --accent-purple: #9d4edd;   /* Accent purple */
    --text-light: #e0e0e0;      /* Light gray text */
    --text-muted: #a0a0a0;      /* Muted gray text */
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(20, 24, 28, 0.8);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    color: var(--white);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
section {
    padding: 100px 10%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 10%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    height: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: radial-gradient(circle at 70% 30%, rgba(157, 78, 221, 0.1), transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(0, 184, 255, 0.1), transparent 50%);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: rotateY(0) rotateX(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 184, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
}

/* Features Gallery */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Developer Section */
.developer-section {
    background: var(--bg-secondary);
}

.developer-card {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px;
    background: var(--bg-primary);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.developer-image {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.developer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.developer-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.developer-info .title {
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.developer-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.dev-contact {
    display: flex;
    gap: 20px;
}

/* Footer */
footer {
    padding: 60px 10%;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s opacity ease-out, 0.8s transform ease-out;
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 150px;
    }
    .hero-content {
        margin-bottom: 60px;
    }
    .developer-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .dev-contact {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    section {
        padding: 60px 5%;
    }
    .nav-links {
        display: none;
    }
}
