/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    /* Colors - National Theme & Minimalist */
    --c-white: #ffffff;
    --c-pearl-gray: #f8f9fa;
    --c-green: #009E60;
    --c-green-dark: #00804D;
    --c-green-light: #e6f5ef;
    --c-red: #EF2B2D;
    --c-red-dark: #CC2326;
    --c-red-light: #fdeaea;
    --c-text-main: #1e293b;
    --c-text-muted: #64748b;
    --c-border: #e2e8f0;
    
    /* Layout & Shadow */
    --max-width: 600px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Typography */
    --font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--c-pearl-gray);
    color: var(--c-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   Core Layout (Mobile First)
   ========================================================================== */
/* The main app container simulates a mobile app view on desktop */
#app-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    flex-grow: 1;
    background-color: var(--c-pearl-gray);
    position: relative;
    padding-bottom: 2rem;
}

.view {
    display: none;
    padding: 1.5rem;
}

.view.active {
    display: block;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    background-color: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-text-main);
    cursor: pointer;
}

.logo i {
    color: var(--c-green);
}

.desktop-nav {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--c-text-main);
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    background-color: var(--c-white);
    border-top: 1px solid var(--c-border);
    position: absolute;
    width: 100%;
    left: 0;
    box-shadow: var(--shadow-md);
}

.mobile-nav a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--c-border);
    font-weight: 500;
}

.mobile-nav a:active, .mobile-nav a:hover {
    background-color: var(--c-pearl-gray);
}

.admin-link {
    color: var(--c-text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   Home View: Hero & Actions
   ========================================================================== */
.hero-wrapper {
    position: relative;
    padding: 3rem 1.5rem;
    overflow: hidden;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem; /* Negate view padding to bleed to edges */
    background-color: var(--c-green-light); /* Fallback color */
}

/* 
 * Pseudo-element for the hero background.
 * The variable --bg-opacity can be changed dynamically in JS or inline HTML.
 */
.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;

    /* Put your background image here (e.g., bg-home.png) */
    background: url('/static/bg-home.png') center bottom / contain no-repeat;
    opacity: var(--bg-opacity, 0); /* Variable opacity, default 0.15 */
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.hero {
    position: relative;
    z-index: 1; /* Keep content above the background overlay */
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background-color: var(--c-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-text-main);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 1px solid var(--c-border);
}

.hero h1 {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--c-text-main);
}

.hero h1 span {
    color: var(--c-green);
}

.hero p {
    color: var(--c-text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-massive {
    width: 100%;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: left;
}

.btn-massive:active {
    transform: scale(0.98);
}

.btn-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--c-white);
}

.btn-text {
    display: flex;
    flex-direction: column;
    color: var(--c-white);
}

.btn-text strong {
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.btn-red {
    background-color: var(--c-red);
    box-shadow: 0 10px 20px rgba(239, 43, 45, 0.2);
}

.btn-green {
    background-color: var(--c-green);
    box-shadow: 0 10px 20px rgba(0, 158, 96, 0.2);
}

/* Pulse animation for CTA */
@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(239, 43, 45, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(239, 43, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 43, 45, 0); }
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(0, 158, 96, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 158, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 158, 96, 0); }
}

.pulse-red { animation: pulseRed 3s infinite; }
.pulse-green { animation: pulseGreen 3s infinite; animation-delay: 1.5s;}

/* Stats Banner */
.stats-banner {
    background-color: var(--c-white);
    border-radius: var(--radius-lg);
    display: flex;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--c-green);
    background-color: var(--c-green-light);
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info strong {
    font-size: 1.25rem;
    color: var(--c-text-main);
}

