:root {
    --exif-primary: #d97706;
    --exif-secondary: #b45309;
    --exif-accent: #f59e0b;
    --exif-bg-light: #fffbeb;
    --exif-gradient: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    --exif-neutral: #475569;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--exif-primary) !important;
}

.hero-section {
    background: var(--exif-bg-light);
    position: relative;
    overflow: hidden;
}

h1 {
    color: #2d3436;
    font-weight: 700;
}

.btn-primary {
    background: var(--exif-gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
    background: var(--exif-gradient);
}

.privacy-box {
    background: #fff4e5;
    border-left: 5px solid var(--exif-accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
}

.status-indicator.ready {
    background: #f1f5f9;
    color: #64748b;
}

.status-indicator.detected {
    background: #fee2e2;
    color: #dc2626;
}

.status-indicator.clean {
    background: #dcfce7;
    color: #16a34a;
}

.drop-zone {
    border: 3px dashed #dee2e6;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.drop-zone:hover {
    border-color: var(--exif-primary);
}

.footer {
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.footer h5 {
    color: #2d3436;
    font-weight: 700;
}

.footer p,
.footer a {
    color: #636e72;
}

.footer a:hover {
    color: var(--exif-primary);
}