/* Base styles for Amunix - Matching mobile theme */
:root {
    --primary-color: #000000;
    --primary-variant: #333333;
    --secondary-color: #0066CC;
    --secondary-variant: #0055AA;
    --accent-color: #FF6600;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --error-color: #F44336;
    --text-light: #ffffff;
    --text-dark: #000000;
    --light-background: #ffffff;
    --light-surface: #f5f5f5;
    --light-border: #cccccc;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navigation styles */
.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Button styles */
.btn {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer styles */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    margin-top: auto;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
}

/* Utility classes */
.text-uppercase {
    text-transform: uppercase;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}