/* ASID Registry Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --forest-fern: #2D6A4F;
    --soft-sage: #52B788;
    --mint-cream: #F0F7F0;
    --deep-charcoal: #2C3E2F;
    --warm-terracotta: #D68C5C;
    --clean-white: #FFFFFF;
    --pale-moss: #D4E2D4;
    --hover-green: #1B4D3E;
    --footer-dark-green: #1E3A2F;
    --success-green: #40916C;
    --warning-amber: #E9B35F;
}

* {
    border-radius: 0 !important;
    font-family: 'Inter', sans-serif;
}

html, body {
    background-color: var(--mint-cream);
    color: var(--deep-charcoal);
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

/* Parallax Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* SVG Animated Background (Subtle Nodes) */
.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10L90 90M90 10L10 90' stroke='%23D4E2D4' stroke-width='0.5' fill='none'/%3E%3Ccircle cx='10' cy='10' r='2' fill='%2352B788'/%3E%3Ccircle cx='90' cy='90' r='2' fill='%2352B788'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: -1;
    animation: bgMove 60s linear infinite;
}

@keyframes bgMove {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

/* Sharp Cards */
.card-sharp {
    border: 1px solid var(--pale-moss);
    box-shadow: 4px 4px 0px var(--pale-moss);
    transition: all 0.3s ease;
    background-color: var(--clean-white);
}

.card-sharp:hover {
    box-shadow: 8px 8px 0px var(--soft-sage);
    transform: translate(-2px, -2px);
}

/* Navigation */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--soft-sage);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Africa Map Highlights */
.map-highlight {
    fill: var(--soft-sage) !important;
}

.map-country {
    transition: fill 0.3s ease;
}

/* Buttons */
.btn-sharp {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--forest-fern);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-sharp:hover {
    background-color: var(--hover-green);
}