.stat-info span {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.stat-divider {
    width: 1px;
    background-color: var(--c-border);
    margin: 0 1rem;
}

/* How it works */
.how-it-works {
    margin-top: 3rem;
}

.how-it-works h2 {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-card {
    background: var(--c-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--c-green);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--c-text-muted);
}

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */
.form-card {
    background-color: var(--c-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.half {
    flex: 1;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--c-text-main);
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"],
select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--c-pearl-gray);
    color: var(--c-text-main);
    transition: all 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

input:focus, select:focus {
    border-color: var(--c-green);
    background-color: var(--c-white);
    box-shadow: 0 0 0 3px var(--c-green-light);
}

.search-input-wrapper,
.security-input-wrapper {
    position: relative;
}

.search-input-wrapper input {
    padding-left: 2.5rem;
    background-color: var(--c-white);
}

.search-icon, .security-lock {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-text-muted);
}

.security-input-wrapper input {
    padding-left: 2.5rem;
    font-family: monospace;
    font-weight: bold;
    letter-spacing: 2px;
}

.help-text {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--c-pearl-gray);
    border: 1px solid var(--c-border);
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #eee;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--c-green);
    border-color: var(--c-green);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Buttons Generics */
.btn {
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:active {
    transform: scale(0.97);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--c-text-main);
    color: var(--c-white);
    padding: 0.875rem 1.5rem;
}

.btn-primary:active {
    background-color: #0f172a;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-lg {
    padding: 1rem;
    font-size: 1.125rem;
}

.btn-outline {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    color: var(--c-text-main);
    padding: 0.875rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.btn-outline:hover {
    border-color: var(--c-text-muted);
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.btn-red.btn-outline {
    border-color: var(--c-red);
    color: var(--c-red);
}

.btn-premium-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
}

.btn-premium-whatsapp:hover {
    background: linear-gradient(135deg, #2ae06b, #15a08e);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.btn-premium-verify {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white !important;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    border: none;
}

.btn-premium-verify:hover {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

.btn-premium-copy {
    background: var(--c-pearl-gray);
    color: var(--c-text-main);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.btn-premium-copy:hover {
    background: var(--c-white);
    border-color: var(--c-text-muted);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* Declare Views Specifics */
.page-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.page-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
}

.page-header p {
    color: var(--c-text-muted);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.declare-tabs {
    display: flex;
    background-color: var(--c-border);
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--c-text-muted);
    transition: all 0.2s;
}

.tab-btn.active {
    background-color: var(--c-white);
    color: var(--c-text-main);
    box-shadow: var(--shadow-sm);
}

.secure-badge {
    text-align: center;
    font-size: 0.75rem;
    color: var(--c-green-dark);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--c-green-light);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   Search Results (Cards)
   ========================================================================== */
.results-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.result-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-type {
    display: inline-block;
    background: var(--c-pearl-gray);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-text-main);
}

.card-type.found { border-left: 3px solid var(--c-green); }
.card-type.lost { border-left: 3px solid var(--c-red); }

.card-date {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.card-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.card-meta {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    display: flex;
    gap: 1rem;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ==========================================================================
   Modals & Tunnel
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background-color: var(--c-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--c-pearl-gray);
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-icon {
    font-size: 2rem;
    color: var(--c-green);
    margin-bottom: 1rem;
}

.highlight {
    font-weight: 700;
    color: var(--c-text-main);
}

.digit-inputs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.digit-box {
    width: 3rem;
    height: 3.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    border: 2px solid var(--c-border) !important;
    border-radius: var(--radius-sm);
}

.digit-box:focus {
    border-color: var(--c-green) !important;
}

.error-msg {
    color: var(--c-red);
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ==========================================================================
   Success View
   ========================================================================== */
.success-container {
    background-color: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.success-icon {
    font-size: 4rem;
    color: var(--c-green);
    margin-bottom: 1rem;
}

.success-container h2 {
    color: var(--c-green);
    margin-bottom: 0.5rem;
}

.success-container p {
    color: var(--c-text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.contact-card {
    background-color: var(--c-pearl-gray);
    border: 1px solid var(--c-green-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.finder-avatar {
    width: 4rem;
    height: 4rem;
    background-color: var(--c-green-light);
    color: var(--c-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.finder-info {
    text-align: center;
}

.finder-label {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.finder-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-text-main);
    letter-spacing: 2px;
}

.btn-circle {
    border-radius: var(--radius-full);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.security-protocol {
    text-align: left;
    background-color: var(--c-red-light);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border-left: 4px solid var(--c-red);
}

.security-protocol h3 {
    color: var(--c-red-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.protocol-list {
    list-style-position: inside;
    font-size: 0.875rem;
    color: var(--c-red-dark);
}

.protocol-list li {
    margin-bottom: 0.25rem;
}

/* ==========================================================================
   Admin Table
   ========================================================================== */
.admin-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-table-container {
    overflow-x: auto;
    background: var(--c-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table th, .admin-table td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--c-border);
    white-space: nowrap;
}

.admin-table th {
    background-color: var(--c-pearl-gray);
    font-weight: 600;
}

/* ==========================================================================
   Legal
   ========================================================================== */
.legal-container {
    background: var(--c-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.legal-content p {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
    text-align: justify;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    border-top: 1px solid var(--c-border);
    margin-top: auto;
}

/* ==========================================================================
   Animations & Utilities
   ========================================================================== */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

.fade-in-up {
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--c-text-muted);
}
.empty-state i {
    font-size: 3rem;
    color: var(--c-border);
    margin-bottom: 1rem;
}

/* Desktop enhancements */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }
    .mobile-menu-btn {
        display: none;
    }
    .desktop-nav a {
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.2s;
    }
    .desktop-nav a:hover {
        color: var(--c-green);
    }
}
